From fa8089046163d8d42af058a2825ceff0a14e28c8 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Thu, 28 Sep 2023 11:58:38 +0200 Subject: [PATCH 01/12] HACK dpu pkt_per_line hack --- drivers/gpu/drm/msm/dsi/dsi_host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c b/drivers/gpu/drm/msm/dsi/dsi_host.c index e0de545d40775f..14944f8af35d72 100644 --- a/drivers/gpu/drm/msm/dsi/dsi_host.c +++ b/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -920,7 +920,7 @@ static void dsi_update_dsc_timing(struct msm_dsi_host *msm_host, bool is_cmd_mod * Since the current driver only supports slice_per_pkt = 1, * pkt_per_line will be equal to slice per intf for now. */ - pkt_per_line = slice_per_intf; + pkt_per_line = slice_per_intf * 2; // HACK if (is_cmd_mode) /* packet data type */ reg = DSI_COMMAND_COMPRESSION_MODE_CTRL_STREAM0_DATATYPE(MIPI_DSI_DCS_LONG_WRITE); From 5d3a98a56daa0fad25b797e718d36e511919ab9e Mon Sep 17 00:00:00 2001 From: Vitalii Skorkin Date: Wed, 22 Jan 2025 15:58:46 +0500 Subject: [PATCH 02/12] WIP: media: i2c: Add dw9800 vcm driver DW9800 is a 10 bit DAC from Dongwoon, designed for linear control of voice coil motor. This driver creates a V4L2 subdevice and provides control to set the desired focus. Signed-off-by: Vitalii Skorkin --- drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/dw9800.c | 473 +++++++++++++++++++++++++++++++++++++ 3 files changed, 486 insertions(+) create mode 100644 drivers/media/i2c/dw9800.c diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig index e8d657061d8466..3941b423c70cea 100644 --- a/drivers/media/i2c/Kconfig +++ b/drivers/media/i2c/Kconfig @@ -845,6 +845,18 @@ config VIDEO_DW9768 capability. This is designed for linear control of voice coil motors, controlled via I2C serial interface. +config VIDEO_DW9800 + tristate "DW9800 lens voice coil support" + depends on I2C && VIDEO_DEV + select MEDIA_CONTROLLER + select VIDEO_V4L2_SUBDEV_API + select V4L2_ASYNC + help + This is a driver for the DW9800 camera lens voice coil. + DW9800 is a 10 bit DAC with 100mA output current sink + capability. This is designed for linear control of + voice coil motors, controlled via I2C serial interface. + config VIDEO_DW9807_VCM tristate "DW9807 lens voice coil support" help diff --git a/drivers/media/i2c/Makefile b/drivers/media/i2c/Makefile index 42165a5a92feec..4f646a149342f3 100644 --- a/drivers/media/i2c/Makefile +++ b/drivers/media/i2c/Makefile @@ -35,6 +35,7 @@ obj-$(CONFIG_VIDEO_DS90UB960) += ds90ub960.o obj-$(CONFIG_VIDEO_DW9714) += dw9714.o obj-$(CONFIG_VIDEO_DW9719) += dw9719.o obj-$(CONFIG_VIDEO_DW9768) += dw9768.o +obj-$(CONFIG_VIDEO_DW9800) += dw9800.o obj-$(CONFIG_VIDEO_DW9807_VCM) += dw9807-vcm.o obj-$(CONFIG_VIDEO_ET8EK8) += et8ek8/ obj-$(CONFIG_VIDEO_GC0308) += gc0308.o diff --git a/drivers/media/i2c/dw9800.c b/drivers/media/i2c/dw9800.c new file mode 100644 index 00000000000000..37d525800e82b5 --- /dev/null +++ b/drivers/media/i2c/dw9800.c @@ -0,0 +1,473 @@ +// SPDX-License-Identifier: GPL-2.0 +// Copyright (C) 2025 Vitalii Skorkin + +#include +#include +#include +#include +#include +#include +#include +#include + +#define DW9800_MAX_FOCUS_POS 1023 +/* + * This sets the minimum granularity for the focus positions. + * A value of 1 gives maximum accuracy for a desired focus position. + */ +#define DW9800_FOCUS_STEPS 1 + +/* + * Ring control and Power control register + * Bit[1] RING_EN + * 0: Direct mode + * 1: SAC mode (ringing control mode) + * Bit[0] PD + * 0: Normal operation mode + * 1: Power down mode + */ +#define DW9800_RING_PD_CONTROL_REG 0x02 +#define DW9800_PD_MODE_OFF 0x00 +#define DW9800_PD_MODE_EN BIT(0) +#define DW9800_SAC_MODE_EN BIT(1) + +/* + * DW9800 sepeates two registers to control VCM position. + * One for MSB value, another is LSB value. + */ +#define DW9800_MSB_REG 0x03 +#define DW9800_LSB_REG 0x04 + +/* + * Mode control & prescale register + * Bit[7:5] Namely AC[2:0], decide the VCM mode and operation time. + * 001 SAC2 + * 010 SAC3 + * 011 SAC4 + * 101 SAC5 + * Bit[2:0] Namely PRESC[2:0], set the internal clock dividing rate as follow. + * 000 2 + * 001 1 + * 010 1/2 + * 011 1/4 + * 100 8 + * 101 4 + */ +#define DW9800_SAC_PRESC_REG 0x06 + +/* + * VCM period of vibration register + * Bit[5:0] Defined as VCM rising periodic time (Tvib) together with PRESC[2:0] + * Tvib = (6.3ms + SACT[5:0] * 0.1ms) * Dividing Rate + * Dividing Rate is the internal clock dividing rate that is defined at + * PRESCALE register (ADD: 0x06) + */ +#define DW9800_SAC_TIME_REG 0x07 + +#define DW9800_T_OPR_US 1000 +#define DW9800_SAC_MODE_DEFAULT 1 +#define DW9800_SAC_TIME_DEFAULT 0x25 +#define DW9800_CLOCK_PRE_SCALE_DEFAULT 1 + +/* + * This acts as the minimum granularity of lens movement. + * Keep this value power of 2, so the control steps can be + * uniformly adjusted for gradual lens movement, with desired + * number of control steps. + */ +#define DW9800_MOVE_STEPS 16 + +static const char * const dw9800_supply_names[] = { + "vin", /* Digital I/O power */ + "vdd", /* Digital core power */ +}; + +struct dw9800 { + struct regulator_bulk_data supplies[ARRAY_SIZE(dw9800_supply_names)]; + struct v4l2_ctrl_handler ctrls; + struct v4l2_ctrl *focus; + struct v4l2_subdev sd; + + u32 sac_mode; + u32 sac_timing; + u32 clock_presc; + u32 move_delay_us; +}; + +struct dw9800_clk_presc_dividing_rate { + u32 clk_presc_enum; + u32 dividing_rate_base100; +}; + +static const struct dw9800_clk_presc_dividing_rate presc_dividing_rate[] = { + {0, 200}, + {1, 100}, + {2, 50}, + {3, 25}, + {4, 800}, + {5, 400}, +}; + +static u32 dw9800_find_dividing_rate(u32 presc_param) +{ + u32 cur_clk_dividing_rate_base100 = 100; + unsigned int i; + + for (i = 0; i < ARRAY_SIZE(presc_dividing_rate); i++) { + if (presc_dividing_rate[i].clk_presc_enum == presc_param) { + cur_clk_dividing_rate_base100 = + presc_dividing_rate[i].dividing_rate_base100; + } + } + + return cur_clk_dividing_rate_base100; +} + +static inline u32 dw9800_calc_move_delay(u32 mode, u32 presc, u32 timing) +{ + return (63 + timing) * dw9800_find_dividing_rate(presc); +} + +static inline struct dw9800 *sd_to_dw9800( + struct v4l2_subdev *subdev) +{ + return container_of(subdev, struct dw9800, sd); +} + +static int dw9800_set_dac(struct i2c_client *client, u16 val) +{ + return i2c_smbus_write_word_swapped(client, DW9800_MSB_REG, val); +} + +static int dw9800_init(struct dw9800 *dw9800_dev) +{ + struct i2c_client *client = v4l2_get_subdevdata(&dw9800_dev->sd); + u32 mode; + u32 time; + int ret, val; + + // Set DW9800_RING_PD_CONTROL_ADDR to 0x0 + ret = i2c_smbus_write_byte_data(client, DW9800_RING_PD_CONTROL_REG, + DW9800_PD_MODE_OFF); + if (ret < 0) + return ret; + + usleep_range(DW9800_T_OPR_US, DW9800_T_OPR_US + 100); + + // Set DW9800_RING_PD_CONTROL_ADDR to DW9800_SAC_MODE_EN + ret = i2c_smbus_write_byte_data(client, DW9800_RING_PD_CONTROL_REG, + DW9800_SAC_MODE_EN); + if (ret < 0) + return ret; + + // Set SAC mode and clock prescale + mode = dw9800_dev->sac_mode << 6; + mode |= (dw9800_dev->clock_presc >> 2) & 0x01; + ret = i2c_smbus_write_byte_data(client, DW9800_SAC_PRESC_REG, mode); + if (ret < 0) + return ret; + + // Setup SAC timings + time = dw9800_dev->clock_presc >> 6 | dw9800_dev->sac_timing; + ret = i2c_smbus_write_byte_data(client, DW9800_SAC_TIME_REG, + time); + if (ret < 0) + return ret; + + // Hacky but let it be for now + val = round_down(i2c_smbus_read_word_swapped(client, DW9800_MSB_REG), DW9800_MOVE_STEPS); + for (; val > 0; val -= DW9800_MOVE_STEPS) { + ret = dw9800_set_dac(client, val); + if (ret) { + dev_err(&client->dev, "I2C write fail: %d", ret); + return ret; + } + usleep_range(dw9800_dev->move_delay_us, + dw9800_dev->move_delay_us + 1000); + } + + for (val = dw9800_dev->focus->val % DW9800_MOVE_STEPS; + val <= dw9800_dev->focus->val; + val += DW9800_MOVE_STEPS) { + ret = dw9800_set_dac(client, val); + if (ret) { + dev_err(&client->dev, "I2C failure: %d", ret); + return ret; + } + usleep_range(dw9800_dev->move_delay_us, + dw9800_dev->move_delay_us + 1000); + } + + return 0; +} + +static int dw9800_set_ctrl(struct v4l2_ctrl *ctrl) +{ + struct dw9800 *dw9800_dev = container_of(ctrl->handler, + struct dw9800, ctrls); + + if (ctrl->id == V4L2_CID_FOCUS_ABSOLUTE) { + struct i2c_client *client = v4l2_get_subdevdata(&dw9800_dev->sd); + + dw9800_dev->focus->val = ctrl->val; + return dw9800_set_dac(client, ctrl->val); + } + + return -EINVAL; +} + +static const struct v4l2_ctrl_ops dw9800_ctrl_ops = { + .s_ctrl = dw9800_set_ctrl, +}; + +static int dw9800_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) +{ + return pm_runtime_resume_and_get(sd->dev); +} + +static int dw9800_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) +{ + pm_runtime_put(sd->dev); + + return 0; +} + +static const struct v4l2_subdev_internal_ops dw9800_int_ops = { + .open = dw9800_open, + .close = dw9800_close, +}; + +static const struct v4l2_subdev_ops dw9800_ops = { }; + +static void dw9800_subdev_cleanup(struct dw9800 *dw9800_dev) +{ + v4l2_async_unregister_subdev(&dw9800_dev->sd); + v4l2_ctrl_handler_free(&dw9800_dev->ctrls); + media_entity_cleanup(&dw9800_dev->sd.entity); +} + +static int dw9800_init_controls(struct dw9800 *dw9800_dev) +{ + struct v4l2_ctrl_handler *hdl = &dw9800_dev->ctrls; + const struct v4l2_ctrl_ops *ops = &dw9800_ctrl_ops; + struct i2c_client *client = v4l2_get_subdevdata(&dw9800_dev->sd); + + v4l2_ctrl_handler_init(hdl, 1); + + dw9800_dev->focus = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FOCUS_ABSOLUTE, + 0, DW9800_MAX_FOCUS_POS, DW9800_FOCUS_STEPS, 0); + + if (hdl->error) { + dev_err(&client->dev, "%s fail error: 0x%x\n", + __func__, hdl->error); + return hdl->error; + } + + dw9800_dev->sd.ctrl_handler = hdl; + + return 0; +} + +static int dw9800_probe(struct i2c_client *client) +{ + struct dw9800 *dw9800_dev; + int rval; + + dw9800_dev = devm_kzalloc(&client->dev, sizeof(*dw9800_dev), + GFP_KERNEL); + if (dw9800_dev == NULL) + return -ENOMEM; + + for (unsigned int i = 0; i < ARRAY_SIZE(dw9800_supply_names); i++) + dw9800_dev->supplies[i].supply = dw9800_supply_names[i]; + rval = devm_regulator_bulk_get(&client->dev, ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + if (rval) { + dev_err(&client->dev, "failed to get regulators\n"); + return rval; + } + + rval = regulator_bulk_enable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + if (rval < 0) { + dev_err(&client->dev, "failed to enable regulators: %d\n", rval); + return rval; + } + + dw9800_dev->sac_mode = DW9800_SAC_MODE_DEFAULT; + dw9800_dev->sac_timing = DW9800_SAC_TIME_DEFAULT; + dw9800_dev->clock_presc = DW9800_CLOCK_PRE_SCALE_DEFAULT; + + /* Optional indication of SAC mode select */ + fwnode_property_read_u32(dev_fwnode(&client->dev), "dongwoon,sac-mode", + &dw9800_dev->sac_mode); + + /* Optional indication of clock pre-scale select */ + fwnode_property_read_u32(dev_fwnode(&client->dev), "dongwoon,clock-presc", + &dw9800_dev->clock_presc); + + /* Optional indication of SAC Timing */ + fwnode_property_read_u32(dev_fwnode(&client->dev), "dongwoon,sac-timing", + &dw9800_dev->sac_timing); + + dw9800_dev->move_delay_us = dw9800_calc_move_delay(dw9800_dev->sac_mode, + dw9800_dev->clock_presc, + dw9800_dev->sac_timing); + + v4l2_i2c_subdev_init(&dw9800_dev->sd, client, &dw9800_ops); + dw9800_dev->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE; + dw9800_dev->sd.internal_ops = &dw9800_int_ops; + + rval = dw9800_init_controls(dw9800_dev); + if (rval) + goto err_cleanup; + + rval = media_entity_pads_init(&dw9800_dev->sd.entity, 0, NULL); + if (rval < 0) + goto err_cleanup; + + dw9800_dev->sd.entity.function = MEDIA_ENT_F_LENS; + + rval = v4l2_async_register_subdev(&dw9800_dev->sd); + if (rval < 0) + goto err_cleanup; + + pm_runtime_set_active(&client->dev); + pm_runtime_enable(&client->dev); + pm_runtime_idle(&client->dev); + + return 0; + +err_cleanup: + regulator_bulk_disable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + v4l2_ctrl_handler_free(&dw9800_dev->ctrls); + media_entity_cleanup(&dw9800_dev->sd.entity); + + return rval; +} + +static void dw9800_remove(struct i2c_client *client) +{ + struct v4l2_subdev *sd = i2c_get_clientdata(client); + struct dw9800 *dw9800_dev = sd_to_dw9800(sd); + int ret; + + pm_runtime_disable(&client->dev); + if (!pm_runtime_status_suspended(&client->dev)) { + ret = regulator_bulk_disable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + if (ret) { + dev_err(&client->dev, + "Failed to disable regulators: %d\n", ret); + } + } + pm_runtime_set_suspended(&client->dev); + dw9800_subdev_cleanup(dw9800_dev); +} + +/* + * This function sets the vcm position, so it consumes least current + * The lens position is gradually moved in units of DW9800_MOVE_STEPS, + * to make the movements smoothly. + */ +static int dw9800_suspend(struct device *dev) +{ + struct i2c_client *client = to_i2c_client(dev); + struct v4l2_subdev *sd = i2c_get_clientdata(client); + struct dw9800 *dw9800_dev = sd_to_dw9800(sd); + int ret, val; + + if (pm_runtime_suspended(&client->dev)) + return 0; + + val = round_down(dw9800_dev->focus->val, DW9800_MOVE_STEPS); + for (; val >= 0; val -= DW9800_MOVE_STEPS) { + ret = dw9800_set_dac(client, val); + if (ret) { + dev_err(&client->dev, "I2C write fail: %d", ret); + return ret; + } + usleep_range(dw9800_dev->move_delay_us, + dw9800_dev->move_delay_us + 1000); + } + + ret = i2c_smbus_write_byte_data(client, DW9800_RING_PD_CONTROL_REG, + DW9800_PD_MODE_EN); + if (ret < 0) + return ret; + + usleep_range(DW9800_T_OPR_US, DW9800_T_OPR_US + 100); + + ret = regulator_bulk_disable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + if (ret) + dev_err(dev, "Failed to disable regulators: %d\n", ret); + + return 0; +} + +/* + * This function sets the vcm position to the value set by the user + * through v4l2_ctrl_ops s_ctrl handler + * The lens position is gradually moved in units of DW9800_MOVE_STEPS, + * to make the movements smoothly. + */ +static int dw9800_resume(struct device *dev) +{ + struct i2c_client *client = to_i2c_client(dev); + struct v4l2_subdev *sd = i2c_get_clientdata(client); + struct dw9800 *dw9800_dev = sd_to_dw9800(sd); + int ret; + + if (pm_runtime_suspended(&client->dev)) + return 0; + + ret = regulator_bulk_enable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + if (ret) { + dev_err(dev, "Failed to enable regulators: %d\n", ret); + return ret; + } + usleep_range(DW9800_T_OPR_US, DW9800_T_OPR_US + 100); + + ret = dw9800_init(dw9800_dev); + if (ret) { + dev_err(dev, "Failed to init VCM: %d", ret); + goto disable_regulator; + } + + return 0; + +disable_regulator: + regulator_bulk_disable(ARRAY_SIZE(dw9800_supply_names), + dw9800_dev->supplies); + + return ret; +} + +static const struct of_device_id dw9800_of_table[] = { + { .compatible = "dongwoon,dw9800" }, + { /* sentinel */ } +}; +MODULE_DEVICE_TABLE(of, dw9800_of_table); + +static const struct dev_pm_ops dw9800_pm_ops = { + SET_SYSTEM_SLEEP_PM_OPS(dw9800_suspend, dw9800_resume) + SET_RUNTIME_PM_OPS(dw9800_suspend, dw9800_resume, NULL) +}; + +static struct i2c_driver dw9800_i2c_driver = { + .driver = { + .name = "dw9800", + .pm = &dw9800_pm_ops, + .of_match_table = dw9800_of_table, + }, + .probe = dw9800_probe, + .remove = dw9800_remove, +}; +module_i2c_driver(dw9800_i2c_driver); + +MODULE_AUTHOR("Vitalii Skorkin "); +MODULE_DESCRIPTION("DW9800 VCM driver"); +MODULE_LICENSE("GPL"); From b7014890cbcaa7a964092233f659777b411c3978 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Thu, 6 Mar 2025 23:20:03 +0300 Subject: [PATCH 03/12] media: i2c: dw9800: Add one more delay Signed-off-by: Danila Tikhonov --- drivers/media/i2c/dw9800.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/media/i2c/dw9800.c b/drivers/media/i2c/dw9800.c index 37d525800e82b5..4527f794d2a737 100644 --- a/drivers/media/i2c/dw9800.c +++ b/drivers/media/i2c/dw9800.c @@ -383,15 +383,18 @@ static int dw9800_suspend(struct device *dev) val = round_down(dw9800_dev->focus->val, DW9800_MOVE_STEPS); for (; val >= 0; val -= DW9800_MOVE_STEPS) { + usleep_range(dw9800_dev->move_delay_us, + dw9800_dev->move_delay_us + 1000); ret = dw9800_set_dac(client, val); if (ret) { dev_err(&client->dev, "I2C write fail: %d", ret); return ret; } - usleep_range(dw9800_dev->move_delay_us, - dw9800_dev->move_delay_us + 1000); } + usleep_range(dw9800_dev->move_delay_us, + dw9800_dev->move_delay_us + 1000); + ret = i2c_smbus_write_byte_data(client, DW9800_RING_PD_CONTROL_REG, DW9800_PD_MODE_EN); if (ret < 0) From 8d7bbe0812b16ad9c82dd632a4e2b695217734d9 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Thu, 6 Mar 2025 13:07:19 +0300 Subject: [PATCH 04/12] sm7325-nothing-spacewar: Configure actuator for UW camera Signed-off-by: Danila Tikhonov --- arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts index 7a242f79d91dfa..babb7c96297d42 100644 --- a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts +++ b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts @@ -910,7 +910,13 @@ }; &cci1_i2c0 { - /* actuator (For Ultra Wide sensor) @ 0xc */ + camu_dw9800w: actuator@c { + compatible = "dongwoon,dw9800w", + "dongwoon,dw9800"; + reg = <0x0c>; + + vdd-supply = <&vreg_camu_vaf_1p8>; + }; camera@2d { compatible = "samsung,s5kjn1"; @@ -930,6 +936,8 @@ orientation = <1>; /* Rear facing */ rotation = <90>; + lens-focus = <&camu_dw9800w>; + port { camera_s5kjn1_ep: endpoint { data-lanes = <1 2 3 4>; From b44c8407c77dc8a405e629ea2edc83af711130bc Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Mon, 10 Mar 2025 16:39:12 +0300 Subject: [PATCH 05/12] media: i2c: ak7375: Add support for ak7377 Add support for ak7377 VCM, which has 10-bit position values, requiring a shift of 6 bits. It also has a different standby mode setting (0x10 instead of 0x40) and a significantly longer control delay. The maximum focus position is 1023, and the control step count is increased to 100. Tested on sm7325-nothing-spacewar phone. Signed-off-by: Danila Tikhonov --- drivers/media/i2c/ak7375.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/drivers/media/i2c/ak7375.c b/drivers/media/i2c/ak7375.c index 9a2432cea3fff9..a79a742c38b0a8 100644 --- a/drivers/media/i2c/ak7375.c +++ b/drivers/media/i2c/ak7375.c @@ -65,6 +65,20 @@ static const struct ak73xx_chipdef ak7375_cdef = { .power_delay_us = 10000, }; +static const struct ak73xx_chipdef ak7377_cdef = { + .reg_position = 0x0, + .reg_cont = 0x2, + .shift_pos = 6, /* 10 bits position values, need to << 6 */ + .mode_active = 0x0, + .mode_standby = 0x10, + .has_standby = true, + .focus_pos_max = 1023, + .focus_steps = 1, + .ctrl_steps = 100, + .ctrl_delay_us = 10000, // Why is this delay so long? + .power_delay_us = 10000, +}; + static const char * const ak7375_supply_names[] = { "vdd", "vio", @@ -331,6 +345,7 @@ static int __maybe_unused ak7375_vcm_resume(struct device *dev) static const struct of_device_id ak7375_of_table[] = { { .compatible = "asahi-kasei,ak7345", .data = &ak7345_cdef, }, { .compatible = "asahi-kasei,ak7375", .data = &ak7375_cdef, }, + { .compatible = "asahi-kasei,ak7377", .data = &ak7377_cdef, }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, ak7375_of_table); From fa026f191f5d6d2bac2b96e21416a54f22e542f7 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Mon, 10 Mar 2025 16:59:10 +0300 Subject: [PATCH 06/12] sm7325-nothing-spacewar: Configure actuator for wide camera Signed-off-by: Danila Tikhonov --- arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts index babb7c96297d42..2ef7ff1d3a84b6 100644 --- a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts +++ b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts @@ -958,7 +958,14 @@ }; &cci1_i2c1 { - /* actuator (For Wide sensor) @ 0xc */ + camw_ak7377: actuator@c { + compatible = "asahi-kasei,ak7377"; + reg = <0x0c>; + + vin-supply = <&vreg_cam_vio_1p8>; + vdd-supply = <&vreg_camw_vaf_1p8>; + }; + /* C-PHY sony,imx766 (Wide) @ 0x10 */ camw_gt24p128e: eeprom@50 { From 72b057cb4b30ba0e6ec346b4fa87774ef665c16a Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Fri, 24 Nov 2023 17:33:17 +0100 Subject: [PATCH 07/12] HACK(?) ASoC: codecs: wcd938x: Wait longer for swr probe It appears to sometimes take longer than two seconds for the tx_sdw_dev to appear, to increase the timeout. Signed-off-by: Luca Weiss --- sound/soc/codecs/wcd938x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/wcd938x.c b/sound/soc/codecs/wcd938x.c index 711f373ece24cf..5b2b5af3ac8c6c 100644 --- a/sound/soc/codecs/wcd938x.c +++ b/sound/soc/codecs/wcd938x.c @@ -3048,7 +3048,7 @@ static int wcd938x_soc_codec_probe(struct snd_soc_component *component) int ret, i; time_left = wait_for_completion_timeout(&tx_sdw_dev->initialization_complete, - msecs_to_jiffies(2000)); + msecs_to_jiffies(5000)); if (!time_left) { dev_err(dev, "soundwire device init timeout\n"); return -ETIMEDOUT; From 10d0363a208729a85bf3e18ffcab03264c7281d0 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Mon, 19 Aug 2024 21:42:38 +0300 Subject: [PATCH 08/12] WIP: arm64: dts: qcom: sm7325: Add sound Signed-off-by: Danila Tikhonov --- arch/arm64/boot/dts/qcom/sm7325.dtsi | 101 +++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/sm7325.dtsi b/arch/arm64/boot/dts/qcom/sm7325.dtsi index 85d34b53e5e9d1..9501cf40b0f1f9 100644 --- a/arch/arm64/boot/dts/qcom/sm7325.dtsi +++ b/arch/arm64/boot/dts/qcom/sm7325.dtsi @@ -6,6 +6,8 @@ #include "sc7280.dtsi" +#include + /* SM7325 uses Kryo 670 */ &cpu0 { compatible = "qcom,kryo670"; }; &cpu1 { compatible = "qcom,kryo670"; }; @@ -15,3 +17,102 @@ &cpu5 { compatible = "qcom,kryo670"; }; &cpu6 { compatible = "qcom,kryo670"; }; &cpu7 { compatible = "qcom,kryo670"; }; + +&lpass_audiocc { + compatible = "qcom,sm7325-lpassaudiocc", + "qcom,qcm6490-lpassaudiocc"; + /delete-property/ power-domains; + }; + +&lpass_cpu { status = "disabled"; }; + +&lpass_dmic01_clk { + drive-strength = <8>; + bias-disable; +}; + +&lpass_dmic01_data { + bias-pull-down; +}; + +&lpass_dmic23_clk { + drive-strength = <8>; + bias-disable; +}; + +&lpass_dmic23_data { + bias-pull-down; +}; + +&lpass_rx_macro { + clocks = <&q6afecc LPASS_CLK_ID_TX_CORE_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_CLK_ID_TX_CORE_NPL_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&lpass_va_macro>; + clock-names = "mclk", "npl", "macro", "dcodec", "fsgen"; + + clock-output-names = "mclk"; + + /delete-property/ power-domains; + /delete-property/ power-domain-names; +}; + +&lpass_rx_swr_clk { + drive-strength = <2>; + slew-rate = <1>; + bias-disable; +}; + +&lpass_rx_swr_data { + drive-strength = <2>; + slew-rate = <1>; + bias-bus-hold; +}; + +&lpass_tlmm { + clocks = <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>; + clock-names = "core", "audio"; +}; + +&lpass_tx_macro { + compatible = "qcom,sm7325-lpass-tx-macro", + "qcom,sm8450-lpass-tx-macro"; // txmacro = v9.2 + + clocks = <&q6afecc LPASS_CLK_ID_TX_CORE_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_CLK_ID_TX_CORE_NPL_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&lpass_va_macro>; + clock-names = "mclk", "npl", "macro", "dcodec", "fsgen"; + + clock-output-names = "mclk"; + + /delete-property/ power-domains; + /delete-property/ power-domain-names; +}; + +&lpass_tx_swr_clk { + drive-strength = <2>; + slew-rate = <1>; + bias-disable; +}; + +&lpass_tx_swr_data { + drive-strength = <2>; + slew-rate = <1>; + bias-bus-hold; +}; + +&lpass_va_macro { + clocks = <&q6afecc LPASS_CLK_ID_TX_CORE_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>; + clock-names = "mclk", "macro", "dcodec"; + + clock-output-names = "fsgen"; + + /delete-property/ power-domains; + /delete-property/ power-domain-names; +}; From 1ec60b584bb42ff58536c05c8bfedd56ec5a39d7 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Mon, 19 Aug 2024 21:43:06 +0300 Subject: [PATCH 09/12] WIP: arm64: dts: qcom: sm7325-nothing-spacewar: Add WCD Signed-off-by: Danila Tikhonov --- .../boot/dts/qcom/sm7325-nothing-spacewar.dts | 158 +++++++++++++++++- 1 file changed, 157 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts index 2ef7ff1d3a84b6..c94419860023fb 100644 --- a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts +++ b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts @@ -41,6 +41,7 @@ #size-cells = <2>; ranges; + bootargs = "clk_ignore_unused pd_ignore_unused"; stdout-path = "serial0:115200n8"; framebuffer0: framebuffer@e1000000 { @@ -380,6 +381,34 @@ regulator-always-on; vin-supply = <&vph_pwr>; }; + + wcd9385: audio-codec { + compatible = "qcom,wcd9385-codec"; + pinctrl-names = "default", "sleep"; + pinctrl-0 = <&wcd_reset_n>; + pinctrl-1 = <&wcd_reset_n_sleep>; + + reset-gpios = <&tlmm 83 GPIO_ACTIVE_LOW>; + + qcom,rx-device = <&wcd_rx>; + qcom,tx-device = <&wcd_tx>; + + vdd-rxtx-supply = <&vdd_txrx>; + vdd-io-supply = <&vdd_px_wcd9385>; + vdd-buck-supply = <&vdd_buck>; + vdd-mic-bias-supply = <&vdd_mic_bias>; + + qcom,micbias1-microvolt = <2750000>; + qcom,micbias2-microvolt = <2700000>; + qcom,micbias3-microvolt = <2750000>; + qcom,micbias4-microvolt = <2750000>; + + qcom,mbhc-buttons-vthreshold-microvolt = <75000 150000 237000 500000 500000 + 500000 500000 500000>; + qcom,mbhc-headset-vthreshold-microvolt = <1700000>; + qcom,mbhc-headphone-vthreshold-microvolt = <50000>; + #sound-dai-cells = <1>; + }; }; &apps_rsc { @@ -1091,6 +1120,20 @@ /delete-property/ power-domains; }; +&lpass_rx_macro { + status = "okay"; +}; + +&lpass_tx_macro { + status = "okay"; +}; + +&lpass_va_macro { + qcom,dmic-sample-rate = <4800000>; + vdd-micb-supply = <&vdd_mic_bias>; + status = "okay"; +}; + &mdss { status = "okay"; }; @@ -1332,12 +1375,28 @@ reg = ; qcom,sd-lines = <1>; }; + + dai@113 { + reg = ; + }; + + dai@120 { + reg = ; + }; }; &q6asmdai { dai@0 { reg = ; }; + + dai@1 { + reg = <1>; + }; + + dai@2 { + reg = <2>; + }; }; &qfprom { @@ -1394,6 +1453,20 @@ pinctrl-names = "default", "sleep"; + audio-routing = "IN1_HPHL", "HPHL_OUT", + "IN2_HPHR", "HPHR_OUT", + "AMIC1", "MIC BIAS1", + "AMIC2", "MIC BIAS2", + "AMIC3", "MIC BIAS1", // Unused? + "AMIC4", "MIC BIAS3", + "AMIC5", "MIC BIAS4", + /*"TX SWR_ADC0", "ADC1_OUTPUT", // txmacro < v9.2 + "TX SWR_ADC1", "ADC2_OUTPUT";*/ + "TX SWR_INPUT0", "ADC1_OUTPUT", // txmacro >= v9.2 + "TX SWR_INPUT1", "ADC2_OUTPUT", + "TX SWR_INPUT4", "ADC3_OUTPUT", + "TX SWR_INPUT5", "ADC4_OUTPUT"; + mm1-dai-link { link-name = "MultiMedia1"; @@ -1402,6 +1475,22 @@ }; }; + mm2-dai-link { + link-name = "MultiMedia2"; + + cpu { + sound-dai = <&q6asmdai MSM_FRONTEND_DAI_MULTIMEDIA2>; + }; + }; + + mm3-dai-link { + link-name = "MultiMedia3"; + + cpu { + sound-dai = <&q6asmdai MSM_FRONTEND_DAI_MULTIMEDIA3>; + }; + }; + i2s-dai-link { link-name = "I2S Playback"; @@ -1409,12 +1498,44 @@ sound-dai = <&q6afedai PRIMARY_MI2S_RX>; }; + codec { + sound-dai = <&tfa9873_l 0>, <&tfa9873_r 0>; + }; + platform { sound-dai = <&q6routing>; }; + }; + + wcd-playback-dai-link { + link-name = "WCD Playback"; + + cpu { + sound-dai = <&q6afedai RX_CODEC_DMA_RX_0>; + }; codec { - sound-dai = <&tfa9873_l 0>, <&tfa9873_r 0>; + sound-dai = <&wcd9385 0>, <&swr0 0>, <&lpass_rx_macro 0>; + }; + + platform { + sound-dai = <&q6routing>; + }; + }; + + wcd-capture-dai-link { + link-name = "WCD Capture"; + + cpu { + sound-dai = <&q6afedai TX_CODEC_DMA_TX_3>; + }; + + codec { + sound-dai = <&wcd9385 1>, <&swr1 0>, <&lpass_tx_macro 0>; + }; + + platform { + sound-dai = <&q6routing>; }; }; }; @@ -1455,6 +1576,28 @@ }; }; +&swr0 { + status = "okay"; + + wcd_rx: codec@0,4 { + compatible = "sdw20217010d00"; + reg = <0 4>; + + qcom,rx-port-mapping = <1 2 3 4 5>; + }; +}; + +&swr1 { + status = "okay"; + + wcd_tx: codec@0,3 { + compatible = "sdw20217010d00"; + reg = <0 3>; + + qcom,tx-port-mapping = <1 2 3 4>; + }; +}; + &tlmm { /* 56-59: Fingerprint reader (SPI) */ gpio-reserved-ranges = <56 4>; @@ -1539,6 +1682,19 @@ bias-pull-down; }; + wcd_reset_n: wcd-reset-n-state { + pins = "gpio83"; + function = "gpio"; + drive-strength = <8>; + }; + + wcd_reset_n_sleep: wcd-reset-n-sleep-state { + pins = "gpio83"; + function = "gpio"; + drive-strength = <8>; + bias-disable; + }; + hst_bt_en: hst-bt-en-state { pins = "gpio85"; function = "gpio"; From a64518917f9424f6944f0c7f01663aa6d1f6248d Mon Sep 17 00:00:00 2001 From: Eugene Lepshy Date: Thu, 11 Jan 2024 14:51:47 +0300 Subject: [PATCH 10/12] arm64: dts: qcom: sm7325-nothing-spacewar: Add touchscreen support Signed-off-by: Eugene Lepshy --- .../boot/dts/qcom/sm7325-nothing-spacewar.dts | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts index c94419860023fb..3b6e4a72a289cf 100644 --- a/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts +++ b/arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dts @@ -1543,8 +1543,8 @@ &spi13 { status = "okay"; - focaltech@0 { - compatible = "focaltech,fts_ts"; + touchscreen@0 { + compatible = "focaltech,ft3680"; reg = <0x0>; spi-max-frequency = <6000000>; @@ -1555,24 +1555,16 @@ focaltech,irq-gpio = <&tlmm 81 0x2008>; focaltech,display-coords = <0 0 1080 2400>; focaltech,max-touch-number = <10>; - focaltech,ic-type = <0x3658d488>; vdd-supply = <&vdd_ts>; iovdd-supply = <&vreg_l8c_1p8>; + firmware-name = + "qcom/sm7325/nothing/spacewar/focaltech_ts_novatek.bin"; + pinctrl-names = "default"; pinctrl-0 = <&ts_int_n>, <&ts_reset_n>; - - focaltech,trusted-touch-mode = "vm_mode"; - focaltech,touch-environment = "pvm"; - focaltech,trusted-touch-spi-irq = <601>; - focaltech,trusted-touch-io-bases = <0xf134000 0xf135000 - 0xf136000 0xf137000 - 0xf169000 0xf151000 - 0xa94000 0x00a10000>; - focaltech,trusted-touch-io-sizes = <0x1000 0x1000 0x1000 0x1000 - 0x1000 0x1000 0x1000 0x4000>; }; }; From ff259d343a33ec0c0adae7f365fc52267fb99431 Mon Sep 17 00:00:00 2001 From: Danila Tikhonov Date: Tue, 21 Jan 2025 01:20:23 +0300 Subject: [PATCH 11/12] WIP: fixup! drivers: input: touchscreen: Import FT touchcscreen driver from DS This is some preparation for rewriting the driver: - Drop downstream pinctrl, point report check, gesture, pen, ESD, drm notifier implementation - Drop unused code - Drop old firmware files - Switch to tabs in main files - Refactor regulators & reset gpio implementation - Drop FTS macros & use kernel log func calls - And other minor changes... Signed-off-by: Danila Tikhonov Co-developed-by: Eugene Lepshy --- drivers/input/touchscreen/Makefile | 4 +- .../input/touchscreen/focaltech_touch/Kconfig | 31 +- .../touchscreen/focaltech_touch/Makefile | 13 +- .../{focaltech_core.h => focaltech.h} | 132 +- .../focaltech_touch/focaltech_common.h | 169 - .../focaltech_touch/focaltech_core.c | 328 +- .../focaltech_touch/focaltech_ex_fun.c | 882 -- .../focaltech_touch/focaltech_ex_mode.c | 338 - .../focaltech_touch/focaltech_flash.c | 575 +- .../focaltech_touch/focaltech_flash.h | 192 - .../focaltech_touch/focaltech_spi.c | 12 +- .../FT3680_WXN_M146_V27_D01_20220706_app.i | 7456 ----------------- .../include/firmware/fw_sample.i | 0 .../focaltech_config.h | 277 - 14 files changed, 363 insertions(+), 10046 deletions(-) rename drivers/input/touchscreen/focaltech_touch/{focaltech_core.h => focaltech.h} (67%) delete mode 100644 drivers/input/touchscreen/focaltech_touch/focaltech_common.h delete mode 100644 drivers/input/touchscreen/focaltech_touch/focaltech_ex_fun.c delete mode 100644 drivers/input/touchscreen/focaltech_touch/focaltech_ex_mode.c delete mode 100644 drivers/input/touchscreen/focaltech_touch/focaltech_flash.h delete mode 100755 drivers/input/touchscreen/focaltech_touch/include/firmware/FT3680_WXN_M146_V27_D01_20220706_app.i delete mode 100755 drivers/input/touchscreen/focaltech_touch/include/firmware/fw_sample.i delete mode 100644 drivers/input/touchscreen/focaltech_touch_ft3658u/focaltech_config.h diff --git a/drivers/input/touchscreen/Makefile b/drivers/input/touchscreen/Makefile index 15ebe63417ecb0..cea0526f46674f 100644 --- a/drivers/input/touchscreen/Makefile +++ b/drivers/input/touchscreen/Makefile @@ -118,5 +118,5 @@ obj-$(CONFIG_TOUCHSCREEN_IQS5XX) += iqs5xx.o obj-$(CONFIG_TOUCHSCREEN_IQS7211) += iqs7211.o obj-$(CONFIG_TOUCHSCREEN_ZINITIX) += zinitix.o obj-$(CONFIG_TOUCHSCREEN_HIMAX_HX83112B) += himax_hx83112b.o -obj-$(CONFIG_TOUCHSCREEN_FTS) += focaltech_touch/ -obj-$(CONFIG_TOUCHSCREEN_FOCALTECH_FT3658U) += focaltech_touch_ft3658u/ +obj-$(CONFIG_TOUCHSCREEN_FTS_CORE) += focaltech_touch/ +obj-$(CONFIG_TOUCHSCREEN_FOCALTECH_FT3658U) += focaltech_touch_ft3658u/ \ No newline at end of file diff --git a/drivers/input/touchscreen/focaltech_touch/Kconfig b/drivers/input/touchscreen/focaltech_touch/Kconfig index b7a13b6302311a..01ff22e83fc77e 100644 --- a/drivers/input/touchscreen/focaltech_touch/Kconfig +++ b/drivers/input/touchscreen/focaltech_touch/Kconfig @@ -1,15 +1,18 @@ -# # Focaltech Touchscreen driver configuration -# - -config TOUCHSCREEN_FTS - tristate "Focaltech Touchscreen" - default n - help - Say Y here if you have Focaltech touch panel. - If unsure, say N. - -config TOUCHSCREEN_FTS_DIRECTORY - string "Focaltech ts directory name" - default "focaltech_touch" - depends on TOUCHSCREEN_FTS + +config TOUCHSCREEN_FTS_CORE + tristate + +config TOUCHSCREEN_FTS_SPI + tristate "Focaltech SPI touchscreen" + depends on SPI_MASTER + select REGMAP + select TOUCHSCREEN_FTS_CORE + help + Say Y here if you have a Focaltech IC connected to + your system via SPI. + + If unsure, say N. + + To compile this driver as a module, choose M here: the + module will be called focaltech_spi. diff --git a/drivers/input/touchscreen/focaltech_touch/Makefile b/drivers/input/touchscreen/focaltech_touch/Makefile index a3a3b3b74c5652..618b86b6125256 100644 --- a/drivers/input/touchscreen/focaltech_touch/Makefile +++ b/drivers/input/touchscreen/focaltech_touch/Makefile @@ -1,12 +1,9 @@ # Makefile for the focaltech touchscreen drivers. +#focaltech_ts-y += focaltech_core.o focaltech_flash.o -fts_tp-y += focaltech_core.o -fts_tp-y += focaltech_ex_fun.o -fts_tp-y += focaltech_ex_mode.o +#obj-$(CONFIG_TOUCHSCREEN_FTS_CORE) += focaltech_ts.o +#obj-$(CONFIG_TOUCHSCREEN_FTS_SPI) += focaltech_spi.o -fts_tp-y += focaltech_flash.o - -fts_tp-y += focaltech_spi.o - -obj-$(CONFIG_TOUCHSCREEN_FTS) += fts_tp.o \ No newline at end of file +focaltech_ts-y += focaltech_spi.o focaltech_core.o focaltech_flash.o +obj-$(CONFIG_TOUCHSCREEN_FTS_SPI) += focaltech_ts.o diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_core.h b/drivers/input/touchscreen/focaltech_touch/focaltech.h similarity index 67% rename from drivers/input/touchscreen/focaltech_touch/focaltech_core.h rename to drivers/input/touchscreen/focaltech_touch/focaltech.h index 70a8d8179c8626..6b4790fe383dea 100644 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_core.h +++ b/drivers/input/touchscreen/focaltech_touch/focaltech.h @@ -44,7 +44,64 @@ #include #include #include -#include "focaltech_common.h" + +#define FTS_CHIP_TYPE 0x3680008A + +#define BYTE_OFF_0(x) (u8)((x) & 0xFF) +#define BYTE_OFF_8(x) (u8)(((x) >> 8) & 0xFF) +#define BYTE_OFF_16(x) (u8)(((x) >> 16) & 0xFF) +#define BYTE_OFF_24(x) (u8)(((x) >> 24) & 0xFF) +#define FLAGBIT(x) (0x00000001 << (x)) +#define FLAGBITS(x, y) ((0xFFFFFFFF >> (32 - (y) - 1)) & (0xFFFFFFFF << (x))) + +#define FLAG_ICSERIALS_LEN 8 +#define FLAG_HID_BIT 10 +#define FLAG_IDC_BIT 11 + +#define IC_SERIALS (FTS_CHIP_TYPE & FLAGBITS(0, FLAG_ICSERIALS_LEN-1)) +#define IC_TO_SERIALS(x) ((x) & FLAGBITS(0, FLAG_ICSERIALS_LEN-1)) +#define FTS_CHIP_IDC ((FTS_CHIP_TYPE & FLAGBIT(FLAG_IDC_BIT)) == FLAGBIT(FLAG_IDC_BIT)) +#define FTS_HID_SUPPORTTED ((FTS_CHIP_TYPE & FLAGBIT(FLAG_HID_BIT)) == FLAGBIT(FLAG_HID_BIT)) + +#define FTS_MAX_CHIP_IDS 8 + +#define FTS_CHIP_TYPE_MAPPING { { 0x8A, 0x56, 0x62, 0x56, 0x62, 0x56, 0xE2, 0x00, 0x00 } } + +#define FILE_NAME_LENGTH 128 +#define ENABLE 1 +#define DISABLE 0 +#define VALID 1 +#define INVALID 0 +#define FTS_CMD_START1 0x55 +#define FTS_CMD_START2 0xAA +#define FTS_CMD_START_DELAY 12 +#define FTS_CMD_READ_ID 0x90 +#define FTS_CMD_READ_ID_LEN 4 +#define FTS_CMD_READ_ID_LEN_INCELL 1 +#define FTS_CMD_READ_INFO 0x5E + +/*register address*/ +#define FTS_REG_INT_CNT 0x8F +#define FTS_REG_FLOW_WORK_CNT 0x91 +#define FTS_REG_WORKMODE 0x00 +#define FTS_REG_WORKMODE_FACTORY_VALUE 0x40 +#define FTS_REG_WORKMODE_WORK_VALUE 0x00 +#define FTS_REG_CHIP_ID 0xA3 +#define FTS_REG_CHIP_ID2 0x9F +#define FTS_REG_POWER_MODE 0xA5 +#define FTS_REG_POWER_MODE_SLEEP 0x03 +#define FTS_REG_FW_VER 0xA6 +#define FTS_REG_VENDOR_ID 0xA8 +#define FTS_REG_LCD_BUSY_NUM 0xAB +#define FTS_REG_FACE_DEC_MODE_EN 0xB0 +#define FTS_REG_FACTORY_MODE_DETACH_FLAG 0xB4 +#define FTS_REG_FACE_DEC_MODE_STATUS 0x01 +#define FTS_REG_IDE_PARA_VER_ID 0xB5 +#define FTS_REG_IDE_PARA_STATUS 0xB6 +#define FTS_REG_LIC_VER 0xE4 +#define FACTORY_REG_OPEN_ADDR 0xCF +#define FACTORY_REG_OPEN_ADDR_FOD 0x02 +#define FTS_REG_EDGE_MODE_EN 0x8C #define FTS_MAX_POINTS_SUPPORT 10 /* constant value, can't be changed */ #define FTS_MAX_KEYS 4 @@ -82,9 +139,20 @@ #define FTS_REG_FOD_INFO 0xE1 #define FTS_REG_FOD_INFO_LEN 9 -#define FTS_PATCH_COMERR_PM 0 #define FTS_TIMEOUT_COMERR_PM 700 +#define FTS_SYSFS_ECHO_ON(buf) (buf[0] == '1' || buf[0] == '2') +#define FTS_SYSFS_ECHO_OFF(buf) (buf[0] == '0') + +#define kfree_safe(pbuf) \ + do { \ + if (pbuf) { \ + kfree(pbuf); \ + pbuf = NULL; \ + } \ + } while (0) + + struct ftxxxx_proc { struct proc_dir_entry *proc_entry; u8 opmode; @@ -95,7 +163,6 @@ struct ftxxxx_proc { struct fts_ts_platform_data { u32 irq_gpio; u32 irq_gpio_flags; - bool have_key; u32 key_number; u32 keys[FTS_MAX_KEYS]; u32 key_y_coords[FTS_MAX_KEYS]; @@ -127,6 +194,30 @@ struct fts_fod_info { u8 fp_down_report; }; +struct ft_chip_t { + u16 type; + u8 chip_idh; + u8 chip_idl; + u8 rom_idh; + u8 rom_idl; + u8 pb_idh; + u8 pb_idl; + u8 bl_idh; + u8 bl_idl; +}; + +struct ft_chip_id_t { + u16 type; + u16 chip_ids[FTS_MAX_CHIP_IDS]; +}; + +struct ts_ic_info { + bool is_incell; + bool hid_supported; + struct ft_chip_t ids; + struct ft_chip_id_t cid; +}; + struct fts_ts_data { struct i2c_client *client; struct spi_device *spi; @@ -140,30 +231,19 @@ struct fts_ts_data { struct work_struct resume_work; wait_queue_head_t ts_waitqueue; struct ftxxxx_proc proc; - struct ftxxxx_proc proc_ta; spinlock_t irq_lock; struct mutex report_mutex; struct mutex bus_lock; unsigned long intr_jiffies; int irq; - int log_level; int fw_is_running; /* confirm fw is running when using spi:default 0 */ int dummy_byte; -#if defined(CONFIG_PM) && FTS_PATCH_COMERR_PM - struct completion pm_completion; - bool pm_suspend; -#endif bool suspended; bool fw_loading; bool irq_disabled; bool power_disabled; - bool glove_mode; - bool cover_mode; - bool charger_mode; - bool touch_analysis_support; bool prc_support; bool prc_mode; - u8 edge_mode; u8 blank_up; struct ts_event events[FTS_MAX_POINTS_SUPPORT]; /* multi-touch */ @@ -183,8 +263,10 @@ struct fts_ts_data { u8 *bus_rx_buf; int bus_type; struct fts_fod_info fod_info; + struct regulator_bulk_data *supplies; struct gpio_desc *reset_gpio; + const char *firmware_path; }; enum _FTS_BUS_TYPE { @@ -197,22 +279,22 @@ enum _FTS_BUS_TYPE { enum _FTS_TOUCH_ETYPE { TOUCH_DEFAULT = 0x00, TOUCH_EVENT_NUM = 0x02, - TOUCH_EXTRA_MSG = 0x08, TOUCH_FW_INIT = 0x81, TOUCH_IGNORE = 0xFE, TOUCH_ERROR = 0xFF, }; -enum _FTS_STYLUS_ETYPE { - STYLUS_DEFAULT, - STYLUS_HOVER, -}; - static const struct regulator_bulk_data fts_tp_supplies[] = { { .supply = "vdd" }, { .supply = "iovdd" }, }; +struct device; +struct input_id; + +int fts_probe(struct device *dev, int irq, const struct input_id *id); +void fts_remove(struct device *dev, int irq, const struct input_id *id); + /* Global variable or extern global variabls/functions */ extern struct fts_ts_data *fts_data; @@ -227,10 +309,6 @@ int fts_bus_exit(struct fts_ts_data *ts_data); int fts_spi_transfer_direct(u8 *writebuf, u32 writelen, u8 *readbuf, u32 readlen); -/* ADB functions */ -int fts_create_sysfs(struct fts_ts_data *ts_data); -int fts_remove_sysfs(struct fts_ts_data *ts_data); - /* Point Report Check*/ int fts_point_report_check_init(struct fts_ts_data *ts_data); int fts_point_report_check_exit(struct fts_ts_data *ts_data); @@ -241,18 +319,12 @@ int fts_fwupg_init(struct fts_ts_data *ts_data); int fts_fwupg_exit(struct fts_ts_data *ts_data); int fts_fw_resume(bool need_reset); int fts_fw_recovery(void); -int fts_upgrade_bin(char *fw_name, bool force); -int fts_enter_test_environment(bool test_state); /* Other */ int fts_request_handle_reset(struct fts_ts_data *ts_data, int hdelayms); int fts_check_cid(struct fts_ts_data *ts_data, u8 id_h); int fts_wait_tp_to_valid(void); void fts_release_all_finger(void); -void fts_tp_state_recovery(struct fts_ts_data *ts_data); -int fts_ex_mode_init(struct fts_ts_data *ts_data); -int fts_ex_mode_exit(struct fts_ts_data *ts_data); -int fts_ex_mode_recovery(struct fts_ts_data *ts_data); void fts_irq_disable(void); void fts_irq_enable(void); diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_common.h b/drivers/input/touchscreen/focaltech_touch/focaltech_common.h deleted file mode 100644 index ff01a645d85218..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_common.h +++ /dev/null @@ -1,169 +0,0 @@ -/* - * FocalTech fts TouchScreen driver. - * - * Copyright (c) 2012-2020, Focaltech Ltd. All rights reserved. - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#ifndef __LINUX_FOCALTECH_COMMON_H__ -#define __LINUX_FOCALTECH_COMMON_H__ - -#define FTS_CHIP_TYPE 0x3680008A -#define FTS_AUTO_UPGRADE_EN 1 -#define FTS_GET_MODULE_NUM 0 - -/* - * module_id: mean vendor_id generally, also maybe gpio or lcm_id... - * If means vendor_id, the FTS_MODULE_ID = PANEL_ID << 8 + VENDOR_ID - * FTS_GET_MODULE_NUM == 0/1, no check module id, you may ignore them - * FTS_GET_MODULE_NUM >= 2, compatible with FTS_MODULE2_ID - * FTS_GET_MODULE_NUM >= 3, compatible with FTS_MODULE3_ID - */ -#define FTS_MODULE_ID 0x0000 -#define FTS_MODULE2_ID 0x0000 -#define FTS_MODULE3_ID 0x0000 - -/* - * Need set the following when get firmware via firmware_request() - * For example: if module'vendor is tianma, - * #define FTS_MODULE_NAME "tianma" - * then file_name will be "focaltech_ts_fw_tianma" - * You should rename fw to "focaltech_ts_fw_tianma", and push it into - * etc/firmware or by customers - */ -#define FTS_MODULE_NAME "" -#define FTS_MODULE2_NAME "" -#define FTS_MODULE3_NAME "" - -/* - * FW.i file for auto upgrade, you must replace it with your own - * define your own fw_file, the sample one to be replaced is invalid - * NOTE: if FTS_GET_MODULE_NUM > 1, it's the fw corresponding with FTS_VENDOR_ID - */ -#define FTS_UPGRADE_FW_FILE \ - "include/firmware/FT3680_WXN_M146_V27_D01_20220706_app.i" - -/* - * if FTS_GET_MODULE_NUM >= 2, fw corrsponding with FTS_VENDOR_ID2 - * define your own fw_file, the sample one is invalid - */ -#define FTS_UPGRADE_FW2_FILE "include/firmware/fw_sample.i" - -/* - * if FTS_GET_MODULE_NUM >= 3, fw corrsponding with FTS_VENDOR_ID3 - * define your own fw_file, the sample one is invalid - */ -#define FTS_UPGRADE_FW3_FILE "include/firmware/fw_sample.i" - -/*********************************************************/ - -/***************************************************************************** -* Macro definitions using #define -*****************************************************************************/ -#define FTS_DRIVER_VERSION "Focaltech V3.4 20211214" - -#define BYTE_OFF_0(x) (u8)((x) & 0xFF) -#define BYTE_OFF_8(x) (u8)(((x) >> 8) & 0xFF) -#define BYTE_OFF_16(x) (u8)(((x) >> 16) & 0xFF) -#define BYTE_OFF_24(x) (u8)(((x) >> 24) & 0xFF) -#define FLAGBIT(x) (0x00000001 << (x)) -#define FLAGBITS(x, y) ((0xFFFFFFFF >> (32 - (y) - 1)) & (0xFFFFFFFF << (x))) - -#define FLAG_ICSERIALS_LEN 8 -#define FLAG_HID_BIT 10 -#define FLAG_IDC_BIT 11 - -#define IC_SERIALS (FTS_CHIP_TYPE & FLAGBITS(0, FLAG_ICSERIALS_LEN-1)) -#define IC_TO_SERIALS(x) ((x) & FLAGBITS(0, FLAG_ICSERIALS_LEN-1)) -#define FTS_CHIP_IDC ((FTS_CHIP_TYPE & FLAGBIT(FLAG_IDC_BIT)) == FLAGBIT(FLAG_IDC_BIT)) -#define FTS_HID_SUPPORTTED ((FTS_CHIP_TYPE & FLAGBIT(FLAG_HID_BIT)) == FLAGBIT(FLAG_HID_BIT)) - -#define FTS_MAX_CHIP_IDS 8 - -#define FTS_CHIP_TYPE_MAPPING \ - { { 0x8A, 0x56, 0x62, 0x56, 0x62, 0x56, 0xE2, 0x00, 0x00 } } - -#define FILE_NAME_LENGTH 128 -#define ENABLE 1 -#define DISABLE 0 -#define VALID 1 -#define INVALID 0 -#define FTS_CMD_START1 0x55 -#define FTS_CMD_START2 0xAA -#define FTS_CMD_START_DELAY 12 -#define FTS_CMD_READ_ID 0x90 -#define FTS_CMD_READ_ID_LEN 4 -#define FTS_CMD_READ_ID_LEN_INCELL 1 -#define FTS_CMD_READ_INFO 0x5E - -/*register address*/ -#define FTS_REG_INT_CNT 0x8F -#define FTS_REG_FLOW_WORK_CNT 0x91 -#define FTS_REG_WORKMODE 0x00 -#define FTS_REG_WORKMODE_FACTORY_VALUE 0x40 -#define FTS_REG_WORKMODE_WORK_VALUE 0x00 -#define FTS_REG_CHIP_ID 0xA3 -#define FTS_REG_CHIP_ID2 0x9F -#define FTS_REG_POWER_MODE 0xA5 -#define FTS_REG_POWER_MODE_SLEEP 0x03 -#define FTS_REG_FW_VER 0xA6 -#define FTS_REG_VENDOR_ID 0xA8 -#define FTS_REG_LCD_BUSY_NUM 0xAB -#define FTS_REG_FACE_DEC_MODE_EN 0xB0 -#define FTS_REG_FACTORY_MODE_DETACH_FLAG 0xB4 -#define FTS_REG_FACE_DEC_MODE_STATUS 0x01 -#define FTS_REG_IDE_PARA_VER_ID 0xB5 -#define FTS_REG_IDE_PARA_STATUS 0xB6 -#define FTS_REG_GLOVE_MODE_EN 0xC0 -#define FTS_REG_COVER_MODE_EN 0xC1 -#define FTS_REG_CHARGER_MODE_EN 0x8B -#define FTS_REG_MODULE_ID 0xE3 -#define FTS_REG_LIC_VER 0xE4 -#define FACTORY_REG_OPEN_ADDR 0xCF -#define FACTORY_REG_OPEN_ADDR_FOD 0x02 -#define FTS_REG_EDGE_MODE_EN 0x8C - -#define FTS_SYSFS_ECHO_ON(buf) (buf[0] == '1' || buf[0] == '2') -#define FTS_SYSFS_ECHO_OFF(buf) (buf[0] == '0') - -#define kfree_safe(pbuf) \ - do { \ - if (pbuf) { \ - kfree(pbuf); \ - pbuf = NULL; \ - } \ - } while (0) - -struct ft_chip_t { - u16 type; - u8 chip_idh; - u8 chip_idl; - u8 rom_idh; - u8 rom_idl; - u8 pb_idh; - u8 pb_idl; - u8 bl_idh; - u8 bl_idl; -}; - -struct ft_chip_id_t { - u16 type; - u16 chip_ids[FTS_MAX_CHIP_IDS]; -}; - -struct ts_ic_info { - bool is_incell; - bool hid_supported; - struct ft_chip_t ids; - struct ft_chip_id_t cid; -}; - -#endif /* __LINUX_FOCALTECH_COMMON_H__ */ diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_core.c b/drivers/input/touchscreen/focaltech_touch/focaltech_core.c index fe3b3ca18ad59e..219fa2ce6a28c5 100644 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_core.c +++ b/drivers/input/touchscreen/focaltech_touch/focaltech_core.c @@ -19,11 +19,8 @@ #include #include #include -#include -#include -#include -#include "focaltech_core.h" +#include "focaltech.h" #define FTS_DRIVER_NAME "fts_ts" #define INTERVAL_READ_REG 200 /* unit:ms */ @@ -86,23 +83,6 @@ int fts_wait_tp_to_valid(void) return -EIO; } -/***************************************************************************** -* Name: fts_tp_state_recovery -* Brief: Need execute this function when reset -* Input: -* Output: -* Return: -*****************************************************************************/ -void fts_tp_state_recovery(struct fts_ts_data *ts_data) -{ - /* wait tp stable */ - fts_wait_tp_to_valid(); - /* recover TP charger state 0x8B */ - /* recover TP glove state 0xC0 */ - /* recover TP cover state 0xC1 */ - fts_ex_mode_recovery(ts_data); -} - int fts_request_handle_reset(struct fts_ts_data *ts_data, int hdelayms) { gpiod_set_value_cansleep(ts_data->reset_gpio, 0); @@ -172,48 +152,6 @@ void fts_hid2std(void) } } -static int fts_match_cid(struct fts_ts_data *ts_data, u16 type, u8 id_h, - u8 id_l, bool force) -{ -#ifdef FTS_CHIP_ID_MAPPING - u32 i = 0; - u32 j = 0; - struct ft_chip_id_t chip_id_list[] = FTS_CHIP_ID_MAPPING; - u32 cid_entries = sizeof(chip_id_list) / sizeof(struct ft_chip_id_t); - u16 id = (id_h << 8) + id_l; - - memset(&ts_data->ic_info.cid, 0, sizeof(struct ft_chip_id_t)); - for (i = 0; i < cid_entries; i++) { - if (!force && (type == chip_id_list[i].type)) - break; - else if (force && (type == chip_id_list[i].type)) { - dev_info(dev, "match cid,type:0x%x", - (int)chip_id_list[i].type); - ts_data->ic_info.cid = chip_id_list[i]; - return 0; - } - } - - if (i >= cid_entries) - return -ENODATA; - - for (j = 0; j < FTS_MAX_CHIP_IDS; j++) { - if (id == chip_id_list[i].chip_ids[j]) { - dev_dbg(dev, "cid:%x==%x", id, - chip_id_list[i].chip_ids[j]); - dev_info(dev, "match cid,type:0x%x", - (int)chip_id_list[i].type); - ts_data->ic_info.cid = chip_id_list[i]; - return 0; - } - } - - return -ENODATA; -#else - return -EINVAL; -#endif -} - static int fts_get_chip_types(struct fts_ts_data *ts_data, u8 id_h, u8 id_l, bool fw_valid) { @@ -230,9 +168,7 @@ static int fts_get_chip_types(struct fts_ts_data *ts_data, u8 id_h, u8 id_l, for (i = 0; i < ctype_entries; i++) { if (VALID == fw_valid) { if (((id_h == ctype[i].chip_idh) && - (id_l == ctype[i].chip_idl)) || - (!fts_match_cid(ts_data, ctype[i].type, id_h, id_l, - 0))) + (id_l == ctype[i].chip_idl))) break; } else { if (((id_h == ctype[i].rom_idh) && @@ -249,7 +185,6 @@ static int fts_get_chip_types(struct fts_ts_data *ts_data, u8 id_h, u8 id_l, if (i >= ctype_entries) return -ENODATA; - fts_match_cid(ts_data, ctype[i].type, id_h, id_l, 1); ts_data->ic_info.ids = ctype[i]; return 0; } @@ -388,55 +323,6 @@ void fts_release_all_finger(void) mutex_unlock(&ts_data->report_mutex); } -/***************************************************************************** -* Name: fts_input_report_key -* Brief: process key events,need report key-event if key enable. -* if point's coordinate is in (x_dim-50,y_dim-50) ~ (x_dim+50,y_dim+50), -* need report it to key event. -* x_dim: parse from dts, means key x_coordinate, dimension:+-50 -* y_dim: parse from dts, means key y_coordinate, dimension:+-50 -* Input: -* Output: -* Return: return 0 if it's key event, otherwise return error code -*****************************************************************************/ -static int fts_input_report_key(struct fts_ts_data *ts_data, - struct ts_event *kevent) -{ - int i = 0; - int x = kevent->x; - int y = kevent->y; - int *x_dim = &ts_data->pdata->key_x_coords[0]; - int *y_dim = &ts_data->pdata->key_y_coords[0]; - - if (!ts_data->pdata->have_key) - return -EINVAL; - - for (i = 0; i < ts_data->pdata->key_number; i++) { - if ((x >= x_dim[i] - FTS_KEY_DIM) && - (x <= x_dim[i] + FTS_KEY_DIM) && - (y >= y_dim[i] - FTS_KEY_DIM) && - (y <= y_dim[i] + FTS_KEY_DIM)) { - if (EVENT_DOWN(kevent->flag) && - !(ts_data->key_state & (1 << i))) { - input_report_key(ts_data->input_dev, - ts_data->pdata->keys[i], 1); - ts_data->key_state |= (1 << i); - dev_dbg(ts_data->dev, "Key%d(%d,%d) DOWN!", i, - x, y); - } else if (EVENT_UP(kevent->flag) && - (ts_data->key_state & (1 << i))) { - input_report_key(ts_data->input_dev, - ts_data->pdata->keys[i], 0); - ts_data->key_state &= ~(1 << i); - dev_dbg(ts_data->dev, "Key%d(%d,%d) Up!", i, x, - y); - } - return 0; - } - } - return -EINVAL; -} - static int fts_input_report_b(struct fts_ts_data *ts_data, struct ts_event *events) { @@ -448,9 +334,6 @@ static int fts_input_report_b(struct fts_ts_data *ts_data, struct input_dev *input_dev = ts_data->input_dev; for (i = 0; i < ts_data->touch_event_num; i++) { - if (fts_input_report_key(ts_data, &events[i]) == 0) - continue; - touch_event_coordinate = true; if (EVENT_DOWN(events[i].flag)) { input_mt_slot(input_dev, events[i].id); @@ -468,9 +351,7 @@ static int fts_input_report_b(struct fts_ts_data *ts_data, touch_down_point_cur |= (1 << events[i].id); touch_point_pre |= (1 << events[i].id); - if ((ts_data->log_level >= 2) || - ((1 == ts_data->log_level) && - (FTS_TOUCH_DOWN == events[i].flag))) { + if (FTS_TOUCH_DOWN == events[i].flag) { dev_dbg(ts_data->dev, "[B]P%d(%d, %d)[p:%d,tm:%d] DOWN!", events[i].id, events[i].x, events[i].y, @@ -481,9 +362,7 @@ static int fts_input_report_b(struct fts_ts_data *ts_data, input_mt_report_slot_state(input_dev, MT_TOOL_FINGER, false); touch_point_pre &= ~(1 << events[i].id); - if (ts_data->log_level >= 1) - dev_dbg(ts_data->dev, "[B]P%d UP!", - events[i].id); + dev_dbg(ts_data->dev, "[B]P%d UP!", events[i].id); } } @@ -491,8 +370,7 @@ static int fts_input_report_b(struct fts_ts_data *ts_data, for (i = 0; i < max_touch_num; i++) { if ((1 << i) & (touch_point_pre ^ touch_down_point_cur)) { - if (ts_data->log_level >= 1) - dev_dbg(ts_data->dev, "[B]P%d UP!", i); + dev_dbg(ts_data->dev, "[B]P%d UP!", i); input_mt_slot(input_dev, i); input_mt_report_slot_state( input_dev, MT_TOOL_FINGER, false); @@ -503,7 +381,7 @@ static int fts_input_report_b(struct fts_ts_data *ts_data, if (touch_down_point_cur) input_report_key(input_dev, BTN_TOUCH, 1); else if (touch_event_coordinate || ts_data->touch_points) { - if (ts_data->touch_points && (ts_data->log_level >= 1)) + if (ts_data->touch_points) dev_dbg(ts_data->dev, "[B]Points All Up!"); input_report_key(input_dev, BTN_TOUCH, 0); } @@ -550,8 +428,7 @@ static int fts_read_parse_touchdata(struct fts_ts_data *ts_data, u8 *touch_buf) return TOUCH_ERROR; } - if (ts_data->log_level >= 3) - fts_show_touch_buffer(touch_buf, ts_data->ta_size); + fts_show_touch_buffer(touch_buf, ts_data->ta_size); if (ret) return TOUCH_IGNORE; @@ -682,57 +559,9 @@ static int fts_irq_read_report(struct fts_ts_data *ts_data) mutex_unlock(&ts_data->report_mutex); break; - case TOUCH_EXTRA_MSG: - if (!ts_data->touch_analysis_support) { - dev_err(ts_data->dev, "touch_analysis is disabled"); - return -EINVAL; - } - - event_num = touch_buf[FTS_TOUCH_E_NUM] & 0x0F; - if (!event_num || (event_num > max_touch_num)) { - dev_err(ts_data->dev, "invalid touch event num(%d)", - event_num); - return -EIO; - } - - ts_data->touch_event_num = event_num; - for (i = 0; i < event_num; i++) { - base = FTS_ONE_TCH_LEN * i + 4; - pointid = (touch_buf[FTS_TOUCH_OFF_ID_YH + base]) >> 4; - if (pointid >= max_touch_num) { - dev_err(ts_data->dev, - "touch point ID(%d) beyond max_touch_number(%d)", - pointid, max_touch_num); - return -EINVAL; - } - - events[i].id = pointid; - events[i].flag = touch_buf[FTS_TOUCH_OFF_E_XH + base] >> - 6; - events[i].x = - ((touch_buf[FTS_TOUCH_OFF_E_XH + base] & 0x0F) - << 8) + - (touch_buf[FTS_TOUCH_OFF_XL + base] & 0xFF); - events[i].y = - ((touch_buf[FTS_TOUCH_OFF_ID_YH + base] & 0x0F) - << 8) + - (touch_buf[FTS_TOUCH_OFF_YL + base] & 0xFF); - events[i].p = touch_buf[FTS_TOUCH_OFF_PRE + base]; - events[i].area = touch_buf[FTS_TOUCH_OFF_AREA + base]; - if (events[i].p <= 0) - events[i].p = 0x3F; - if (events[i].area <= 0) - events[i].area = 0x09; - } - - mutex_lock(&ts_data->report_mutex); - fts_input_report_b(ts_data, events); - mutex_unlock(&ts_data->report_mutex); - break; - case TOUCH_FW_INIT: fts_release_all_finger(); - fts_tp_state_recovery(ts_data); + fts_wait_tp_to_valid(); break; case TOUCH_IGNORE: @@ -750,29 +579,9 @@ static int fts_irq_read_report(struct fts_ts_data *ts_data) static irqreturn_t fts_irq_handler(int irq, void *data) { struct fts_ts_data *ts_data = fts_data; -#if defined(CONFIG_PM) && FTS_PATCH_COMERR_PM - int ret = 0; - if ((ts_data->suspended) && (ts_data->pm_suspend)) { - ret = wait_for_completion_timeout( - &ts_data->pm_completion, - msecs_to_jiffies(FTS_TIMEOUT_COMERR_PM)); - if (!ret) { - dev_err(ts_data->dev, - "Bus don't resume from pm(deep),timeout,skip irq"); - return IRQ_HANDLED; - } - } -#endif ts_data->intr_jiffies = jiffies; fts_irq_read_report(ts_data); - if (ts_data->touch_analysis_support && ts_data->ta_flag) { - ts_data->ta_flag = 0; - if (ts_data->ta_buf && ts_data->ta_size) - memcpy(ts_data->ta_buf, ts_data->touch_buf, - ts_data->ta_size); - wake_up_interruptible(&ts_data->ts_waitqueue); - } return IRQ_HANDLED; } @@ -796,7 +605,6 @@ static int fts_irq_registration(struct fts_ts_data *ts_data) static int fts_input_init(struct fts_ts_data *ts_data) { int ret = 0; - int key_num = 0; struct fts_ts_platform_data *pdata = ts_data->pdata; struct input_dev *input_dev; @@ -823,13 +631,6 @@ static int fts_input_init(struct fts_ts_data *ts_data) __set_bit(BTN_TOUCH, input_dev->keybit); __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); - if (pdata->have_key) { - dev_info(ts_data->dev, "set key capabilities"); - for (key_num = 0; key_num < pdata->key_number; key_num++) - input_set_capability(input_dev, EV_KEY, - pdata->keys[key_num]); - } - input_mt_init_slots(input_dev, pdata->max_touch_number, INPUT_MT_DIRECT); input_set_abs_params(input_dev, ABS_MT_POSITION_X, pdata->x_min, @@ -862,10 +663,6 @@ static int fts_buffer_init(struct fts_ts_data *ts_data) ts_data->touch_size = FTS_TOUCH_DATA_LEN; - ts_data->touch_analysis_support = 0; - ts_data->ta_flag = 0; - ts_data->ta_size = 0; - return 0; } @@ -984,43 +781,6 @@ static int fts_parse_dt(struct device *dev, struct fts_ts_platform_data *pdata) if (ret < 0) dev_err(dev, "Unable to get display-coords"); - /* key */ - pdata->have_key = of_property_read_bool(np, "focaltech,have-key"); - if (pdata->have_key) { - ret = of_property_read_u32(np, "focaltech,key-number", - &pdata->key_number); - if (ret < 0) - dev_err(dev, "Key number undefined!"); - - ret = of_property_read_u32_array( - np, "focaltech,keys", pdata->keys, pdata->key_number); - if (ret < 0) - dev_err(dev, "Keys undefined!"); - else if (pdata->key_number > FTS_MAX_KEYS) - pdata->key_number = FTS_MAX_KEYS; - - ret = of_property_read_u32_array(np, "focaltech,key-x-coords", - pdata->key_x_coords, - pdata->key_number); - if (ret < 0) - dev_err(dev, "Key Y Coords undefined!"); - - ret = of_property_read_u32_array(np, "focaltech,key-y-coords", - pdata->key_y_coords, - pdata->key_number); - if (ret < 0) - dev_err(dev, "Key X Coords undefined!"); - - dev_info(dev, - "VK Number:%d, key:(%d,%d,%d), " - "coords:(%d,%d),(%d,%d),(%d,%d)", - pdata->key_number, pdata->keys[0], pdata->keys[1], - pdata->keys[2], pdata->key_x_coords[0], - pdata->key_y_coords[0], pdata->key_x_coords[1], - pdata->key_y_coords[1], pdata->key_x_coords[2], - pdata->key_y_coords[2]); - } - pdata->irq_gpio = of_get_named_gpio(np, "focaltech,irq-gpio", 0); if (pdata->irq_gpio < 0) dev_err(dev, "Unable to get irq_gpio"); @@ -1032,8 +792,8 @@ static int fts_parse_dt(struct device *dev, struct fts_ts_platform_data *pdata) pdata->max_touch_number = FTS_MAX_POINTS_SUPPORT; } else { if (temp_val < 2) - pdata->max_touch_number = - 2; /* max_touch_number must >= 2 */ + /* max_touch_number must >= 2 */ + pdata->max_touch_number = 2; else if (temp_val > FTS_MAX_POINTS_SUPPORT) pdata->max_touch_number = FTS_MAX_POINTS_SUPPORT; else @@ -1091,8 +851,7 @@ static int fts_ts_resume(struct device *dev) struct fts_ts_data *ts_data = fts_data; struct input_dev *input_dev = ts_data->input_dev; - dev_info(dev, "down flag = %d,blank flag = %d", - ts_data->fod_info.fp_down_report, ts_data->blank_up); + dev_info(dev, "blank flag = %d", ts_data->blank_up); if ((ts_data->fod_info.fp_down_report) && (ts_data->blank_up)) { ts_data->fod_info.fp_down_report = 0; input_sync(input_dev); @@ -1110,39 +869,11 @@ static int fts_ts_resume(struct device *dev) fts_power_resume(ts_data); fts_wait_tp_to_valid(); - fts_ex_mode_recovery(ts_data); ts_data->blank_up = 0; return 0; } -#if defined(CONFIG_PM) && FTS_PATCH_COMERR_PM -static int fts_pm_suspend(struct device *dev) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - dev_info(dev, "system enters into pm_suspend"); - ts_data->pm_suspend = true; - reinit_completion(&ts_data->pm_completion); - return 0; -} - -static int fts_pm_resume(struct device *dev) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - dev_info(dev, "system resumes from pm_suspend"); - ts_data->pm_suspend = false; - complete(&ts_data->pm_completion); - return 0; -} - -static const struct dev_pm_ops fts_dev_pm_ops = { - .suspend = fts_pm_suspend, - .resume = fts_pm_resume, -}; -#endif - static int fts_ts_probe(struct spi_device *spi) { struct fts_ts_data *ts_data = NULL; @@ -1184,10 +915,15 @@ static int fts_ts_probe(struct spi_device *spi) if (ret) return dev_err_probe(&spi->dev, ret, "Failed power on\n"); + /* Get firmware path */ + ret = of_property_read_string(spi->dev.of_node, "firmware-name", &ts_data->firmware_path); + if (ret) + return dev_err_probe(&spi->dev, ret, + "Failed to read firmware-name property\n"); + fts_data = ts_data; ts_data->spi = spi; ts_data->dev = &spi->dev; - ts_data->log_level = 1; ts_data->bus_type = BUS_TYPE_SPI_V2; spi_set_drvdata(spi, ts_data); @@ -1247,14 +983,6 @@ static int fts_ts_probe(struct spi_device *spi) goto err_irq_req; } - ret = fts_create_sysfs(ts_data); - if (ret) - dev_err(&spi->dev, "create sysfs node fail"); - - ret = fts_ex_mode_init(ts_data); - if (ret) - dev_err(&spi->dev, "init glove/cover/charger fail"); - ret = fts_irq_registration(ts_data); if (ret) { dev_err(&spi->dev, "request irq failed"); @@ -1268,11 +996,6 @@ static int fts_ts_probe(struct spi_device *spi) if (ts_data->ts_workqueue) INIT_WORK(&ts_data->resume_work, fts_resume_work); -#if defined(CONFIG_PM) && FTS_PATCH_COMERR_PM - init_completion(&ts_data->pm_completion); - ts_data->pm_suspend = false; -#endif - device_init_wakeup(ts_data->dev, true); dev_dbg(&spi->dev, "FocalTech Touchscreen Controller"); @@ -1297,15 +1020,9 @@ static int fts_ts_probe(struct spi_device *spi) static void fts_ts_remove(struct spi_device *spi) { cancel_work_sync(&fts_data->resume_work); - fts_remove_sysfs(fts_data); - fts_ex_mode_exit(fts_data); - fts_fwupg_exit(fts_data); - free_irq(fts_data->irq, fts_data); - fts_bus_exit(fts_data); - input_unregister_device(fts_data->input_dev); if (fts_data->ts_workqueue) @@ -1318,14 +1035,14 @@ static void fts_ts_remove(struct spi_device *spi) } static const struct spi_device_id fts_ts_id[] = { - { FTS_DRIVER_NAME, 0 }, - {}, + { "ft3680" }, + { }, }; MODULE_DEVICE_TABLE(spi, fts_ts_id); static const struct of_device_id fts_dt_match[] = { - { .compatible = "focaltech,fts_ts", }, - {}, + { .compatible = "focaltech,ft3680", }, + { }, }; MODULE_DEVICE_TABLE(of, fts_dt_match); @@ -1335,9 +1052,6 @@ static struct spi_driver fts_ts_driver = { .driver = { .name = FTS_DRIVER_NAME, .owner = THIS_MODULE, -#if defined(CONFIG_PM) && FTS_PATCH_COMERR_PM - .pm = &fts_dev_pm_ops, -#endif .of_match_table = of_match_ptr(fts_dt_match), }, .id_table = fts_ts_id, diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_ex_fun.c b/drivers/input/touchscreen/focaltech_touch/focaltech_ex_fun.c deleted file mode 100644 index ee86a06f92c803..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_ex_fun.c +++ /dev/null @@ -1,882 +0,0 @@ -/* - * FocalTech TouchScreen driver. - * - * Copyright (c) 2012-2020, Focaltech Ltd. All rights reserved. - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include "focaltech_core.h" - -enum { - RWREG_OP_READ = 0, - RWREG_OP_WRITE = 1, -}; - -static struct rwreg_operation_t { - int type; /* 0: read, 1: write */ - int reg; /* register */ - int len; /* read/write length */ - int val; /* length = 1; read: return value, write: op return */ - int res; /* 0: success, otherwise: fail */ - char *opbuf; /* length >= 1, read return value, write: op return */ -} rw_op; - -static int fts_ta_open(struct inode *inode, struct file *file) -{ - struct fts_ts_data *ts_data = pde_data(inode); - - if (ts_data->touch_analysis_support) { - dev_info(ts_data->dev, "fts_ta open"); - ts_data->ta_buf = kzalloc(FTS_MAX_TOUCH_BUF, GFP_KERNEL); - if (!ts_data->ta_buf) { - dev_err(ts_data->dev, "kzalloc for ta_buf fails"); - return -ENOMEM; - } - } - return 0; -} - -static int fts_ta_release(struct inode *inode, struct file *file) -{ - struct fts_ts_data *ts_data = pde_data(inode); - - if (ts_data->touch_analysis_support) { - dev_info(ts_data->dev, "fts_ta close"); - ts_data->ta_flag = 0; - if (ts_data->ta_buf) { - kfree(ts_data->ta_buf); - ts_data->ta_buf = NULL; - } - } - return 0; -} - -static ssize_t fts_ta_read(struct file *filp, char __user *buff, size_t count, - loff_t *ppos) -{ - int read_num = (int)count; - struct fts_ts_data *ts_data = pde_data(file_inode(filp)); - - if (!ts_data->touch_analysis_support || !ts_data->ta_buf) { - dev_err(ts_data->dev, - "touch_analysis is disabled, or ta_buf is NULL"); - return -EINVAL; - } - - if (!(filp->f_flags & O_NONBLOCK)) { - ts_data->ta_flag = 1; - wait_event_interruptible(ts_data->ts_waitqueue, - !ts_data->ta_flag); - } - - read_num = (ts_data->ta_size < read_num) ? ts_data->ta_size : read_num; - if ((read_num > 0) && (copy_to_user(buff, ts_data->ta_buf, read_num))) { - dev_err(ts_data->dev, "copy to user error"); - return -EFAULT; - } - - return read_num; -} - -static const struct proc_ops fts_procta_fops = { - .proc_open = fts_ta_open, - .proc_release = fts_ta_release, - .proc_read = fts_ta_read, -}; - -/************************************************************************ - * sysfs interface - ***********************************************************************/ -/* fts_hw_reset interface */ -static ssize_t fts_hw_reset_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - ssize_t count = 0; - - mutex_lock(&input_dev->mutex); - fts_request_handle_reset(ts_data, 0); - count = snprintf(buf, PAGE_SIZE, "hw reset executed\n"); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_hw_reset_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - return -EPERM; -} - -/* fts_irq interface */ -static ssize_t fts_irq_show(struct device *dev, struct device_attribute *attr, - char *buf) -{ - ssize_t count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct irq_desc *desc = - irq_data_to_desc(irq_get_irq_data(ts_data->irq)); - - count = snprintf(buf, PAGE_SIZE, "irq_depth:%d\n", desc->depth); - - return count; -} - -static ssize_t fts_irq_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - if (FTS_SYSFS_ECHO_ON(buf)) { - dev_info(ts_data->dev, "enable irq"); - fts_irq_enable(); - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - dev_info(ts_data->dev, "disable irq"); - fts_irq_disable(); - } - mutex_unlock(&input_dev->mutex); - return count; -} - -/* fts_boot_mode interface */ -static ssize_t fts_bootmode_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - if (FTS_SYSFS_ECHO_ON(buf)) { - dev_info(ts_data->dev, "[EX-FUN]set to boot mode"); - ts_data->fw_is_running = false; - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - dev_info(ts_data->dev, "[EX-FUN]set to fw mode"); - ts_data->fw_is_running = true; - } - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_bootmode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - ssize_t count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - if (true == ts_data->fw_is_running) { - count = snprintf(buf, PAGE_SIZE, "tp is in fw mode\n"); - } else { - count = snprintf(buf, PAGE_SIZE, "tp is in boot mode\n"); - } - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* fts_tpfwver interface */ -static ssize_t fts_tpfwver_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int ret = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - ssize_t num_read_chars = 0; - u8 fwver = 0; - - mutex_lock(&input_dev->mutex); - - ret = fts_read_reg(FTS_REG_FW_VER, &fwver); - if ((ret < 0) || (fwver == 0xFF) || (fwver == 0x00)) - num_read_chars = - snprintf(buf, PAGE_SIZE, "get tp fw version fail!\n"); - else - num_read_chars = snprintf(buf, PAGE_SIZE, "%02x\n", fwver); - - mutex_unlock(&input_dev->mutex); - return num_read_chars; -} - -static ssize_t fts_tpfwver_store(struct device *dev, - struct device_attribute *attr, const char *buf, - size_t count) -{ - return -EPERM; -} - -/* fts_rw_reg */ -static ssize_t fts_tprwreg_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count; - int i; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - - if (rw_op.len < 0) { - count = snprintf(buf, PAGE_SIZE, "Invalid cmd line\n"); - } else if (rw_op.len == 1) { - if (RWREG_OP_READ == rw_op.type) { - if (rw_op.res == 0) { - count = snprintf(buf, PAGE_SIZE, - "Read %02X: %02X\n", rw_op.reg, - rw_op.val); - } else { - count = snprintf(buf, PAGE_SIZE, - "Read %02X failed, ret: %d\n", - rw_op.reg, rw_op.res); - } - } else { - if (rw_op.res == 0) { - count = snprintf(buf, PAGE_SIZE, - "Write %02X, %02X success\n", - rw_op.reg, rw_op.val); - } else { - count = snprintf(buf, PAGE_SIZE, - "Write %02X failed, ret: %d\n", - rw_op.reg, rw_op.res); - } - } - } else { - if (RWREG_OP_READ == rw_op.type) { - count = snprintf(buf, PAGE_SIZE, - "Read Reg: [%02X]-[%02X]\n", rw_op.reg, - rw_op.reg + rw_op.len); - count += snprintf(buf + count, PAGE_SIZE, "Result: "); - if (rw_op.res) { - count += snprintf(buf + count, PAGE_SIZE, - "failed, ret: %d\n", - rw_op.res); - } else { - if (rw_op.opbuf) { - for (i = 0; i < rw_op.len; i++) { - count += snprintf( - buf + count, PAGE_SIZE, - "%02X ", - rw_op.opbuf[i]); - } - count += snprintf(buf + count, - PAGE_SIZE, "\n"); - } - } - } else { - ; - count = snprintf(buf, PAGE_SIZE, - "Write Reg: [%02X]-[%02X]\n", - rw_op.reg, rw_op.reg + rw_op.len - 1); - count += snprintf(buf + count, PAGE_SIZE, - "Write Data: "); - if (rw_op.opbuf) { - for (i = 1; i < rw_op.len; i++) { - count += snprintf(buf + count, - PAGE_SIZE, "%02X ", - rw_op.opbuf[i]); - } - count += snprintf(buf + count, PAGE_SIZE, "\n"); - } - if (rw_op.res) { - count += snprintf(buf + count, PAGE_SIZE, - "Result: failed, ret: %d\n", - rw_op.res); - } else { - count += snprintf(buf + count, PAGE_SIZE, - "Result: success\n"); - } - } - /*if (rw_op.opbuf) { - kfree(rw_op.opbuf); - rw_op.opbuf = NULL; - }*/ - } - mutex_unlock(&input_dev->mutex); - - return count; -} - -static int shex_to_int(const char *hex_buf, int size) -{ - int i; - int base = 1; - int value = 0; - char single; - - for (i = size - 1; i >= 0; i--) { - single = hex_buf[i]; - - if ((single >= '0') && (single <= '9')) { - value += (single - '0') * base; - } else if ((single >= 'a') && (single <= 'z')) { - value += (single - 'a' + 10) * base; - } else if ((single >= 'A') && (single <= 'Z')) { - value += (single - 'A' + 10) * base; - } else { - return -EINVAL; - } - - base *= 16; - } - - return value; -} - -static u8 shex_to_u8(const char *hex_buf, int size) -{ - return (u8)shex_to_int(hex_buf, size); -} -/* - * Format buf: - * [0]: '0' write, '1' read(reserved) - * [1-2]: addr, hex - * [3-4]: length, hex - * [5-6]...[n-(n+1)]: data, hex - */ -static int fts_parse_buf(const char *buf, size_t cmd_len) -{ - int length; - int i; - char *tmpbuf; - - rw_op.reg = shex_to_u8(buf + 1, 2); - length = shex_to_int(buf + 3, 2); - - if (buf[0] == '1') { - rw_op.len = length; - rw_op.type = RWREG_OP_READ; - dev_dbg(fts_data->dev, "read %02X, %d bytes", rw_op.reg, - rw_op.len); - } else { - if (cmd_len < (length * 2 + 5)) { - pr_err("data invalided!\n"); - return -EINVAL; - } - dev_dbg(fts_data->dev, "write %02X, %d bytes", rw_op.reg, - length); - - /* first byte is the register addr */ - rw_op.type = RWREG_OP_WRITE; - rw_op.len = length + 1; - } - - if (rw_op.len > 0) { - tmpbuf = (char *)kzalloc(rw_op.len, GFP_KERNEL); - if (!tmpbuf) { - dev_err(fts_data->dev, "allocate memory failed!\n"); - return -ENOMEM; - } - - if (RWREG_OP_WRITE == rw_op.type) { - tmpbuf[0] = rw_op.reg & 0xFF; - dev_dbg(fts_data->dev, "write buffer: "); - for (i = 1; i < rw_op.len; i++) { - tmpbuf[i] = shex_to_u8(buf + 5 + i * 2 - 2, 2); - dev_dbg(fts_data->dev, "buf[%d]: %02X", i, - tmpbuf[i] & 0xFF); - } - } - rw_op.opbuf = tmpbuf; - } - - return rw_op.len; -} - -static ssize_t fts_tprwreg_store(struct device *dev, - struct device_attribute *attr, const char *buf, - size_t count) -{ - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - ssize_t cmd_length = 0; - - mutex_lock(&input_dev->mutex); - cmd_length = count - 1; - - if (rw_op.opbuf) { - kfree(rw_op.opbuf); - rw_op.opbuf = NULL; - } - - dev_dbg(fts_data->dev, "cmd len: %d, buf: %s", (int)cmd_length, buf); - /* compatible old ops */ - if (2 == cmd_length) { - rw_op.type = RWREG_OP_READ; - rw_op.len = 1; - rw_op.reg = shex_to_int(buf, 2); - } else if (4 == cmd_length) { - rw_op.type = RWREG_OP_WRITE; - rw_op.len = 1; - rw_op.reg = shex_to_int(buf, 2); - rw_op.val = shex_to_int(buf + 2, 2); - } else if (cmd_length < 5) { - dev_err(fts_data->dev, "Invalid cmd buffer"); - mutex_unlock(&input_dev->mutex); - return -EINVAL; - } else { - rw_op.len = fts_parse_buf(buf, cmd_length); - } - - if (rw_op.len < 0) { - dev_err(fts_data->dev, "cmd buffer error!"); - - } else { - if (RWREG_OP_READ == rw_op.type) { - if (rw_op.len == 1) { - u8 reg, val; - reg = rw_op.reg & 0xFF; - rw_op.res = fts_read_reg(reg, &val); - rw_op.val = val; - } else { - char reg; - reg = rw_op.reg & 0xFF; - - rw_op.res = fts_read(®, 1, rw_op.opbuf, - rw_op.len); - } - - if (rw_op.res < 0) { - dev_err(fts_data->dev, "Could not read 0x%02x", - rw_op.reg); - } else { - dev_info(fts_data->dev, - "read 0x%02x, %d bytes successful", - rw_op.reg, rw_op.len); - rw_op.res = 0; - } - - } else { - if (rw_op.len == 1) { - u8 reg, val; - reg = rw_op.reg & 0xFF; - val = rw_op.val & 0xFF; - rw_op.res = fts_write_reg(reg, val); - } else { - rw_op.res = fts_write(rw_op.opbuf, rw_op.len); - } - if (rw_op.res < 0) { - dev_err(fts_data->dev, "Could not write 0x%02x", - rw_op.reg); - - } else { - dev_info(fts_data->dev, - "Write 0x%02x, %d bytes successful", - rw_op.val, rw_op.len); - rw_op.res = 0; - } - } - } - - mutex_unlock(&input_dev->mutex); - return count; -} - -/* fts_upgrade_bin interface */ -static ssize_t fts_fwupgradebin_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return -EPERM; -} - -static ssize_t fts_fwupgradebin_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - char fwname[FILE_NAME_LENGTH] = { 0 }; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - if ((count <= 1) || (count >= FILE_NAME_LENGTH - 32)) { - dev_err(fts_data->dev, "fw bin name's length(%d) fail", - (int)count); - return -EINVAL; - } - memset(fwname, 0, sizeof(fwname)); - snprintf(fwname, FILE_NAME_LENGTH, "%s", buf); - fwname[count - 1] = '\0'; - - dev_info(fts_data->dev, "upgrade with bin file through sysfs node"); - mutex_lock(&input_dev->mutex); - fts_upgrade_bin(fwname, 0); - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* fts_force_upgrade interface */ -static ssize_t fts_fwforceupg_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return -EPERM; -} - -static ssize_t fts_fwforceupg_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - char fwname[FILE_NAME_LENGTH]; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - if ((count <= 1) || (count >= FILE_NAME_LENGTH - 32)) { - dev_err(fts_data->dev, "fw bin name's length(%d) fail", - (int)count); - return -EINVAL; - } - memset(fwname, 0, sizeof(fwname)); - snprintf(fwname, FILE_NAME_LENGTH, "%s", buf); - fwname[count - 1] = '\0'; - - dev_info(fts_data->dev, "force upgrade through sysfs node"); - mutex_lock(&input_dev->mutex); - fts_upgrade_bin(fwname, 1); - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* fts_driver_info interface */ -static ssize_t fts_driverinfo_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct fts_ts_platform_data *pdata = ts_data->pdata; - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - count += snprintf(buf + count, PAGE_SIZE, - "Resolution:(%d,%d)~(%d,%d)\n", pdata->x_min, - pdata->y_min, pdata->x_max, pdata->y_max); - - count += snprintf(buf + count, PAGE_SIZE, "Max Touchs:%d\n", - pdata->max_touch_number); - - count += snprintf(buf + count, PAGE_SIZE, "int gpio:%d,irq:%d\n", - pdata->irq_gpio, ts_data->irq); - - count += snprintf(buf + count, PAGE_SIZE, "IC ID:0x%02x%02x\n", - ts_data->ic_info.ids.chip_idh, - ts_data->ic_info.ids.chip_idl); - - if (ts_data->bus_type == BUS_TYPE_I2C) { - count += snprintf(buf + count, PAGE_SIZE, "BUS:%s,addr:0x%x\n", - "I2C", ts_data->client->addr); - } else { - count += snprintf(buf + count, PAGE_SIZE, - "BUS:%s,mode:%d,max_freq:%d\n", "SPI", - ts_data->spi->mode, - ts_data->spi->max_speed_hz); - } - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_driverinfo_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - return -EPERM; -} - -/* fts_dump_reg interface */ -static ssize_t fts_dumpreg_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - u8 val = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - - fts_read_reg(FTS_REG_POWER_MODE, &val); - count += snprintf(buf + count, PAGE_SIZE, "Power Mode:0x%02x\n", val); - - fts_read_reg(FTS_REG_FW_VER, &val); - count += snprintf(buf + count, PAGE_SIZE, "FW Ver:0x%02x\n", val); - - fts_read_reg(FTS_REG_LIC_VER, &val); - count += snprintf(buf + count, PAGE_SIZE, "LCD Initcode Ver:0x%02x\n", - val); - - fts_read_reg(FTS_REG_IDE_PARA_VER_ID, &val); - count += snprintf(buf + count, PAGE_SIZE, "Param Ver:0x%02x\n", val); - - fts_read_reg(FTS_REG_IDE_PARA_STATUS, &val); - count += snprintf(buf + count, PAGE_SIZE, "Param status:0x%02x\n", val); - - fts_read_reg(FTS_REG_VENDOR_ID, &val); - count += snprintf(buf + count, PAGE_SIZE, "Vendor ID:0x%02x\n", val); - - fts_read_reg(FTS_REG_CHARGER_MODE_EN, &val); - count += snprintf(buf + count, PAGE_SIZE, "charge stat:0x%02x\n", val); - - fts_read_reg(FTS_REG_INT_CNT, &val); - count += snprintf(buf + count, PAGE_SIZE, "INT count:0x%02x\n", val); - - fts_read_reg(FTS_REG_FLOW_WORK_CNT, &val); - count += snprintf(buf + count, PAGE_SIZE, "ESD count:0x%02x\n", val); - - fts_read_reg(FTS_REG_EDGE_MODE_EN, &val); - count += snprintf(buf + count, PAGE_SIZE, "edge mode stat:0x%02x\n", - val); - - mutex_unlock(&input_dev->mutex); - return count; -} - -static ssize_t fts_dumpreg_store(struct device *dev, - struct device_attribute *attr, const char *buf, - size_t count) -{ - return -EPERM; -} - -/* fts_dump_reg interface */ -static ssize_t fts_tpbuf_show(struct device *dev, struct device_attribute *attr, - char *buf) -{ - int count = 0; - int i = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - count += snprintf(buf + count, PAGE_SIZE, "touch point buffer:\n"); - for (i = 0; i < FTS_TOUCH_DATA_LEN; i++) { - count += snprintf(buf + count, PAGE_SIZE, "%02x ", - ts_data->touch_buf[i]); - } - count += snprintf(buf + count, PAGE_SIZE, "\n"); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_tpbuf_store(struct device *dev, - struct device_attribute *attr, const char *buf, - size_t count) -{ - return -EPERM; -} - -/* fts_log_level node */ -static ssize_t fts_log_level_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - count += snprintf(buf + count, PAGE_SIZE, "log level:%d\n", - ts_data->log_level); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_log_level_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int value = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - sscanf(buf, "%d", &value); - dev_dbg(fts_data->dev, "log level:%d->%d", ts_data->log_level, value); - ts_data->log_level = value; - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* fts_touch_size node */ -static ssize_t fts_touchsize_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - count += snprintf(buf + count, PAGE_SIZE, "touch size:%d\n", - ts_data->touch_size); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_touchsize_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int value = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - sscanf(buf, "%d", &value); - if ((value > 2) && (value < FTS_MAX_TOUCH_BUF)) { - dev_dbg(fts_data->dev, "touch size:%d->%d", ts_data->touch_size, - value); - ts_data->touch_size = value; - } else { - dev_dbg(fts_data->dev, "touch size:%d invalid", value); - } - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* fts_ta_mode node */ -static ssize_t fts_tamode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - count += snprintf(buf + count, PAGE_SIZE, "touch analysis:%s\n", - ts_data->touch_analysis_support ? "Enable" : - "Disable"); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_coordinate_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - count = snprintf(buf, PAGE_SIZE, "x:%02x\ny:%02x\n", ts_data->xbuf, - ts_data->ybuf); - - return count; -} - -static ssize_t fts_tamode_store(struct device *dev, - struct device_attribute *attr, const char *buf, - size_t count) -{ - int value = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - sscanf(buf, "%d", &value); - ts_data->touch_analysis_support = !!value; - dev_dbg(fts_data->dev, "set touch analysis:%d", - ts_data->touch_analysis_support); - mutex_unlock(&input_dev->mutex); - - return count; -} - -/* get the fw version example:cat fw_version */ -static DEVICE_ATTR(fts_fw_version, S_IRUGO | S_IWUSR, fts_tpfwver_show, - fts_tpfwver_store); - -/* read and write register(s) -* All data type is **HEX** -* Single Byte: -* read: echo 88 > rw_reg ---read register 0x88 -* write: echo 8807 > rw_reg ---write 0x07 into register 0x88 -* Multi-bytes: -* [0:rw-flag][1-2: reg addr, hex][3-4: length, hex][5-6...n-n+1: write data, hex] -* rw-flag: 0, write; 1, read -* read: echo 10005 > rw_reg ---read reg 0x00-0x05 -* write: echo 000050102030405 > rw_reg ---write reg 0x00-0x05 as 01,02,03,04,05 -* Get result: -* cat rw_reg -*/ -static DEVICE_ATTR(fts_rw_reg, S_IRUGO | S_IWUSR, fts_tprwreg_show, - fts_tprwreg_store); -/* upgrade from fw bin file example:echo "*.bin" > fts_upgrade_bin */ -static DEVICE_ATTR(fts_upgrade_bin, S_IRUGO | S_IWUSR, fts_fwupgradebin_show, - fts_fwupgradebin_store); -static DEVICE_ATTR(fts_force_upgrade, S_IRUGO | S_IWUSR, fts_fwforceupg_show, - fts_fwforceupg_store); -static DEVICE_ATTR(fts_driver_info, S_IRUGO | S_IWUSR, fts_driverinfo_show, - fts_driverinfo_store); -static DEVICE_ATTR(fts_dump_reg, S_IRUGO | S_IWUSR, fts_dumpreg_show, - fts_dumpreg_store); -static DEVICE_ATTR(fts_hw_reset, S_IRUGO | S_IWUSR, fts_hw_reset_show, - fts_hw_reset_store); -static DEVICE_ATTR(fts_irq, S_IRUGO | S_IWUSR, fts_irq_show, fts_irq_store); -static DEVICE_ATTR(fts_boot_mode, S_IRUGO | S_IWUSR, fts_bootmode_show, - fts_bootmode_store); -static DEVICE_ATTR(fts_touch_point, S_IRUGO | S_IWUSR, fts_tpbuf_show, - fts_tpbuf_store); -static DEVICE_ATTR(fts_log_level, S_IRUGO | S_IWUSR, fts_log_level_show, - fts_log_level_store); -static DEVICE_ATTR(fts_touch_size, S_IRUGO | S_IWUSR, fts_touchsize_show, - fts_touchsize_store); -static DEVICE_ATTR(fts_ta_mode, S_IRUGO | S_IWUSR, fts_tamode_show, - fts_tamode_store); -static DEVICE_ATTR(fts_parse_coordinate, S_IRUGO, fts_coordinate_show, NULL); - -/* add your attr in here*/ -static struct attribute *fts_attributes[] = { - &dev_attr_fts_fw_version.attr, - &dev_attr_fts_rw_reg.attr, - &dev_attr_fts_dump_reg.attr, - &dev_attr_fts_upgrade_bin.attr, - &dev_attr_fts_force_upgrade.attr, - &dev_attr_fts_driver_info.attr, - &dev_attr_fts_hw_reset.attr, - &dev_attr_fts_irq.attr, - &dev_attr_fts_boot_mode.attr, - &dev_attr_fts_touch_point.attr, - &dev_attr_fts_log_level.attr, - &dev_attr_fts_touch_size.attr, - &dev_attr_fts_ta_mode.attr, - &dev_attr_fts_parse_coordinate.attr, - NULL -}; - -static struct attribute_group fts_attribute_group = { .attrs = fts_attributes }; - -int fts_create_sysfs(struct fts_ts_data *ts_data) -{ - int ret = 0; - - ret = sysfs_create_group(&ts_data->dev->kobj, &fts_attribute_group); - if (ret) { - dev_err(fts_data->dev, "[EX]: sysfs_create_group() failed!!"); - sysfs_remove_group(&ts_data->dev->kobj, &fts_attribute_group); - return -ENOMEM; - } else { - dev_info(fts_data->dev, - "[EX]: sysfs_create_group() succeeded!!"); - } - - return ret; -} - -int fts_remove_sysfs(struct fts_ts_data *ts_data) -{ - sysfs_remove_group(&ts_data->dev->kobj, &fts_attribute_group); - return 0; -} diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_ex_mode.c b/drivers/input/touchscreen/focaltech_touch/focaltech_ex_mode.c deleted file mode 100644 index 77362d6619dcf8..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_ex_mode.c +++ /dev/null @@ -1,338 +0,0 @@ -/* - * FocalTech ftxxxx TouchScreen driver. - * - * Copyright (c) 2012-2020, Focaltech Ltd. All rights reserved. - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include "focaltech_core.h" - -enum _ex_mode { - MODE_GLOVE = 0, - MODE_COVER, - MODE_CHARGER, - MODE_EDGE, -}; - -static int fts_ex_mode_switch(enum _ex_mode mode, u8 value) -{ - int ret = 0; - u8 m_val = 0; - - if (value) - m_val = value; - else - m_val = 0x00; - - switch (mode) { - case MODE_GLOVE: - ret = fts_write_reg(FTS_REG_GLOVE_MODE_EN, m_val); - if (ret < 0) - dev_err(fts_data->dev, "MODE_GLOVE switch to %d fail", - m_val); - break; - - case MODE_EDGE: - ret = fts_write_reg(FTS_REG_EDGE_MODE_EN, m_val); - if (ret < 0) - dev_err(fts_data->dev, "MODE_EDGE swith to %d fail", - m_val); - break; - case MODE_COVER: - ret = fts_write_reg(FTS_REG_COVER_MODE_EN, m_val); - if (ret < 0) - dev_err(fts_data->dev, "MODE_COVER switch to %d fail", - m_val); - break; - case MODE_CHARGER: - ret = fts_write_reg(FTS_REG_CHARGER_MODE_EN, m_val); - if (ret < 0) - dev_err(fts_data->dev, "MODE_CHARGER switch to %d fail", - m_val); - break; - default: - dev_err(fts_data->dev, "mode(%d) unsupport", mode); - ret = -EINVAL; - break; - } - - return ret; -} - -static ssize_t fts_edge_mode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - u8 val = 0; - struct fts_ts_data *ts_data = fts_data; - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - fts_read_reg(FTS_REG_EDGE_MODE_EN, &val); - count = snprintf(buf + count, PAGE_SIZE, "Edge Mode:%s\n", - ts_data->edge_mode ? "On" : "Off"); - count += snprintf(buf + count, PAGE_SIZE, "Edge Reg(0x8C):%d\n", val); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_edge_mode_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int ret = 0; - struct fts_ts_data *ts_data = fts_data; - - if (FTS_SYSFS_ECHO_ON(buf)) { - if (!ts_data->edge_mode) { - dev_dbg(fts_data->dev, "enter edge mode"); - if (buf[0] == '1') /*USB in right*/ { - ret = fts_ex_mode_switch(MODE_EDGE, 1); - if (ret >= 0) { - ts_data->edge_mode = 1; - } - } else if (buf[0] == '2') /*USB in left*/ { - ret = fts_ex_mode_switch(MODE_EDGE, 2); - if (ret >= 0) { - ts_data->edge_mode = 2; - } - } - } - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - if (ts_data->edge_mode) { - dev_dbg(fts_data->dev, "exit edge mode"); - ret = fts_ex_mode_switch(MODE_EDGE, 0); - if (ret >= 0) { - ts_data->edge_mode = DISABLE; - } - } - } - - dev_dbg(fts_data->dev, "edge mode:%d", ts_data->edge_mode); - return count; -} - -static ssize_t fts_glove_mode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - u8 val = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - fts_read_reg(FTS_REG_GLOVE_MODE_EN, &val); - count = snprintf(buf + count, PAGE_SIZE, "Glove Mode:%s\n", - ts_data->glove_mode ? "On" : "Off"); - count += snprintf(buf + count, PAGE_SIZE, "Glove Reg(0xC0):%d\n", val); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_glove_mode_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int ret = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - if (FTS_SYSFS_ECHO_ON(buf)) { - if (!ts_data->glove_mode) { - dev_dbg(fts_data->dev, "enter glove mode"); - ret = fts_ex_mode_switch(MODE_GLOVE, ENABLE); - if (ret >= 0) { - ts_data->glove_mode = ENABLE; - } - } - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - if (ts_data->glove_mode) { - dev_dbg(fts_data->dev, "exit glove mode"); - ret = fts_ex_mode_switch(MODE_GLOVE, DISABLE); - if (ret >= 0) { - ts_data->glove_mode = DISABLE; - } - } - } - - dev_dbg(fts_data->dev, "glove mode:%d", ts_data->glove_mode); - return count; -} - -static ssize_t fts_cover_mode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - u8 val = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - fts_read_reg(FTS_REG_COVER_MODE_EN, &val); - count = snprintf(buf + count, PAGE_SIZE, "Cover Mode:%s\n", - ts_data->cover_mode ? "On" : "Off"); - count += snprintf(buf + count, PAGE_SIZE, "Cover Reg(0xC1):%d\n", val); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_cover_mode_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int ret = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - if (FTS_SYSFS_ECHO_ON(buf)) { - if (!ts_data->cover_mode) { - dev_dbg(fts_data->dev, "enter cover mode"); - ret = fts_ex_mode_switch(MODE_COVER, ENABLE); - if (ret >= 0) { - ts_data->cover_mode = ENABLE; - } - } - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - if (ts_data->cover_mode) { - dev_dbg(fts_data->dev, "exit cover mode"); - ret = fts_ex_mode_switch(MODE_COVER, DISABLE); - if (ret >= 0) { - ts_data->cover_mode = DISABLE; - } - } - } - - dev_dbg(fts_data->dev, "cover mode:%d", ts_data->cover_mode); - return count; -} - -static ssize_t fts_charger_mode_show(struct device *dev, - struct device_attribute *attr, char *buf) -{ - int count = 0; - u8 val = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - struct input_dev *input_dev = ts_data->input_dev; - - mutex_lock(&input_dev->mutex); - fts_read_reg(FTS_REG_CHARGER_MODE_EN, &val); - count = snprintf(buf + count, PAGE_SIZE, "Charger Mode:%s\n", - ts_data->charger_mode ? "On" : "Off"); - count += - snprintf(buf + count, PAGE_SIZE, "Charger Reg(0x8B):%d\n", val); - mutex_unlock(&input_dev->mutex); - - return count; -} - -static ssize_t fts_charger_mode_store(struct device *dev, - struct device_attribute *attr, - const char *buf, size_t count) -{ - int ret = 0; - struct fts_ts_data *ts_data = dev_get_drvdata(dev); - - if (FTS_SYSFS_ECHO_ON(buf)) { - if (!ts_data->charger_mode) { - dev_dbg(fts_data->dev, "enter charger mode"); - ret = fts_ex_mode_switch(MODE_CHARGER, ENABLE); - if (ret >= 0) { - ts_data->charger_mode = ENABLE; - } - } - } else if (FTS_SYSFS_ECHO_OFF(buf)) { - if (ts_data->charger_mode) { - dev_dbg(fts_data->dev, "exit charger mode"); - ret = fts_ex_mode_switch(MODE_CHARGER, DISABLE); - if (ret >= 0) { - ts_data->charger_mode = DISABLE; - } - } - } - - dev_dbg(fts_data->dev, "charger mode:%d", ts_data->glove_mode); - return count; -} - -/* read and write charger mode - * read example: cat fts_glove_mode ---read glove mode - * write example:echo 1 > fts_glove_mode ---write glove mode to 01 - */ -static DEVICE_ATTR(fts_glove_mode, S_IRUGO | S_IWUSR, fts_glove_mode_show, - fts_glove_mode_store); - -static DEVICE_ATTR(fts_cover_mode, S_IRUGO | S_IWUSR, fts_cover_mode_show, - fts_cover_mode_store); - -static DEVICE_ATTR(fts_charger_mode, S_IRUGO | S_IWUSR, fts_charger_mode_show, - fts_charger_mode_store); -static DEVICE_ATTR(fts_edge_mode, S_IRUGO | S_IWUSR, fts_edge_mode_show, - fts_edge_mode_store); - -static struct attribute *fts_touch_mode_attrs[] = { - &dev_attr_fts_glove_mode.attr, - &dev_attr_fts_cover_mode.attr, - &dev_attr_fts_charger_mode.attr, - &dev_attr_fts_edge_mode.attr, - NULL, -}; - -static struct attribute_group fts_touch_mode_group = { - .attrs = fts_touch_mode_attrs, -}; - -int fts_ex_mode_recovery(struct fts_ts_data *ts_data) -{ - if (ts_data->glove_mode) { - fts_ex_mode_switch(MODE_GLOVE, ENABLE); - } - - if (ts_data->cover_mode) { - fts_ex_mode_switch(MODE_COVER, ENABLE); - } - - if (ts_data->charger_mode) { - fts_ex_mode_switch(MODE_CHARGER, ENABLE); - } - - if (ts_data->edge_mode) { - fts_ex_mode_switch(MODE_EDGE, ENABLE); - } - return 0; -} - -int fts_ex_mode_init(struct fts_ts_data *ts_data) -{ - int ret = 0; - - ts_data->glove_mode = DISABLE; - ts_data->cover_mode = DISABLE; - ts_data->charger_mode = DISABLE; - ts_data->edge_mode = DISABLE; - - ret = sysfs_create_group(&ts_data->dev->kobj, &fts_touch_mode_group); - if (ret < 0) { - dev_err(fts_data->dev, "create sysfs(ex_mode) fail"); - sysfs_remove_group(&ts_data->dev->kobj, &fts_touch_mode_group); - return ret; - } else { - dev_dbg(fts_data->dev, "create sysfs(ex_mode) successfully"); - } - - return 0; -} - -int fts_ex_mode_exit(struct fts_ts_data *ts_data) -{ - sysfs_remove_group(&ts_data->dev->kobj, &fts_touch_mode_group); - return 0; -} diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_flash.c b/drivers/input/touchscreen/focaltech_touch/focaltech_flash.c index 643b8e270f7f23..56daf296de8193 100644 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_flash.c +++ b/drivers/input/touchscreen/focaltech_touch/focaltech_flash.c @@ -13,66 +13,204 @@ * GNU General Public License for more details. */ -#include "focaltech_core.h" -#include "focaltech_flash.h" +#include "focaltech.h" + +#define FTS_CMD_RESET 0x07 +#define FTS_ROMBOOT_CMD_SET_PRAM_ADDR 0xAD +#define FTS_ROMBOOT_CMD_SET_PRAM_ADDR_LEN 4 +#define FTS_ROMBOOT_CMD_WRITE 0xAE +#define FTS_ROMBOOT_CMD_START_APP 0x08 +#define FTS_DELAY_PRAMBOOT_START 100 +#define FTS_ROMBOOT_CMD_ECC 0xCC +#define FTS_PRAM_SADDR 0x000000 +#define FTS_DRAM_SADDR 0xD00000 + +#define FTS_CMD_READ_FWCFG 0xA8 + +#define FTS_CMD_READ 0x03 +#define FTS_CMD_READ_DELAY 1 +#define FTS_CMD_READ_LEN 4 +#define FTS_CMD_READ_LEN_SPI 6 +#define FTS_CMD_FLASH_TYPE 0x05 +#define FTS_CMD_FLASH_MODE 0x09 +#define FLASH_MODE_WRITE_FLASH_VALUE 0x0A +#define FLASH_MODE_UPGRADE_VALUE 0x0B +#define FLASH_MODE_LIC_VALUE 0x0C +#define FLASH_MODE_PARAM_VALUE 0x0D +#define FTS_CMD_ERASE_APP 0x61 +#define FTS_REASE_APP_DELAY 1350 +#define FTS_ERASE_SECTOR_DELAY 60 +#define FTS_RETRIES_REASE 50 +#define FTS_RETRIES_DELAY_REASE 400 +#define FTS_CMD_FLASH_STATUS 0x6A +#define FTS_CMD_FLASH_STATUS_LEN 2 +#define FTS_CMD_FLASH_STATUS_NOP 0x0000 +#define FTS_CMD_FLASH_STATUS_ECC_OK 0xF055 +#define FTS_CMD_FLASH_STATUS_ERASE_OK 0xF0AA +#define FTS_CMD_FLASH_STATUS_WRITE_OK 0x1000 +#define FTS_CMD_ECC_INIT 0x64 +#define FTS_CMD_ECC_CAL 0x65 +#define FTS_CMD_ECC_CAL_LEN 7 +#define FTS_RETRIES_ECC_CAL 10 +#define FTS_RETRIES_DELAY_ECC_CAL 50 +#define FTS_CMD_ECC_READ 0x66 +#define FTS_CMD_DATA_LEN 0xB0 +#define FTS_CMD_APP_DATA_LEN_INCELL 0x7A +#define FTS_CMD_DATA_LEN_LEN 4 +#define FTS_CMD_SET_WFLASH_ADDR 0xAB +#define FTS_CMD_SET_RFLASH_ADDR 0xAC +#define FTS_LEN_SET_ADDR 4 +#define FTS_CMD_WRITE 0xBF +#define FTS_RETRIES_WRITE 100 +#define FTS_RETRIES_DELAY_WRITE 1 +#define FTS_CMD_WRITE_LEN 6 +#define FTS_DELAY_READ_ID 20 +#define FTS_DELAY_UPGRADE_RESET 80 +#define PRAMBOOT_MIN_SIZE 0x120 +#define PRAMBOOT_MAX_SIZE (64 * 1024) +#define FTS_FLASH_PACKET_LENGTH 32 /* max=128 */ +#define FTS_MAX_LEN_ECC_CALC 0xFFFE /* must be even */ +#define FTS_MIN_LEN 0x120 +#define FTS_MAX_LEN_FILE (256 * 1024) +#define FTS_MAX_LEN_APP (64 * 1024) +#define FTS_MAX_LEN_SECTOR (4 * 1024) +#define FTS_CONIFG_VENDORID_OFF 0x04 +#define FTS_CONIFG_MODULEID_OFF 0x1E +#define FTS_CONIFG_PROJECTID_OFF 0x20 +#define FTS_APPINFO_OFF 0x100 +#define FTS_APPINFO_APPLEN_OFF 0x00 +#define FTS_APPINFO_APPLEN2_OFF 0x12 +#define FTS_REG_UPGRADE 0xFC +#define FTS_REG_UPGRADE2 0xBC +#define FTS_UPGRADE_AA 0xAA +#define FTS_UPGRADE_55 0x55 +#define FTS_DELAY_UPGRADE_AA 10 +#define FTS_UPGRADE_LOOP 30 +#define FTS_HEADER_LEN 32 +#define FTS_FW_BIN_FILEPATH "/sdcard/" +#define FTS_FW_IDE_SIG "IDE_" +#define FTS_FW_IDE_SIG_LEN 4 +#define MAX_MODULE_VENDOR_NAME_LEN 16 + +#define FTS_ROMBOOT_CMD_ECC_NEW_LEN 7 +#define FTS_ECC_FINISH_TIMEOUT 100 +#define FTS_ROMBOOT_CMD_ECC_FINISH 0xCE +#define FTS_ROMBOOT_CMD_ECC_FINISH_OK_A5 0xA5 +#define FTS_ROMBOOT_CMD_ECC_FINISH_OK_00 0x00 +#define FTS_ROMBOOT_CMD_ECC_READ 0xCD +#define AL2_FCS_COEF ((1 << 15) + (1 << 10) + (1 << 3)) + +#define FTS_APP_INFO_OFFSET 0x100 + +enum FW_STATUS { + FTS_RUN_IN_ERROR, + FTS_RUN_IN_APP, + FTS_RUN_IN_ROM, + FTS_RUN_IN_PRAM, + FTS_RUN_IN_BOOTLOADER, +}; -#define FTS_FW_REQUEST_SUPPORT 0 -/* Example: focaltech_ts_fw_tianma.bin */ -#define FTS_FW_NAME_PREX_WITH_REQUEST "focaltech_ts_fw_" -#define FTS_READ_BOOT_ID_TIMEOUT 3 -#define FTS_FLASH_PACKET_LENGTH_SPI_LOW (4 * 1024 - 4) -#define FTS_FLASH_PACKET_LENGTH_SPI (32 * 1024 - 16) +enum FW_FLASH_MODE { + FLASH_MODE_APP, + FLASH_MODE_LIC, + FLASH_MODE_PARAM, + FLASH_MODE_ALL, +}; -/*extern ssize_t kernel_read(struct file *, void *, size_t , loff_t *);*/ +enum ECC_CHECK_MODE { + ECC_CHECK_MODE_XOR, + ECC_CHECK_MODE_CRC16, +}; -/***************************************************************************** -* Private enumerations, structures and unions using typedef -*****************************************************************************/ +enum UPGRADE_SPEC { + UPGRADE_SPEC_V_1_0 = 0x0100, + UPGRADE_SPEC_V_1_1 = 0x0101, + UPGRADE_SPEC_V_1_2 = 0x0102, +}; -/***************************************************************************** -* Global variable or extern global variabls/functions -*****************************************************************************/ -u8 fw_file[] = { -#include FTS_UPGRADE_FW_FILE +struct upgrade_func { + u16 ctype[FTS_MAX_COMPATIBLE_TYPE]; + u32 fwveroff; + u32 fwcfgoff; + u32 appoff; + u32 licoff; + u32 paramcfgoff; + u32 paramcfgveroff; + u32 paramcfg2off; + int pram_ecc_check_mode; + int fw_ecc_check_mode; + int upgspec_version; + bool new_return_value_from_ic; + bool appoff_handle_in_ic; + bool is_reset_register_BC; + bool read_boot_id_need_reset; + bool hid_supported; + bool pramboot_supported; + u8 *pramboot; + u32 pb_length; + int (*init)(u8 *, u32); + int (*write_pramboot_private)(void); + int (*upgrade)(u8 *, u32); + int (*get_hlic_ver)(u8 *); + int (*lic_upgrade)(u8 *, u32); + int (*param_upgrade)(u8 *, u32); + int (*force_upgrade)(u8 *, u32); }; -u8 fw_file2[] = { -#include FTS_UPGRADE_FW2_FILE +struct upgrade_setting_nf { + u8 rom_idh; + u8 rom_idl; + u16 reserved; + u32 app2_offset; + u32 ecclen_max; + u8 eccok_val; + u8 upgsts_boot; + u8 delay_init; + u8 spi_pe; + u8 length_coefficient; + u8 fd_check; + u8 drwr_support; + u8 ecc_delay; }; -u8 fw_file3[] = { -#include FTS_UPGRADE_FW3_FILE +struct upgrade_module { + int id; + char vendor_name[MAX_MODULE_VENDOR_NAME_LEN]; + u8 *fw_file; + u32 fw_len; }; -struct upgrade_module module_list[] = { - { FTS_MODULE_ID, FTS_MODULE_NAME, fw_file, sizeof(fw_file) }, - { FTS_MODULE2_ID, FTS_MODULE2_NAME, fw_file2, sizeof(fw_file2) }, - { FTS_MODULE3_ID, FTS_MODULE3_NAME, fw_file3, sizeof(fw_file3) }, +struct fts_upgrade { + struct fts_ts_data *ts_data; + struct upgrade_module *module_info; + struct upgrade_func *func; + struct upgrade_setting_nf *setting_nf; + int module_id; + bool fw_from_request; + u8 *fw; + u32 fw_length; + u8 *lic; + u32 lic_length; }; +#define FTS_READ_BOOT_ID_TIMEOUT 3 +#define FTS_FLASH_PACKET_LENGTH_SPI_LOW (4 * 1024 - 4) +#define FTS_FLASH_PACKET_LENGTH_SPI (32 * 1024 - 16) + + struct upgrade_setting_nf upgrade_setting_list[] = { - { 0x87, 0x19, 0, (64 * 1024), (128 * 1024), 0x00, 0x02, 8, 1, 1, 1, 0, - 0 }, - { 0x86, 0x22, 0, (64 * 1024), (128 * 1024), 0x00, 0x02, 8, 1, 1, 0, 0, - 0 }, + { 0x87, 0x19, 0, (64 * 1024), (128 * 1024), 0x00, 0x02, 8, 1, 1, 1, 0, 0 }, + { 0x86, 0x22, 0, (64 * 1024), (128 * 1024), 0x00, 0x02, 8, 1, 1, 0, 0, 0 }, { 0x87, 0x56, 0, (88 * 1024), 32766, 0xA5, 0x01, 8, 0, 2, 0, 1, 0 }, { 0x80, 0x09, 0, (88 * 1024), 32766, 0xA5, 0x01, 8, 0, 2, 0, 1, 0 }, - { 0x86, 0x32, 0, (64 * 1024), (128 * 1024), 0xA5, 0x01, 12, 0, 1, 0, 0, - 0 }, - { 0x86, 0x42, 0, (64 * 1024), (128 * 1024), 0xA5, 0x01, 12, 0, 1, 0, 0, - 0 }, - { 0x87, 0x20, 0, (88 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, - 0 }, - { 0x87, 0x22, 0, (88 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, - 0 }, - { 0x82, 0x01, 0, (96 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 0, - 0 }, - { 0xF0, 0xC6, 0, (84 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, - 0 }, - { 0x56, 0x62, 0, (128 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 4, 0, 0, - 5 }, - { 0x82, 0x05, 0, (120 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 0, - 0 }, + { 0x86, 0x32, 0, (64 * 1024), (128 * 1024), 0xA5, 0x01, 12, 0, 1, 0, 0, 0 }, + { 0x86, 0x42, 0, (64 * 1024), (128 * 1024), 0xA5, 0x01, 12, 0, 1, 0, 0, 0 }, + { 0x87, 0x20, 0, (88 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, 0 }, + { 0x87, 0x22, 0, (88 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, 0 }, + { 0x82, 0x01, 0, (96 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 0, 0 }, + { 0xF0, 0xC6, 0, (84 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 1, 0 }, + { 0x56, 0x62, 0, (128 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 4, 0, 0, 5 }, + { 0x82, 0x05, 0, (120 * 1024), (128 * 1024), 0xA5, 0x01, 8, 0, 2, 0, 0, 0 }, }; struct fts_upgrade *fwupgrade; @@ -101,19 +239,12 @@ static int fts_check_bootid(void) } dev_info(fts_data->dev, "read boot id:0x%02x 0x%02x", id[0], id[1]); - if ((chip_id->rom_idh == id[0]) && (chip_id->rom_idl == id[1])) { + if ((chip_id->rom_idh == id[0]) && (chip_id->rom_idl == id[1])) return 0; - } return -EIO; } -static int fts_fwupg_hardware_reset_to_boot(void) -{ - fts_request_handle_reset(fts_data, 0); - return 0; -} - static int fts_enter_into_boot(void) { int ret = 0; @@ -130,7 +261,7 @@ static int fts_enter_into_boot(void) dev_info(fts_data->dev, "enter into boot environment"); for (i = 0; i < FTS_UPGRADE_LOOP; i++) { /* hardware tp reset to boot */ - fts_fwupg_hardware_reset_to_boot(); + fts_request_handle_reset(fts_data, 0); mdelay(upg->setting_nf->delay_init + i); /* enter into boot & check boot id*/ @@ -250,9 +381,8 @@ static int fts_dpram_write_pe(u32 saddr, const u8 *buf, u32 len, bool wpram) cmd[4] = BYTE_OFF_8(packet_len); cmd[5] = BYTE_OFF_0(packet_len); - for (j = 0; j < packet_len; j++) { + for (j = 0; j < packet_len; j++) cmd[FTS_CMD_WRITE_LEN + j] = buf[offset + j]; - } ret = fts_write(&cmd[0], FTS_CMD_WRITE_LEN + packet_len); if (ret < 0) { @@ -463,9 +593,8 @@ static int fts_ecc_check(const u8 *buf, u32 len, u32 ecc_saddr) return -EINVAL; } - if (upg->setting_nf->ecclen_max) { + if (upg->setting_nf->ecclen_max) packet_size = upg->setting_nf->ecclen_max; - } packet_number = len / packet_size; packet_remainder = len % packet_size; @@ -728,204 +857,11 @@ static int fts_fw_download(const u8 *buf, u32 len, bool need_reset) return ret; } -/* -static int fts_read_file_default(char *file_name, u8 **file_buf) -{ - int ret = 0; - char file_path[FILE_NAME_LENGTH] = { 0 }; - struct file *filp = NULL; - struct inode *inode; - loff_t pos; - loff_t file_len = 0; - - if ((NULL == file_name) || (NULL == file_buf)) { - dev_err(fts_data->dev, "filename/filebuf is NULL"); - return -EINVAL; - } - - snprintf(file_path, FILE_NAME_LENGTH, "%s%s", FTS_FW_BIN_FILEPATH, file_name); - filp = filp_open(file_path, O_RDONLY, 0); - if (IS_ERR(filp)) { - dev_err(fts_data->dev, "open %s file fail", file_path); - return -ENOENT; - } - -#if 1 - inode = filp->f_inode; -#else - inode = filp->f_dentry->d_inode; -#endif - - file_len = inode->i_size; - *file_buf = (u8 *)vmalloc(file_len); - if (NULL == *file_buf) { - dev_err(fts_data->dev, "file buf malloc fail"); - filp_close(filp, NULL); - return -ENOMEM; - } - - pos = 0; - ret = kernel_read(filp,*file_buf,file_len,&pos); - if (ret < 0) - dev_err(fts_data->dev, "read file fail"); - dev_info(fts_data->dev, "file len:%d read len:%d pos:%d", (u32)file_len, ret, (u32)pos); - filp_close(filp, NULL); - - return ret; -} -*/ - -static int fts_read_file_request_firmware(char *file_name, u8 **file_buf) -{ - int ret = 0; - const struct firmware *fw = NULL; - char fwname[FILE_NAME_LENGTH] = { 0 }; - struct fts_upgrade *upg = fwupgrade; - -#if !FTS_FW_REQUEST_SUPPORT - return -EINVAL; -#endif - - snprintf(fwname, FILE_NAME_LENGTH, "%s", file_name); - ret = request_firmware(&fw, fwname, upg->ts_data->dev); - if (0 == ret) { - dev_info(fts_data->dev, "firmware(%s) request successfully", - fwname); - *file_buf = vmalloc(fw->size); - if (NULL == *file_buf) { - dev_err(fts_data->dev, "fw buffer vmalloc fail"); - ret = -ENOMEM; - } else { - memcpy(*file_buf, fw->data, fw->size); - ret = fw->size; - } - } else { - dev_info(fts_data->dev, "firmware(%s) request fail,ret=%d", - fwname, ret); - ret = -EIO; - } - - if (fw != NULL) { - release_firmware(fw); - fw = NULL; - } - - return ret; -} - -static int fts_read_file(char *file_name, u8 **file_buf) -{ - int ret = 0; - - ret = fts_read_file_request_firmware(file_name, file_buf); - if (ret < 0) { - dev_err(fts_data->dev, "get fw file(default) fail"); - return ret; - } - - return ret; -} - -int fts_upgrade_bin(char *fw_name, bool force) -{ - int ret = 0; - u32 fw_file_len = 0; - u8 *fw_file_buf = NULL; - struct fts_upgrade *upg = fwupgrade; - - dev_info(fts_data->dev, "start upgrade with fw bin"); - if (!upg || !upg->ts_data || !upg->setting_nf) { - dev_err(fts_data->dev, "upgrade/ts_data/setting_nf is null"); - return -EINVAL; - } - - if (upg->ts_data->fw_loading) { - dev_info(fts_data->dev, "fw is loading, not download again"); - return -EINVAL; - } - - ret = fts_read_file(fw_name, &fw_file_buf); - if ((ret < 0) || (ret < FTS_MIN_LEN)) { - dev_err(fts_data->dev, "read fw bin file(%s) fail, len:%d", - fw_name, ret); - goto err_bin; - } - - fw_file_len = ret; - dev_info(fts_data->dev, "fw bin file len:%d", fw_file_len); - ret = fts_fw_download(fw_file_buf, fw_file_len, true); - if (ret < 0) { - dev_err(fts_data->dev, "upgrade fw bin failed"); - goto err_bin; - } - - dev_info(fts_data->dev, "upgrade fw bin success"); - -err_bin: - if (fw_file_buf) { - vfree(fw_file_buf); - fw_file_buf = NULL; - } - return ret; -} - -int fts_enter_test_environment(bool test_state) -{ - int ret = 0; - int i = 0; - u8 detach_flag = 0; - u32 app_offset = 0; - struct fts_upgrade *upg = fwupgrade; - - dev_info(fts_data->dev, "fw test download function"); - if (!upg || !upg->ts_data || !upg->setting_nf) { - dev_err(fts_data->dev, "upgrade/ts_data/setting_nf is null"); - return -EINVAL; - } - - if (upg->ts_data->fw_loading) { - dev_info(fts_data->dev, "fw is loading, not download again"); - return -EINVAL; - } - - if (!upg->fw || (upg->fw_length <= upg->setting_nf->app2_offset)) { - dev_info(fts_data->dev, "not multi-app"); - return 0; - } - - if (test_state) { - app_offset = upg->setting_nf->app2_offset; - } - - /*download firmware*/ - upg->ts_data->fw_loading = 1; - for (i = 0; i < 3; i++) { - dev_info(fts_data->dev, "fw download times:%d", i + 1); - ret = fts_fw_write_start(upg->fw + app_offset, upg->fw_length, - true); - if (0 == ret) - break; - } - upg->ts_data->fw_loading = 0; - - if (i >= 3) { - dev_err(fts_data->dev, "fw(addr:%x) download fail", app_offset); - return -EIO; - } - - msleep(50); - ret = fts_read_reg(FTS_REG_FACTORY_MODE_DETACH_FLAG, &detach_flag); - dev_info(fts_data->dev, "regb4:0x%02x", detach_flag); - - return 0; -} - int fts_fw_resume(bool need_reset) { int ret = 0; struct fts_upgrade *upg = fwupgrade; const struct firmware *fw = NULL; - char fwname[FILE_NAME_LENGTH] = { 0 }; bool get_fw_i_flag = true; const u8 *fw_buf = NULL; u32 fwlen = 0; @@ -941,22 +877,17 @@ int fts_fw_resume(bool need_reset) return -EINVAL; } - if (FTS_FW_REQUEST_SUPPORT) { - snprintf(fwname, FILE_NAME_LENGTH, "%s%s.bin", - FTS_FW_NAME_PREX_WITH_REQUEST, - upg->module_info->vendor_name); - ret = request_firmware(&fw, fwname, upg->ts_data->dev); - if (ret == 0) { - dev_info(fts_data->dev, - "firmware(%s) request successfully", fwname); - fw_buf = fw->data; - fwlen = fw->size; - get_fw_i_flag = false; - } else { - dev_err(fts_data->dev, - "%s:firmware(%s) request fail,ret=%d\n", - __func__, fwname, ret); - } + ret = request_firmware(&fw, fts_data->firmware_path, upg->ts_data->dev); + if (ret == 0) { + dev_info(fts_data->dev, + "firmware(%s) request successfully", fts_data->firmware_path); + fw_buf = fw->data; + fwlen = fw->size; + get_fw_i_flag = false; + } else { + dev_err(fts_data->dev, + "%s:firmware(%s) request fail,ret=%d\n", + __func__, fts_data->firmware_path, ret); } if (get_fw_i_flag) { @@ -970,11 +901,9 @@ int fts_fw_resume(bool need_reset) dev_err(fts_data->dev, "fw resume download failed"); } - if (FTS_FW_REQUEST_SUPPORT) { - if (fw != NULL) { - release_firmware(fw); - fw = NULL; - } + if (fw != NULL) { + release_firmware(fw); + fw = NULL; } return ret; @@ -1030,58 +959,22 @@ int fts_fw_recovery(void) ret = fts_read_reg(FTS_REG_CHIP_ID, &chip_id); dev_info(fts_data->dev, "read chip id:0x%02x", chip_id); - fts_tp_state_recovery(upg->ts_data); + fts_wait_tp_to_valid(); dev_info(fts_data->dev, "boot recovery pass"); return ret; } -static int fts_fwupg_get_module_info(struct fts_upgrade *upg) -{ - int i = 0; - struct upgrade_module *info = &module_list[0]; - - if (!upg || !upg->ts_data) { - dev_err(fts_data->dev, "upg/ts_data is null"); - return -EINVAL; - } - - if (FTS_GET_MODULE_NUM > 1) { - dev_info(fts_data->dev, "module id:%04x", upg->module_id); - for (i = 0; i < FTS_GET_MODULE_NUM; i++) { - info = &module_list[i]; - if (upg->module_id == info->id) { - dev_info( - fts_data->dev, - "module id match, get fw file successfully"); - break; - } - } - if (i >= FTS_GET_MODULE_NUM) { - dev_err(fts_data->dev, - "no module id match, don't get file"); - return -ENODATA; - } - } - - upg->module_info = info; - return 0; -} - static int fts_get_fw_file_via_request_firmware(struct fts_upgrade *upg) { int ret = 0; const struct firmware *fw = NULL; u8 *tmpbuf = NULL; - char fwname[FILE_NAME_LENGTH] = { 0 }; - - snprintf(fwname, FILE_NAME_LENGTH, "%s%s.bin", - FTS_FW_NAME_PREX_WITH_REQUEST, upg->module_info->vendor_name); - ret = request_firmware(&fw, fwname, upg->ts_data->dev); + ret = request_firmware(&fw, fts_data->firmware_path, upg->ts_data->dev); if (0 == ret) { dev_info(fts_data->dev, "firmware(%s) request successfully", - fwname); + fts_data->firmware_path); tmpbuf = vmalloc(fw->size); if (NULL == tmpbuf) { dev_err(fts_data->dev, "fw buffer vmalloc fail"); @@ -1094,7 +987,7 @@ static int fts_get_fw_file_via_request_firmware(struct fts_upgrade *upg) } } else { dev_info(fts_data->dev, "firmware(%s) request fail,ret=%d", - fwname, ret); + fts_data->firmware_path, ret); } if (fw != NULL) { @@ -1105,32 +998,6 @@ static int fts_get_fw_file_via_request_firmware(struct fts_upgrade *upg) return ret; } -static int fts_get_fw_file_via_i(struct fts_upgrade *upg) -{ - upg->fw = upg->module_info->fw_file; - upg->fw_length = upg->module_info->fw_len; - upg->fw_from_request = 0; - - return 0; -} - -/***************************************************************************** - * Name: fts_fwupg_get_fw_file - * Brief: get fw image/file, - * If support muitl modules, please set FTS_GET_MODULE_NUM, and FTS_- - * MODULE_ID/FTS_MODULE_NAME; - * If get fw via .i file, please set FTS_FW_REQUEST_SUPPORT=0, and F- - * TS_MODULE_ID; will use module id to distingwish different modules; - * If get fw via reques_firmware(), please set FTS_FW_REQUEST_SUPPORT - * =1, and FTS_MODULE_NAME; fw file name will be composed of "focalt- - * ech_ts_fw_" & FTS_VENDOR_NAME; - * - * If have flash, module_id=vendor_id, If non-flash,module_id need - * transfer from LCD driver(gpio or lcm_id or ...); - * Input: - * Output: - * Return: return 0 if success, otherwise return error code - *****************************************************************************/ static int fts_fwupg_get_fw_file(struct fts_upgrade *upg) { int ret = 0; @@ -1142,25 +1009,11 @@ static int fts_fwupg_get_fw_file(struct fts_upgrade *upg) return -EINVAL; } - ret = fts_fwupg_get_module_info(upg); - if ((ret < 0) || (!upg->module_info)) { - dev_err(fts_data->dev, "get module info fail"); - return ret; - } - - if (FTS_FW_REQUEST_SUPPORT) { - msleep(500); - ret = fts_get_fw_file_via_request_firmware(upg); - if (ret != 0) { - get_fw_i_flag = true; - } - } else { + /* 500 */ + msleep(10000); + ret = fts_get_fw_file_via_request_firmware(upg); + if (ret != 0) get_fw_i_flag = true; - } - - if (get_fw_i_flag) { - ret = fts_get_fw_file_via_i(upg); - } dev_info(fts_data->dev, "upgrade fw file len:%d", upg->fw_length); if (upg->fw_length < FTS_MIN_LEN) { @@ -1177,12 +1030,6 @@ static void fts_fwupg_work(struct work_struct *work) u8 chip_id = 0; struct fts_upgrade *upg = fwupgrade; -#if !FTS_AUTO_UPGRADE_EN - dev_info(fts_data->dev, - "FTS_AUTO_UPGRADE_EN is disabled, not upgrade when power on"); - return; -#endif - dev_info(fts_data->dev, "fw upgrade work function"); if (!upg || !upg->ts_data) { dev_err(fts_data->dev, "upg/ts_data is null"); @@ -1238,9 +1085,9 @@ int fts_fwupg_init(struct fts_ts_data *ts_data) return -ENOMEM; } - if (1 == setting_count) { + if (1 == setting_count) fwupgrade->setting_nf = setting; - } else { + else { for (i = 0; i < setting_count; i++) { setting = &upgrade_setting_list[i]; if ((setting->rom_idh == diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_flash.h b/drivers/input/touchscreen/focaltech_touch/focaltech_flash.h deleted file mode 100644 index 8260e398b56023..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_flash.h +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Copyright (c) 2012-2020, Focaltech Systems (R) All Rights Reserved. - */ - -#ifndef __LINUX_FOCALTECH_FLASH_H__ -#define __LINUX_FOCALTECH_FLASH_H__ - -#include "focaltech_core.h" - -#define FTS_CMD_RESET 0x07 -#define FTS_ROMBOOT_CMD_SET_PRAM_ADDR 0xAD -#define FTS_ROMBOOT_CMD_SET_PRAM_ADDR_LEN 4 -#define FTS_ROMBOOT_CMD_WRITE 0xAE -#define FTS_ROMBOOT_CMD_START_APP 0x08 -#define FTS_DELAY_PRAMBOOT_START 100 -#define FTS_ROMBOOT_CMD_ECC 0xCC -#define FTS_PRAM_SADDR 0x000000 -#define FTS_DRAM_SADDR 0xD00000 - -#define FTS_CMD_READ_FWCFG 0xA8 - -#define FTS_CMD_READ 0x03 -#define FTS_CMD_READ_DELAY 1 -#define FTS_CMD_READ_LEN 4 -#define FTS_CMD_READ_LEN_SPI 6 -#define FTS_CMD_FLASH_TYPE 0x05 -#define FTS_CMD_FLASH_MODE 0x09 -#define FLASH_MODE_WRITE_FLASH_VALUE 0x0A -#define FLASH_MODE_UPGRADE_VALUE 0x0B -#define FLASH_MODE_LIC_VALUE 0x0C -#define FLASH_MODE_PARAM_VALUE 0x0D -#define FTS_CMD_ERASE_APP 0x61 -#define FTS_REASE_APP_DELAY 1350 -#define FTS_ERASE_SECTOR_DELAY 60 -#define FTS_RETRIES_REASE 50 -#define FTS_RETRIES_DELAY_REASE 400 -#define FTS_CMD_FLASH_STATUS 0x6A -#define FTS_CMD_FLASH_STATUS_LEN 2 -#define FTS_CMD_FLASH_STATUS_NOP 0x0000 -#define FTS_CMD_FLASH_STATUS_ECC_OK 0xF055 -#define FTS_CMD_FLASH_STATUS_ERASE_OK 0xF0AA -#define FTS_CMD_FLASH_STATUS_WRITE_OK 0x1000 -#define FTS_CMD_ECC_INIT 0x64 -#define FTS_CMD_ECC_CAL 0x65 -#define FTS_CMD_ECC_CAL_LEN 7 -#define FTS_RETRIES_ECC_CAL 10 -#define FTS_RETRIES_DELAY_ECC_CAL 50 -#define FTS_CMD_ECC_READ 0x66 -#define FTS_CMD_DATA_LEN 0xB0 -#define FTS_CMD_APP_DATA_LEN_INCELL 0x7A -#define FTS_CMD_DATA_LEN_LEN 4 -#define FTS_CMD_SET_WFLASH_ADDR 0xAB -#define FTS_CMD_SET_RFLASH_ADDR 0xAC -#define FTS_LEN_SET_ADDR 4 -#define FTS_CMD_WRITE 0xBF -#define FTS_RETRIES_WRITE 100 -#define FTS_RETRIES_DELAY_WRITE 1 -#define FTS_CMD_WRITE_LEN 6 -#define FTS_DELAY_READ_ID 20 -#define FTS_DELAY_UPGRADE_RESET 80 -#define PRAMBOOT_MIN_SIZE 0x120 -#define PRAMBOOT_MAX_SIZE (64 * 1024) -#define FTS_FLASH_PACKET_LENGTH 32 /* max=128 */ -#define FTS_MAX_LEN_ECC_CALC 0xFFFE /* must be even */ -#define FTS_MIN_LEN 0x120 -#define FTS_MAX_LEN_FILE (256 * 1024) -#define FTS_MAX_LEN_APP (64 * 1024) -#define FTS_MAX_LEN_SECTOR (4 * 1024) -#define FTS_CONIFG_VENDORID_OFF 0x04 -#define FTS_CONIFG_MODULEID_OFF 0x1E -#define FTS_CONIFG_PROJECTID_OFF 0x20 -#define FTS_APPINFO_OFF 0x100 -#define FTS_APPINFO_APPLEN_OFF 0x00 -#define FTS_APPINFO_APPLEN2_OFF 0x12 -#define FTS_REG_UPGRADE 0xFC -#define FTS_REG_UPGRADE2 0xBC -#define FTS_UPGRADE_AA 0xAA -#define FTS_UPGRADE_55 0x55 -#define FTS_DELAY_UPGRADE_AA 10 -#define FTS_UPGRADE_LOOP 30 -#define FTS_HEADER_LEN 32 -#define FTS_FW_BIN_FILEPATH "/sdcard/" -#define FTS_FW_IDE_SIG "IDE_" -#define FTS_FW_IDE_SIG_LEN 4 -#define MAX_MODULE_VENDOR_NAME_LEN 16 - -#define FTS_ROMBOOT_CMD_ECC_NEW_LEN 7 -#define FTS_ECC_FINISH_TIMEOUT 100 -#define FTS_ROMBOOT_CMD_ECC_FINISH 0xCE -#define FTS_ROMBOOT_CMD_ECC_FINISH_OK_A5 0xA5 -#define FTS_ROMBOOT_CMD_ECC_FINISH_OK_00 0x00 -#define FTS_ROMBOOT_CMD_ECC_READ 0xCD -#define AL2_FCS_COEF ((1 << 15) + (1 << 10) + (1 << 3)) - -#define FTS_APP_INFO_OFFSET 0x100 - -enum FW_STATUS { - FTS_RUN_IN_ERROR, - FTS_RUN_IN_APP, - FTS_RUN_IN_ROM, - FTS_RUN_IN_PRAM, - FTS_RUN_IN_BOOTLOADER, -}; - -enum FW_FLASH_MODE { - FLASH_MODE_APP, - FLASH_MODE_LIC, - FLASH_MODE_PARAM, - FLASH_MODE_ALL, -}; - -enum ECC_CHECK_MODE { - ECC_CHECK_MODE_XOR, - ECC_CHECK_MODE_CRC16, -}; - -enum UPGRADE_SPEC { - UPGRADE_SPEC_V_1_0 = 0x0100, - UPGRADE_SPEC_V_1_1 = 0x0101, - UPGRADE_SPEC_V_1_2 = 0x0102, -}; - -/***************************************************************************** -* Private enumerations, structures and unions using typedef -*****************************************************************************/ -/* IC info */ -struct upgrade_func { - u16 ctype[FTS_MAX_COMPATIBLE_TYPE]; - u32 fwveroff; - u32 fwcfgoff; - u32 appoff; - u32 licoff; - u32 paramcfgoff; - u32 paramcfgveroff; - u32 paramcfg2off; - int pram_ecc_check_mode; - int fw_ecc_check_mode; - int upgspec_version; - bool new_return_value_from_ic; - bool appoff_handle_in_ic; - bool is_reset_register_BC; - bool read_boot_id_need_reset; - bool hid_supported; - bool pramboot_supported; - u8 *pramboot; - u32 pb_length; - int (*init)(u8 *, u32); - int (*write_pramboot_private)(void); - int (*upgrade)(u8 *, u32); - int (*get_hlic_ver)(u8 *); - int (*lic_upgrade)(u8 *, u32); - int (*param_upgrade)(u8 *, u32); - int (*force_upgrade)(u8 *, u32); -}; - -struct upgrade_setting_nf { - u8 rom_idh; - u8 rom_idl; - u16 reserved; - u32 app2_offset; - u32 ecclen_max; - u8 eccok_val; - u8 upgsts_boot; - u8 delay_init; - u8 spi_pe; - u8 length_coefficient; - u8 fd_check; - u8 drwr_support; - u8 ecc_delay; -}; - -struct upgrade_module { - int id; - char vendor_name[MAX_MODULE_VENDOR_NAME_LEN]; - u8 *fw_file; - u32 fw_len; -}; - -struct fts_upgrade { - struct fts_ts_data *ts_data; - struct upgrade_module *module_info; - struct upgrade_func *func; - struct upgrade_setting_nf *setting_nf; - int module_id; - bool fw_from_request; - u8 *fw; - u32 fw_length; - u8 *lic; - u32 lic_length; -}; - -#endif diff --git a/drivers/input/touchscreen/focaltech_touch/focaltech_spi.c b/drivers/input/touchscreen/focaltech_touch/focaltech_spi.c index c9cc1f1a4d202f..ee889734111d25 100644 --- a/drivers/input/touchscreen/focaltech_touch/focaltech_spi.c +++ b/drivers/input/touchscreen/focaltech_touch/focaltech_spi.c @@ -1,5 +1,4 @@ /* - * * FocalTech TouchScreen driver. * * Copyright (c) 2012-2020, FocalTech Systems, Ltd., all rights reserved. @@ -12,10 +11,10 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * */ -#include "focaltech_core.h" +#include +#include "focaltech.h" #define SPI_RETRY_NUMBER 3 #define CS_HIGH_DELAY 150 /* unit: us */ @@ -166,9 +165,9 @@ int fts_write(u8 *writebuf, u32 writelen) for (i = 0; i < SPI_RETRY_NUMBER; i++) { ret = fts_spi_transfer(txbuf, rxbuf, txlen); - if ((0 == ret) && ((rxbuf[3] & 0xA0) == 0)) { + if ((0 == ret) && ((rxbuf[3] & 0xA0) == 0)) break; - } else { + else { dev_dbg(fts_data->dev, "data write(addr:%x),status:%x,retry:%d,ret:%d", writebuf[0], rxbuf[3], i, ret); @@ -254,9 +253,8 @@ int fts_read(u8 *cmd, u32 cmdlen, u8 *data, u32 datalen) txbuf[txlen++] = datalen & 0xFF; dp = txlen + SPI_DUMMY_BYTE; txlen = dp + datalen; - if (ctrl & DATA_CRC_EN) { + if (ctrl & DATA_CRC_EN) txlen = txlen + 2; - } for (i = 0; i < SPI_RETRY_NUMBER; i++) { ret = fts_spi_transfer(txbuf, rxbuf, txlen); diff --git a/drivers/input/touchscreen/focaltech_touch/include/firmware/FT3680_WXN_M146_V27_D01_20220706_app.i b/drivers/input/touchscreen/focaltech_touch/include/firmware/FT3680_WXN_M146_V27_D01_20220706_app.i deleted file mode 100755 index 18e5142c548ed7..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch/include/firmware/FT3680_WXN_M146_V27_D01_20220706_app.i +++ /dev/null @@ -1,7456 +0,0 @@ -0x0, 0x0, 0x0, 0x60,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c,0x0, 0x0, 0x1, 0x4c, -0xe0,0x60,0x3c,0x0, 0xe1,0xf0,0xcc,0x2, 0xe0,0x60,0x3c,0x10,0xea,0x0, 0xc8,0x4, -0xe1,0xbf,0xc8,0x7c,0xfa,0x0, 0xcf,0x84,0xf0,0x2, 0xcf,0xb8,0xe0,0x0, 0x14,0x0, -0xe0,0x60,0x3c,0x17,0xea,0x0, 0xcc,0x4, 0xe0,0x0, 0xcc,0x0, 0xea,0x0, 0xcc,0x81, -0xe1,0x8a,0xcc,0xac,0x3c,0x79,0x1, 0x7, 0xea,0x0, 0xcd,0x4, 0xe0,0x19,0xcd,0x44, -0x3d,0x28,0xd6,0xd9,0xe0,0x2, 0x14,0x20,0x3c,0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x74,0x7d,0x8b,0x82,0xeb,0xd8,0x14,0x27,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27,0xd8, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0xea,0x0, 0xcc,0x4, 0xe0,0x20,0xcc,0x0, 0x14,0x80,0xea,0x0, 0xcd,0x4, 0xe1,0x9d, -0xcd,0x34,0x3d,0x28,0xd6,0xc8,0xea,0x0, 0xcc,0x0, 0xe0,0x0, 0xcc,0x0, 0x24,0x2, -0x3c,0x1, 0x14,0x0, 0x14,0x80,0xe0,0x3, 0xd3,0x8, 0x3a,0x80,0x3a,0x80,0x8, 0xb7, -0xc0,0x5c,0x39,0xe8,0x39,0x69,0xd0,0x4c,0xe0,0x2, 0x1f,0xc8,0x3b,0x68,0xa2,0xf, -0x3a,0xe9,0xe3,0xff,0xca,0x7f,0x1, 0x32,0x3d,0x63,0x3d,0xe2,0x3c,0x63,0x3c,0xe2, -0xd4,0x1c,0x3b,0xe8,0x2c,0x2b,0x15,0x0, 0x15,0x80,0x3c,0x63,0x3c,0xe2,0xd3,0xf4, -0xe2,0x0, 0xcc,0x0, 0x3, 0x23,0x17,0x81,0x7f,0x81,0xeb,0x85,0x7f,0xa4,0xe9,0xff, -0xc7,0xfe,0x79,0x83,0x79,0x4, 0x79,0x85,0x79,0x6, 0x7b,0x89,0x7f,0x82,0x2a,0x1a, -0x3f,0xe0,0xc7,0x9c,0x16,0x0, 0x16,0x80,0xe0,0xf, 0xe, 0x1d,0x3c,0x60,0xc4,0x4, -0xd0,0xdb,0x24,0x1a,0xe2,0x0, 0x79,0x24,0xe1,0xc1,0xa7,0x82,0x27,0x85,0xd6,0x46, -0xe0,0x1, 0xa7,0x82,0xbf,0x88,0x63,0x7, 0x62,0x88,0x3c,0x66,0x3c,0xe5,0xc0,0x24, -0xb, 0xe1,0x15,0x0, 0x15,0x80,0x3c,0x6a,0x3c,0xeb,0xd3,0x2b,0xe2,0x0, 0xca,0x2, -0x7c,0x7, 0x7c,0x88,0x1, 0xe4,0xd6,0x32,0x17,0xa1,0xbf,0x88,0x0, 0xe4,0x8, 0xb3, -0xea,0xff,0xce,0xf0,0x3e,0xd8,0xea,0xff,0xcf,0xf0,0x3e,0xff,0x39,0xe9,0x39,0x68, -0x1, 0x8e,0x3d,0x68,0x3d,0xe9,0xd1,0xf7,0x3d,0x68,0x3d,0xe9,0x3c,0x62,0x3c,0xe3, -0xd1,0xb6,0x3f,0x68,0x39,0xe9,0x3c,0x6e,0x3c,0xe3,0x9, 0xe1,0xe2,0x0, 0xcc,0x0, -0x3d,0xe9,0x2, 0x12,0xe0,0x5, 0x1f,0xd3,0x3f,0x68,0x3f,0xd8,0x3f,0xc9,0x27,0xf4, -0x2c,0x5, 0x3f,0xe8,0x17,0x0, 0xe0,0x0, 0x0, 0xfd,0x3d,0x68,0xd1,0xbc,0x3d,0x68, -0x3d,0xe9,0xd2,0xf7,0x0, 0xe7,0xe4,0xf, 0x34,0x4, 0x27,0xf5,0xe0,0x5, 0x1f,0x54, -0xe1,0xf8,0xc7,0x81,0x39,0x5e,0xe6,0xff,0xcf,0x7f,0xe8,0x0, 0xc9,0x10,0x27,0x6, -0xe4,0xe, 0x35,0xcf,0x31,0x21,0x39,0x1e,0x35,0xa1,0xe0,0x8, 0x37,0x81,0x31,0x21, -0xe4,0xf, 0x35,0xcf,0x17,0x0, 0x39,0x1f,0x35,0xa1,0x17,0x96,0x3e,0xee,0xea,0x0, -0xce,0x20,0xe0,0xa, 0x3e,0x9c,0x3d,0x72,0x2, 0x5, 0xe0,0xd, 0x3d,0x1c,0x39,0x2a, -0x3f,0x1c,0xe4,0xa, 0x35,0xcf,0x31,0x21,0xc7,0xff,0x39,0x1a,0x35,0xa1,0x36,0x41, -0x2f,0xf1,0x14,0xa0,0x38,0xef,0xeb,0x0, 0xce,0x0, 0x39,0x7d,0xe0,0xa, 0x3e,0x11, -0x2, 0x7, 0xe0,0x23,0x39,0xd, 0x21,0x97,0xe1,0x23,0x3d,0xaa,0x21,0x94,0xe2,0x0, -0xcd,0x0, 0xe0,0x1, 0x3d,0x1c,0xe0,0x0, 0x3, 0x49,0xe2,0x0, 0xc8,0x80,0xe0,0x0, -0x4, 0x45,0x39,0xed,0xc1,0x81,0x3d,0x7b,0x39,0x2d,0x5, 0x82,0xc1,0x7f,0x3d,0xaa, -0x3f,0x9c,0x3e,0xe3,0xe4,0xa, 0x35,0xcf,0x31,0x21,0xc4,0xff,0x39,0x1a,0x35,0xa1, -0x36,0x41,0x2c,0xdc,0x39,0x4b,0x21,0x6, 0xe3,0xff,0xcf,0xff,0x1, 0xb1,0xc7,0x1, -0x3f,0xe9,0xe0,0xd, 0x37,0x1, 0xea,0x7f,0xce,0x60,0xe6,0xff,0xcf,0x7e,0x3e,0x9c, -0x37,0xc1,0x27,0x3, 0xe9,0x0, 0xcf,0x80,0xe4,0xc, 0x34,0x24,0xe0,0xe, 0x3e,0x1d, -0x39,0xef,0xe7,0xfe,0x0, 0xfa,0xe0,0x2, 0x35,0xcb,0xc7,0x6b,0xe4,0xb, 0x35,0xa5, -0x21,0x7b,0xea,0x0, 0xce,0x90,0x3e,0xd2,0x26,0x8d,0x3e,0x6f,0xe0,0x41,0x3e,0xcf, -0xe0,0xd, 0x35,0xdd,0xc6,0x7f,0x35,0xbf,0x39,0x4d,0xe0,0xf, 0x3f,0x2c,0xe7,0xfe, -0x0, 0xff,0x31,0x21,0xc7,0x81,0x0, 0xee,0x39,0xed,0xe7,0xff,0x0, 0xbe,0xc7,0x81, -0x16,0xfe,0x3f,0xdd,0x0, 0xcf,0x14,0x0, 0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x38, -0xf8,0x0, 0xd, 0x3d,0xa7,0x88,0x39,0xe8,0xe2,0x0, 0xcf,0x81,0x5, 0x95,0xa7,0x9, -0x3b,0x69,0xe2,0x0, 0xcf,0x1, 0xe0,0x1, 0x5, 0xf8,0xe2,0x0, 0xcf,0x84,0x1, 0x92, -0xe2,0x0, 0xcf,0x4, 0x1, 0x89,0xa7,0x99,0xa7,0x18,0x3f,0x7f,0xe0,0x4, 0x1f,0x86, -0xe0,0x6f,0x39,0x28,0x39,0xef,0x3c,0x63,0xf8,0x0, 0xe, 0xaa,0xf8,0x0, 0xc, 0x28, -0xb, 0xe1,0xe2,0x0, 0xcf,0x4, 0xe0,0x1, 0x1, 0x60,0xe2,0x0, 0xcf,0x2, 0x39,0x6a, -0x1, 0x8e,0xe2,0x0, 0xcf,0x82,0x1, 0xf0,0x3c,0xe8,0x15,0x14,0x3c,0x62,0xd5,0x43, -0xa7,0x93,0xa7,0x16,0x3f,0xde,0xbf,0x92,0x39,0xe2,0x0, 0xe6,0xe2,0x0, 0xcf,0x82, -0xe0,0x1, 0x1, 0x4b,0x3f,0x68,0xc7,0xc, 0xa3,0xa8,0xa7,0xa9,0xf8,0xe, 0xd, 0xb, -0x3f,0x69,0xc7,0xc, 0xe0,0xe, 0xa, 0x5, 0xe0,0xe, 0x3b,0xaf,0xf0,0x41,0x3c,0x2e, -0xf2,0x0, 0xcc,0x3f,0xe0,0x0, 0x2, 0x5b,0xe2,0x0, 0xcf,0x0, 0x5, 0x37,0xe8,0x40, -0x3d,0x68,0x3c,0x64,0x3c,0xe5,0xd3,0x82,0xf0,0x40,0x3e,0x68,0xf0,0x40,0x3e,0xe9, -0xe8,0x40,0x3d,0x68,0x14,0x7f,0x14,0xff,0xd3,0x90,0xe3,0xe, 0x3a,0xd9,0xe3,0xf, -0x3a,0x58,0x3f,0xce,0x17,0x0, 0xe1,0x2d,0x3f,0x8e,0xe8,0x40,0x3a,0x6c,0xf0,0x5, -0x3e,0xcd,0xa7,0x93,0xa7,0x16,0x3f,0xfe,0xe0,0x1, 0x1, 0xc, 0xe0,0x0, 0x27,0xc4, -0xe8,0x5, 0x3a,0xab,0xe9,0x24,0x3a,0x7a,0xe2,0x0, 0xca,0x0, 0xe0,0x0, 0x4, 0x42, -0x17,0x80,0xbf,0x92,0x3f,0xe2,0xbb,0xa2,0xc7,0x8c,0xe0,0xf, 0xa, 0x15,0x3d,0xe2, -0xc5,0x8c,0xe0,0x5, 0x1d,0x59,0xe0,0x0, 0x0, 0xcc,0x27,0x64,0xe8,0x40,0x3d,0x68, -0xe8,0x40,0x3c,0x6a,0xe8,0x40,0x3c,0xeb,0xd3,0x49,0xf0,0x40,0x3e,0x68,0xf0,0x40, -0x3e,0xe9,0xe8,0x40,0x3d,0x68,0x14,0x7f,0x14,0xff,0xd3,0x57,0xf3,0xe, 0x3d,0xd9, -0xf3,0xf, 0x3d,0x58,0x3f,0xce,0x17,0x0, 0xe1,0x2d,0x3f,0x8e,0xe8,0x7, 0x3b,0x98, -0xf8,0x40,0x3d,0x6c,0xf0,0x1b,0x3e,0xcd,0x0, 0xc5,0x3b,0xff,0x2, 0x8, 0x3b,0xef, -0xf0,0x0, 0x15,0x0, 0xf0,0x0, 0x15,0x80,0xe7,0xff,0x0, 0xbd,0x12,0x0, 0x12,0x80, -0xe7,0xff,0x0, 0xb9,0xf0,0x5, 0x3d,0xa5,0xf1,0x24,0x3d,0x74,0xe7,0xff,0x0, 0xbe, -0x17,0x81,0x3e,0xe2,0xc6,0x8c,0xbf,0x92,0x17,0x80,0xe0,0x5, 0x3f,0xa5,0x17,0x0, -0xbb,0xa2,0xe1,0x24,0x3f,0x74,0xe0,0xd, 0xa, 0x15,0xe7,0xff,0x0, 0xba,0x3f,0x9f, -0xe0,0x2e,0x3f,0x7e,0xe0,0xb, 0xf, 0x1f,0xa7,0xa2,0xc7,0xff,0xbf,0xa2,0x14,0xff, -0xe0,0xb, 0xf, 0xf, 0x14,0x7f,0xe0,0xd, 0x3f,0x99,0xe0,0x2c,0x3f,0x78,0x3e,0x7a, -0x2, 0x85,0x1, 0xee,0xe3,0xff,0xce,0xfe,0x5, 0xeb,0x3f,0x62,0x17,0x83,0xe1,0x80, -0xbf,0xbe,0xe0,0xe, 0xe, 0xd, 0xe0,0x5, 0x1f,0xda,0x3e,0x7f,0xe7,0xfe,0x5, 0xce, -0xe4,0xb, 0x36,0x2f,0xe0,0xf, 0x36,0xc1,0x3f,0xcb,0x36,0x41,0xe6,0xff,0xce,0xfd, -0x3f,0xcd,0xbe,0x32,0xbf,0x9e,0xa7,0xa2,0xc7,0x81,0xbf,0xa2,0xe7,0xfe,0x0, 0xbe, -0xbf,0x92,0x3f,0xe2,0xc7,0x8c,0xe8,0x5, 0x3a,0x9b,0xbb,0xa2,0xe8,0x24,0x3a,0x7a, -0xe0,0xf, 0xa, 0x15,0x0, 0xdb,0x39,0xe6,0xe7,0xfe,0x0, 0x97,0x8, 0xb1,0xe1,0xff, -0xc0,0x34,0x3f,0xe0,0xc7,0x84,0xe0,0xf, 0xc, 0x1b,0x3c,0x60,0xe2,0x0, 0x7c,0x94, -0xc4,0x4, 0xd3,0xbb,0xe2,0x0, 0x7c,0xa8,0xe2,0x0, 0x7c,0xc, 0xd3,0xb6,0x3d,0x60, -0xc5,0x3c,0xe2,0x0, 0x7c,0xa8,0xe2,0x0, 0x7c,0x14,0xde,0xe0,0xd3,0x1, 0xe0,0x0, -0xc0,0x4c,0x8, 0xe1,0x8, 0xb1,0xe1,0xff,0xc0,0x34,0x3f,0xe0,0xc7,0x84,0xe0,0xf, -0xc, 0x1b,0x3c,0x60,0xe2,0x0, 0x7c,0x94,0xc4,0x4, 0xd3,0x9f,0xe2,0x0, 0x7c,0xa8, -0xe2,0x0, 0x7c,0xc, 0xd3,0x9a,0x67,0x8b,0x3d,0x60,0xe4,0x0, 0xcf,0x81,0xc5,0x3c, -0xe2,0x0, 0x7c,0xa8,0xe2,0x0, 0x7c,0x14,0x7f,0x8b,0xde,0xc0,0xd2,0xe1,0xe0,0x0, -0xc0,0x4c,0x8, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xf8,0x0, 0xd, 0x3d,0xe1,0xff, -0xc0,0x24,0x3f,0xe0,0xc7,0x94,0xe0,0xf, 0xc, 0x1b,0x3c,0x60,0xe2,0x0, 0x7c,0xa4, -0xc4,0x14,0xd3,0x7b,0xe2,0x0, 0x7c,0xb8,0xe2,0x0, 0x7c,0x1c,0xd3,0x76,0x67,0x9, -0xe2,0x0, 0xcf,0x1, 0x2, 0x90,0x67,0x8a,0x67,0xf, 0xe1,0x2f,0x3f,0x8e,0x7f,0x8a, -0xe2,0x0, 0x7c,0x24,0xd2,0xbd,0xe0,0x0, 0xc0,0x5c,0xf8,0x0, 0xe, 0xaa,0xf8,0x0, -0xc, 0x28,0xb, 0xe1,0x67,0x8e,0xe2,0x0, 0xcf,0x81,0x2, 0x89,0x67,0xf, 0x67,0x8a, -0xe1,0x2f,0x3f,0x8e,0x7f,0x8f,0xe2,0x0, 0x7c,0x38,0x0, 0xed,0xe2,0x0, 0xcf,0x4, -0x1, 0x87,0xe2,0x0, 0xcf,0x82,0x1, 0xe0,0xe0,0x4, 0x1c,0x6, 0x0, 0xe4,0xe2,0x0, -0xcf,0x84,0x1, 0x85,0xe2,0x0, 0xcf,0x2, 0x1, 0xea,0x0, 0xf7,0x66,0x8a,0xf0,0x0, -0x64,0xf, 0xe2,0x0, 0xcf,0x2, 0xf1,0x38,0x3c,0xd, 0x1, 0x84,0xf0,0x0, 0x7c,0xa, -0x0, 0xd0,0xe2,0x0, 0xcf,0x82,0x1, 0x84,0xf0,0x0, 0x7c,0xf, 0x0, 0xdd,0x3f,0xe0, -0xc7,0xb0,0xe0,0xf, 0xd, 0xb, 0x3f,0xe0,0xe0,0x0, 0xc7,0xc4,0xe0,0xf, 0xf, 0xf, -0x16,0x0, 0x3e,0xef,0x3b,0xee,0x17,0x0, 0x3c,0x6c,0x3c,0xed,0xf0,0x40,0x3d,0xea, -0x3d,0x6e,0x7e,0x83,0xf0,0x0, 0x15,0x0, 0x7e,0x4, 0x7d,0x81,0x7f,0x2, 0xd1,0xf7, -0x67,0x81,0x67,0x2, 0x3d,0xef,0x3d,0x6e,0xf0,0x40,0x3e,0x68,0xf0,0x40,0x3e,0xe9, -0xe8,0x40,0x3c,0x6a,0x3c,0xe7,0xd1,0xeb,0x3f,0x68,0x3f,0xe9,0x3d,0xe7,0xe8,0x40, -0x3d,0x6a,0xe8,0x40,0x3c,0x6a,0xe8,0x40,0x3c,0xeb,0x7f,0x81,0x7f,0x2, 0xd1,0xdf, -0x66,0x83,0x66,0x4, 0x3b,0x68,0x3b,0xe9,0xe8,0x40,0x3c,0x6a,0xe8,0x40,0x3c,0xeb, -0x3d,0x6c,0x3d,0xed,0xd1,0xd4,0x67,0x81,0x67,0x2, 0x3c,0x9f,0xe0,0x28,0x3c,0x7e, -0x3f,0x78,0xe0,0x0, 0x2, 0xc5,0x1, 0x84,0x3f,0xf9,0xe0,0x0, 0x2, 0xc1,0x15,0x0, -0x16,0x80,0xe8,0xd, 0x3e,0x9d,0xe8,0x2c,0x3c,0xfc,0xf0,0x40,0x3e,0x7c,0x15,0x80, -0x2, 0x85,0x1, 0x88,0xf0,0x40,0x3e,0xfd,0x5, 0x85,0xc5,0x81,0x17,0x80,0xe0,0x2a, -0x3d,0x7f,0x17,0x0, 0xe0,0x9, 0x3c,0x17,0xe0,0x28,0x3f,0x76,0x3c,0x9b,0x67,0x10, -0x67,0x8b,0xe0,0x28,0x3c,0x7a,0x3f,0x9e,0xc7,0x84,0xe0,0x5, 0x1d,0xdb,0x15,0x1, -0x17,0x0, 0xf0,0x0, 0x7c,0x14,0x7f,0x95,0x3c,0x7b,0x2, 0x9b,0x27,0x2, 0x7f,0x95, -0x17,0x0, 0xe0,0x5, 0x1d,0xdc,0x67,0x95,0x15,0x1, 0x3c,0x7b,0x2, 0xac,0xe2,0x0, -0xce,0x0, 0x3c,0x99,0xe0,0x28,0x3c,0x78,0x3, 0x4, 0x3a,0xe9,0xca,0x81,0x3c,0xe5, -0x3e,0x9d,0xe0,0x2c,0x3e,0x7c,0xc7,0xff,0x3f,0x6a,0x0, 0xf0,0x15,0x1, 0x0, 0xc1, -0xe6,0xff,0xcf,0x79,0x27,0xc, 0xe4,0x1, 0x36,0x2f,0xe0,0x6, 0x36,0x41,0xe0,0xe, -0x36,0xc1,0xeb,0x0, 0xce,0x0, 0x3e,0x46,0xe0,0xd, 0x38,0xce,0xe4,0xe, 0x34,0x2f, -0xe0,0x3, 0x34,0xc1,0x39,0xce,0xe0,0x2, 0x34,0x41,0x3c,0x62,0x3c,0xe3,0xc7,0x81, -0x3f,0x6a,0x0, 0xcb,0x27,0x2, 0x7f,0x95,0xe6,0xf8,0xcf,0x89,0xe2,0x1, 0xcf,0x80, -0x1, 0x94,0x3f,0xe9,0xe2,0x2, 0xc7,0x80,0x2f,0x90,0x3f,0xec,0x3f,0xcd,0x27,0x8d, -0xe0,0x1, 0x16,0x80,0xe0,0xf, 0x3c,0x9d,0x16,0x0, 0xe0,0x2e,0x3c,0x7c,0x3c,0x6e, -0xe7,0xfe,0x17,0x0, 0xe0,0x9, 0x3f,0x5f,0x3f,0xe0,0xe0,0x0, 0xc7,0xd8,0xe0,0xf, -0xc, 0x19,0x17,0x83,0x3c,0x60,0xe0,0x0, 0xc4,0x4c,0x7f,0x93,0xe7,0xfe,0x0, 0x84, -0x8, 0xb6,0xc0,0x48,0x3f,0xe0,0xc7,0x84,0xe0,0xf, 0xc, 0x1b,0xe2,0x0, 0x7c,0x94, -0xe2,0x0, 0x7c,0x4, 0xd2,0x62,0xe2,0x0, 0x7c,0xa8,0xe2,0x0, 0x7c,0xc, 0xd2,0x5d, -0x67,0x5, 0xe2,0x0, 0xcf,0x1, 0x2, 0x84,0x3c,0x60,0xc4,0x14,0x0, 0xa3,0x67,0x8a, -0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x5, 0xfd,0x66,0x86,0x66,0xb, 0xe2,0x0, 0xcf,0x4, -0xe2,0xd, 0x3e,0xcc,0x7e,0x86,0x1, 0x4, 0xe2,0x0, 0xcf,0x2, 0x1, 0x86,0x3f,0x7f, -0x1, 0xec,0xe0,0x4, 0x1c,0x6, 0x0, 0x8e,0xe2,0x0, 0xcf,0x84,0x1, 0x8e,0x3f,0xe0, -0xc7,0xa0,0x16,0x0, 0x16,0x80,0xe0,0xf, 0xe, 0x1d,0x17,0x80,0x7f,0x87,0xe2,0x0, -0x7c,0x14,0xd1,0x86,0xc0,0x38,0xb, 0x61,0xe2,0x0, 0xcf,0x82,0x1, 0x84,0x17,0x84, -0x7f,0x85,0x0, 0xf6,0x66,0x87,0x67,0x8c,0x3e,0x60,0x3e,0xaf,0x3f,0xe0,0xc6,0x34, -0xc7,0xa0,0xe0,0xc, 0xc, 0x9, 0xe0,0xf, 0xf, 0xf, 0x7e,0x87,0x3c,0x7e,0x2, 0x84, -0x1, 0x88,0x3c,0xff,0x5, 0x86,0x3f,0x9f,0xe0,0x2e,0x3f,0x7e,0xc6,0xff,0x7e,0x87, -0x10,0xbd,0x16,0x0, 0x16,0x80,0xea,0x20,0xcd,0x0, 0x15,0x80,0x3c,0x7e,0x2, 0x8d, -0x1, 0x83,0x3c,0xff,0x2, 0x8a,0xe0,0x2, 0x3e,0x4a,0xe0,0x3, 0x3e,0xcb,0x3f,0xa9, -0x3e,0x62,0x3e,0xe3,0xe1,0x2e,0x3f,0x78,0x3f,0x9f,0xe4,0x6, 0x35,0x2f,0xe0,0x5, -0x35,0xc1,0xe0,0x2e,0x3f,0x7e,0x3a,0xc6,0xe0,0x4, 0x35,0x41,0xc0,0xff,0x3d,0x64, -0x3d,0xe5,0x28,0xe5,0xe6,0xf8,0xcd,0x8d,0xe2,0x1, 0xcd,0x80,0x1, 0x93,0x3d,0xed, -0xe2,0x2, 0xc5,0x80,0x2d,0x8f,0x3f,0x4f,0x27,0xd, 0xe0,0x1, 0x15,0x80,0xe0,0xf, -0x3e,0x9b,0x15,0x0, 0xe0,0x2e,0x3e,0x7a,0x3e,0x6e,0xe7,0xfe,0x17,0x0, 0xe0,0xd, -0x3f,0x5f,0x3f,0xe0,0xc7,0xa0,0xe0,0xf, 0xe, 0x1d,0xe7,0xfe,0x0, 0xff,0xe2,0x0, -0x7c,0x28,0xe7,0xff,0x0, 0xa0,0x8, 0xb1,0xc0,0x48,0x3f,0xe0,0xc7,0x84,0xe0,0xf, -0xc, 0x1b,0xe2,0x0, 0x7c,0x94,0xe2,0x0, 0x7c,0x4, 0xd1,0xc7,0xe2,0x0, 0x7c,0xa8, -0xe2,0x0, 0x7c,0xc, 0xd1,0xc2,0x67,0x85,0xe2,0x0, 0xcf,0x81,0x5, 0x8c,0x67,0x8a, -0xe2,0x0, 0xcf,0x81,0x5, 0x88,0xe2,0x0, 0x7c,0xa8,0xe2,0x0, 0x7c,0x14,0xd2,0x8, -0xc0,0x38,0x8, 0xe1,0x14,0x1, 0x0, 0xfd,0x8, 0xb1,0xc0,0x48,0x3f,0xe0,0xc7,0x84, -0xe0,0xf, 0xc, 0x1b,0x3c,0xe0,0xc4,0x94,0xe2,0x0, 0x7c,0x4, 0xd1,0xa6,0x3c,0xe0, -0xe2,0x0, 0x7c,0xc, 0xc4,0xa8,0xd1,0xa1,0x67,0x85,0x14,0x1, 0x3f,0xf8,0x5, 0x84, -0x67,0x8a,0xe1,0x28,0x3c,0x2f,0xc0,0x38,0x8, 0xe1,0x8, 0xb4,0xc0,0x6c,0x17,0x83, -0x7f,0x81,0xe4,0xf, 0x34,0x4f,0x7f,0x82,0x2c,0x8, 0x17,0x82,0x7f,0x81,0x3c,0x60, -0xc4,0x4, 0xd0,0xde,0xc0,0x14,0xa, 0x61,0xe2,0x0, 0xcc,0x0, 0x3, 0x17,0xeb,0x0, -0xcf,0x80,0x3c,0x7f,0x1, 0x15,0xe0,0x41,0x39,0x48,0x3c,0x62,0xd0,0xb4,0x39,0xe8, -0xc1,0x9d,0x3d,0x63,0x3c,0xe2,0x14,0x0, 0xd0,0x98,0x3a,0x60,0x15,0x3c,0xc2,0x10, -0x3d,0x23,0x7d,0x3, 0xe0,0x4, 0xc, 0x19,0x0, 0xe3,0x39,0x68,0x0, 0xef,0xeb,0x83, -0xcc,0x60,0x14,0x80,0x0, 0xe0,0x8, 0xb5,0xc0,0x6c,0x11,0x80,0x79,0x82,0x2c,0x8, -0x17,0x82,0x7f,0x81,0x3c,0x60,0xc4,0x4, 0xd0,0xb3,0xc0,0x14,0xa, 0xe1,0x17,0x83, -0x3a,0x68,0x7f,0x81,0x11,0x1d,0xd0,0x8f,0x39,0x18,0x3d,0x62,0x3c,0xe4,0x3c,0x63, -0xd0,0x74,0x3a,0xe0,0x15,0x3c,0xc2,0x90,0x3d,0x22,0x7d,0x3, 0xe0,0x5, 0xc, 0x19, -0x0, 0xea,0x0, 0x0, 0xe4,0xa, 0x34,0x44,0xe1,0xf7,0xc5,0x6c,0xe6,0xac,0xcd,0xb8, -0xe8,0x0, 0xcd,0xa0,0x6, 0xa, 0xe3,0xff,0xcd,0x6a,0x5, 0x17,0xe0,0x41,0x3d,0x4a, -0xe0,0x8, 0x35,0xda,0xe0,0x0, 0x38,0x82,0xe2,0x0, 0xcd,0xa, 0x2, 0x8, 0x35,0xba, -0xe0,0x41,0x3d,0xa, 0x34,0xda,0xe0,0x8, 0x3c,0xcb,0x38,0x82,0xea,0xff,0xcd,0x70, -0x3c,0x7a,0x2, 0x83,0x14,0x7f,0x38,0x82,0x14,0x0, 0x38,0x82,0x8, 0xb2,0xa, 0x37, -0xe6,0xd0,0xce,0x89,0xe4,0xc, 0x34,0xc0,0xe6,0xd0,0xcf,0x8b,0xe4,0xe, 0x35,0xc0, -0x38,0xeb,0xe0,0xb, 0x3e,0xbf,0x3f,0xbc,0x3b,0x6a,0x3d,0x6f,0xe0,0xaa,0x3e,0x8e, -0xe4,0xd, 0x35,0xc0,0x3e,0x9a,0x3f,0xfd,0x3a,0x68,0x39,0x69,0x3e,0x3e,0x5, 0x84, -0xe2,0x0, 0x17,0x80,0x3e,0x1f,0xe4,0xa, 0x36,0xc0,0xe0,0x8, 0x3d,0x1c,0x3f,0xe8, -0xe0,0xaf,0x39,0x6, 0xe4,0xd, 0x36,0xa0,0x3c,0x6f,0xe6,0xd0,0xcd,0x8b,0xe0,0xa8, -0x38,0x84,0xe0,0x9, 0x3e,0x9b,0xb, 0xa4,0x9, 0x61,0x25,0xd, 0x17,0xa0,0x3f,0xaa, -0xe2,0x0, 0xcf,0x80,0x16,0x0, 0x2, 0x8, 0xe0,0x41,0x3f,0xcf,0xe0,0xd, 0x34,0x5f, -0x3c,0x6c,0x3c,0xed,0x38,0x82,0xe0,0xc, 0x34,0x5a,0xe0,0xf, 0x34,0x3f,0xe0,0xa, -0x34,0xda,0xe0,0xd, 0x3d,0x4f,0x0, 0xf5,0x25,0xd, 0x17,0xa0,0x3f,0xaa,0xe2,0x0, -0xcf,0x80,0x16,0x80,0x2, 0x8, 0xe0,0x41,0x3f,0xcf,0xe0,0xc, 0x34,0xbf,0x3c,0x6c, -0x3c,0xed,0x38,0x82,0x34,0x3a,0xe0,0xf, 0x34,0xdf,0xe0,0xd, 0x34,0xba,0xe0,0xc, -0x3c,0x4f,0x0, 0xf6,0xe1,0xff,0x17,0xff,0x3c,0x7f,0x2, 0x92,0xe2,0x2, 0xcc,0x0, -0x17,0x0, 0x17,0x88,0xe0,0x6f,0x3c,0xae,0x17,0x20,0x3f,0x2f,0xe0,0xf, 0x34,0x5f, -0xe0,0x4, 0x1c,0x44,0x3f,0x98,0x8c,0xf, 0xe0,0x8, 0x3f,0x28,0x38,0x82,0xe0,0x5, -0x1f,0xdd,0x17,0x10,0x3c,0x7f,0x17,0x98,0xe0,0x6f,0x3d,0xae,0x0, 0xee,0x8, 0xb7, -0x3f,0xe8,0xc7,0x8c,0xe0,0xf, 0x9, 0x3, 0xa7,0x88,0xa2,0x98,0xe2,0x0, 0xcf,0x81, -0x2, 0x99,0xe4,0xe, 0x31,0x28,0xe0,0xf, 0x31,0xc8,0xe6,0xa5,0xce,0xd2,0xea,0x0, -0xc9,0x8, 0xe0,0x3, 0x3f,0x4f,0x39,0x4d,0xe0,0xf, 0x17,0xff,0xe0,0x5, 0x1c,0x5e, -0xe4,0x5, 0x32,0xaf,0x3c,0x52,0x3c,0x45,0xe4,0xf, 0x37,0xa4,0x3c,0x4f,0x3c,0xe3, -0xb, 0xe1,0xe2,0x0, 0xcf,0x84,0xe0,0x1, 0x1, 0x6, 0xe2,0x0, 0xcf,0x82,0xe0,0x0, -0x1, 0x7d,0x3f,0xe2,0x3f,0xc3,0x27,0xeb,0xa7,0xa8,0xe3,0xf8,0xcf,0x82,0xe0,0x0, -0x3, 0x44,0xe7,0xf8,0x12,0x2, 0x3a,0x2f,0xe2,0x0, 0xca,0x38,0x2, 0x34,0x3d,0x64, -0x3c,0x62,0x3c,0xe3,0xdf,0x7b,0x3b,0x68,0x3b,0xe9,0x3d,0x64,0x14,0x7f,0x14,0xff, -0xdf,0x8c,0xe3,0xe, 0x39,0xd9,0xe3,0xf, 0x39,0x58,0x3f,0xce,0x17,0x0, 0xe1,0x2b, -0x3f,0x8e,0x3e,0x66,0xe0,0xd, 0x3b,0xcb,0xe6,0xf8,0xcf,0x8d,0xe2,0x1, 0xcf,0x80, -0x1, 0x9d,0x3f,0xed,0xe2,0x2, 0xc7,0x80,0x27,0x86,0xe0,0x1, 0xc6,0x80,0x17,0x0, -0xe0,0x2c,0x3e,0x7e,0xe0,0x5, 0x1f,0xdf,0x17,0x1, 0x3f,0xfc,0x17,0x80,0xe0,0x6f, -0x3c,0xae,0xe0,0x3, 0x36,0xc8,0xe4,0xe, 0x36,0x28,0x39,0xce,0xe0,0x2, 0x36,0x48, -0xe7,0xff,0x0, 0xae,0x16,0x0, 0x16,0x80,0x0, 0xe0,0xe0,0x0, 0xc6,0xff,0x17,0x80, -0xe0,0x2c,0x3e,0x7f,0x0, 0xe8,0xe2,0x7, 0xcf,0xff,0x2, 0x34,0xe6,0xf8,0xcf,0x3, -0xe2,0x1, 0xcf,0x0, 0x1, 0x9b,0x3f,0x63,0xe2,0x2, 0xc7,0x0, 0x27,0x6, 0xe0,0x1, -0xc1,0x80,0x17,0x0, 0xe0,0x22,0x39,0x7e,0xe0,0x5, 0x1f,0x60,0x39,0x7e,0x2, 0x91, -0xe0,0x7, 0xc7,0xff,0xe4,0xe, 0x31,0x28,0xe0,0xd, 0x31,0xc8,0x3e,0xce,0xe0,0xc, -0x31,0x48,0x39,0x6c,0x39,0xed,0xe7,0xff,0x0, 0x83,0xe0,0x0, 0xc1,0xff,0x0, 0xea, -0xe4,0xe, 0x31,0x2f,0xe0,0xd, 0x31,0xc1,0x3e,0xce,0xe0,0xc, 0x31,0x41,0x39,0x6c, -0x39,0xed,0xe0,0x8, 0xc7,0x80,0x0, 0xe7,0x17,0x80,0x11,0x0, 0x11,0x80,0xe7,0xfe, -0x0, 0xef,0xe0,0xf, 0x17,0xff,0x0, 0xfa,0xe0,0x8, 0xe, 0xd, 0xe0,0x5, 0x1f,0xe1, -0xe4,0xa, 0x36,0x4f,0xe6,0xc1,0xcd,0xdc,0xbd,0x19,0x3f,0xdc,0x3f,0x6d,0x2d,0xa0, -0xe0,0xd, 0x3f,0xcd,0x2e,0x84,0x17,0x82,0xbf,0x89,0x0, 0x99,0xe4,0xb, 0x37,0x48, -0xe0,0xc, 0x37,0xa8,0x3e,0x4b,0x17,0x83,0xe0,0x5, 0x1d,0xe2,0xbf,0x89,0xe0,0xd, -0x37,0x28,0xe7,0xf8,0x17,0x81,0x3e,0x9d,0xe0,0x2c,0x3e,0x7c,0x3e,0x7b,0x3f,0x6f, -0xc7,0xff,0x5, 0xfa,0xbf,0x29,0xc4,0x8c,0xe0,0x9, 0xe, 0x1d,0x38,0x82,0xe2,0xf, -0xcd,0xff,0x1, 0x95,0x3f,0xcd,0x2f,0x83,0x17,0x84,0x0, 0xdf,0xea,0x0, 0xcf,0x88, -0x3f,0xdc,0x27,0x82,0x17,0x81,0xe4,0xe, 0x36,0xc8,0xbf,0x89,0xe6,0x8d,0xcf,0xdc, -0x3f,0xce,0xbf,0xb9,0xe0,0xf, 0x36,0xa8,0xbf,0xc9,0x0, 0xe9,0xe1,0xf8,0xc5,0x81, -0x3e,0xe9,0x16,0x3, 0xbd,0xa9,0x37,0xa8,0xe1,0x80,0xbe,0x3d,0xe4,0xc, 0x37,0x48, -0x3f,0xcc,0xe8,0x20,0xcf,0x80,0x37,0x28,0xbf,0xb9,0xbf,0x1d,0x0, 0xd8,0xa7,0x8, -0xe2,0x0, 0xcf,0x1, 0xe0,0x0, 0x5, 0xc9,0xa7,0x89,0xe2,0x0, 0xcf,0x81,0xe0,0x0, -0x5, 0xc4,0xe2,0x0, 0xcf,0x4, 0x1, 0x88,0xe2,0x0, 0xcf,0x84,0xa7,0x18,0x1, 0x99, -0xa4,0x19,0x3c,0x2e,0x38,0x82,0xe2,0x0, 0xcf,0x84,0x1, 0x87,0xa7,0x99,0xe2,0x0, -0xcf,0x80,0x14,0x1, 0x17,0xff,0x0, 0x91,0xe2,0x0, 0xcf,0x2, 0x1, 0x86,0xe2,0x0, -0xcf,0x82,0x1, 0xf5,0x14,0x0, 0x0, 0xef,0xe2,0x0, 0xcf,0x82,0xa7,0x18,0x1, 0x88, -0xe2,0x0, 0xcf,0x0, 0x17,0x81,0x14,0x7f,0xe0,0x68,0x39,0x2f,0x0, 0xe4,0xa7,0x99, -0x3f,0xfe,0x1, 0xf7,0xa6,0xa8,0xa7,0x29,0x3e,0xfe,0x5, 0x4, 0xe2,0x0, 0xcf,0x80, -0x0, 0xf2,0x4, 0x5e,0xc4,0xc, 0xc4,0x8c,0xe0,0x8, 0xe, 0xd, 0xe0,0x9, 0xd, 0xb, -0x3e,0x7a,0x2, 0xf5,0x1, 0x83,0x3e,0xfb,0x2, 0xf2,0x3d,0x7c,0x2, 0xd1,0x1, 0xdb, -0x3d,0xfd,0x2, 0xce,0x0, 0xd8,0x14,0x1, 0x0, 0xc6,0xe0,0x4, 0x1f,0xca,0xa4,0xf, -0x38,0x82,0x0, 0x0, 0x3d,0xe8,0xe2,0x0, 0xcd,0x3, 0x5, 0xab,0xe0,0xc, 0x3c,0x49, -0xe2,0x0, 0xc6,0x3, 0x2e,0x26,0xc5,0x7c,0xe0,0xc, 0x35,0x21,0xe2,0x0, 0xc6,0x18, -0xe1,0x80,0xa7,0x99,0x26,0x6, 0xe0,0x1d,0x16,0xa4,0x3e,0xac,0x3f,0x6f,0x3e,0x82, -0xc5,0x70,0x6, 0x93,0xe1,0x80,0xa7,0x19,0xe1,0x80,0xbf,0x9b,0xe1,0x80,0xa7,0x99, -0xe1,0x80,0xbf,0x1b,0xe1,0x80,0xa7,0x19,0xe1,0x80,0xbf,0x9b,0xe1,0x80,0xa7,0x99, -0xc5,0x70,0xe1,0x80,0xbf,0x1b,0x6, 0x6f,0xe1,0x80,0xbf,0x9b,0xe2,0x0, 0xc5,0x3, -0xc5,0x7f,0x6, 0x87,0xe1,0x80,0x86,0x19,0xc5,0x7f,0xe1,0x80,0xae,0x1b,0x6, 0x7b, -0x38,0x82,0x0, 0x0, 0xe2,0x0, 0xcd,0x3, 0x5, 0xab,0xe7,0x28,0xcc,0x89,0xe7,0x50, -0xcc,0x89,0xe0,0x41,0x3e,0x48,0xe2,0x0, 0xc6,0x3, 0xe0,0xb, 0x3e,0x18,0xe0,0xd, -0x3d,0x2c,0x3e,0x6d,0xe2,0x0, 0xc6,0xc, 0x26,0x5, 0xe0,0x1e,0x17,0x88,0x3f,0xac, -0x3f,0x82,0xe1,0xff,0xc6,0xf0,0x6, 0x8b,0xe1,0x80,0xbc,0x9b,0xe1,0x80,0xbc,0x9b, -0xe1,0x80,0xbc,0x9b,0xc6,0xf0,0xe1,0x80,0xbc,0x9b,0x6, 0x77,0x3d,0x18,0xe0,0xc0, -0xac,0xba,0xac,0x9a,0xac,0xaa,0xac,0x88,0xac,0x98,0xac,0xa8,0x38,0x82,0x3d,0xe8, -0xc5,0x7f,0x6, 0x85,0xe1,0x80,0xac,0x9b,0xc5,0x7f,0x6, 0x7d,0x38,0x82,0x8, 0xb1, -0xe0,0x60,0x3c,0x87,0xea,0x2d,0x7f,0xc8,0xe0,0x0, 0x15,0x60,0x3c,0x6f,0xdf,0x8b, -0xe0,0x60,0x3c,0x17,0x8, 0xe1,0x8, 0xb7,0xe0,0x4, 0x1f,0xbe,0xe0,0x1, 0x92,0xf, -0xe0,0x2, 0x1f,0xf9,0x39,0x64,0x8c,0xf, 0xe3,0xff,0xc1,0x7f,0xe0,0x7, 0xd5,0x2e, -0xe0,0x2, 0x1f,0xb1,0x3d,0x68,0xe0,0xe, 0x8c,0xcf,0xe0,0xe, 0x8f,0xdf,0xe4,0x0, -0xc5,0x3, 0x3c,0x9f,0xe0,0x3, 0x1f,0xd1,0xe0,0x41,0x39,0xc2,0x8b,0xf, 0xe0,0x1, -0x1f,0x92,0xe0,0x2, 0x18,0xf8,0xe4,0x1, 0xc4,0x3a,0xe0,0x43,0x39,0x93,0x3d,0x1f, -0x15,0x80,0xe0,0x80,0x8f,0x9a,0x2f,0xa5,0xc5,0x81,0xe2,0x0, 0xcd,0x83,0x1, 0xfa, -0xb, 0xe1,0xe0,0xc, 0x3a,0x9e,0x36,0x21,0x3e,0x11,0xe0,0xf, 0x3b,0x9e,0x96,0xc, -0xe0,0x4, 0xc7,0xae,0x37,0xa1,0x3e,0x74,0x3f,0x91,0x9e,0x8f,0x5, 0xe, 0xe2,0x0, -0xcb,0x1, 0x1, 0x83,0x3e,0x92,0xb6,0x8f,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, -0xc7,0x7f,0x3f,0x79,0x4, 0x67,0x0, 0xe1,0x3e,0x73,0x3, 0x77,0x3e,0xa2,0x0, 0xf4, -0x3a,0xeb,0xe4,0x0, 0xc2,0xbe,0x17,0x0, 0xe0,0x7, 0x3a,0x98,0x0, 0xf3,0x8, 0xb2, -0xe0,0x2, 0x1f,0xf9,0x8c,0xf, 0xe0,0x7, 0xd4,0xe1,0xe0,0x2, 0x1f,0xb1,0xe0,0x2, -0x18,0xf8,0xe0,0xe, 0x8d,0xcf,0xe0,0xe, 0x8f,0xdf,0xe4,0x1, 0xc4,0x3a,0x3d,0x9f, -0x16,0x0, 0x3c,0xec,0xe4,0x0, 0xc4,0xbe,0x17,0x0, 0xe0,0x2, 0x3c,0x98,0x0, 0x94, -0xe0,0xf, 0x39,0x1e,0xe0,0xd, 0x3c,0x9e,0xe0,0x4, 0xc7,0xae,0x37,0xa1,0x36,0xa1, -0x3f,0x91,0x3e,0x91,0x9d,0xf, 0x9e,0x8d,0x3e,0x9a,0xb6,0x8f,0x3f,0xee,0xc7,0x81, -0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x3f,0x7b,0x4, 0x6c,0xc6,0x1, 0xe2,0x0, 0xce,0x3, -0x1, 0xe1,0x9, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x3d,0xe6,0xfd,0xca,0x88,0x3c,0x65, -0xe0,0x7, 0xd4,0xac,0xf0,0x40,0x3d,0x68,0x11,0x80,0xe0,0x4, 0x1a,0x6f,0xe0,0x2, -0x1b,0x78,0xf0,0x2, 0x1c,0xb1,0xf4,0x1, 0xc5,0x3a,0x3b,0xe3,0xf0,0x0, 0x14,0x3e, -0xf0,0x0, 0x15,0x82,0xf0,0x40,0x3e,0xe3,0xf2,0x1, 0xc6,0xff,0xe8,0x40,0x3c,0x6d, -0xe0,0x4, 0xdc,0xd2,0x2c,0x9, 0xc1,0x81,0xe2,0x0, 0xc9,0x83,0xc2,0x13,0x1, 0xf3, -0xf8,0x0, 0xe, 0xa8,0xb, 0xe1,0xe0,0x2, 0x8f,0xa4,0xfe,0xfa,0xce,0xd, 0x3f,0x95, -0xe8,0xf, 0x3f,0x9c,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0xe0,0x4, 0xdb,0x68,0xe0,0x4, -0xdb,0xf3,0x39,0x63,0x3f,0xe8,0xe4,0x0, 0xc1,0x7c,0xe4,0x2, 0xc7,0xf4,0xe0,0xb, -0xc1,0x50,0x39,0x1f,0xe0,0x2, 0x8f,0xa4,0x3c,0xe8,0xe0,0x0, 0xc7,0xc0,0xf0,0x1c, -0x3e,0x1f,0xe8,0x40,0x3c,0x6c,0xe2,0x1, 0xc4,0x7f,0xe0,0x7, 0xd4,0xfb,0xe2,0x0, -0xc9,0x82,0x39,0x16,0x3e,0x67,0x1, 0xa7,0xe8,0x40,0x3d,0xeb,0xe8,0x40,0x3d,0x68, -0x3c,0xe2,0x3c,0x62,0xd3,0x72,0x3e,0x63,0xe8,0xe, 0x8e,0xc9,0xe8,0xe, 0x8f,0xd9, -0xe4,0x0, 0xc6,0x3e,0x3e,0x9f,0x17,0x0, 0xe8,0xc, 0x3e,0x1a,0x3f,0x7d,0xe7,0xff, -0x3, 0x3c,0xe0,0xf, 0x3e,0x1e,0xe0,0x4, 0xc7,0xae,0xe0,0xb, 0x37,0x21,0x37,0xa1, -0x3f,0x96,0x3d,0x92,0x9d,0x8b,0x9d,0xf, 0xc7,0x1, 0x3d,0x9a,0xe3,0xff,0xc7,0x7f, -0xb5,0x8f,0x0, 0xed,0xe8,0x40,0x3d,0xed,0x0, 0xda,0x8, 0xb1,0xc0,0x48,0x3c,0x60, -0x14,0x80,0x15,0x36,0xc4,0x6, 0xde,0xb7,0xe0,0x4, 0x1f,0x34,0xe0,0x4, 0x1e,0xbe, -0x8f,0xce,0x94,0xbd,0x6f,0x84,0xe0,0x2, 0x1f,0xf7,0x8e,0xde,0x37,0xc1,0x7f,0x84, -0xe0,0x2, 0x1f,0xf6,0x6e,0x85,0xeb,0xff,0xce,0xfc,0xa7,0x8f,0x3f,0x9d,0x37,0xc1, -0x7f,0x85,0x7f,0x86,0xe0,0xc, 0x9f,0x9e,0xe6,0xf1,0xcf,0xff,0x27,0x90,0x5f,0x85, -0x17,0x0, 0x3d,0x69,0xe2,0x1, 0xc5,0x7f,0x3c,0x60,0xe7,0xe, 0xcf,0x9e,0x3c,0xea, -0xc4,0x4, 0x77,0x85,0xe0,0xc, 0xdf,0x2a,0xc0,0x38,0x8, 0xe1,0x5f,0x85,0x17,0x1, -0x0, 0xf1,0xe0,0x2, 0x1f,0xf6,0xe0,0x2, 0x1d,0x75,0xa4,0x8f,0x15,0x80,0x3c,0x69, -0xe0,0xe4,0x0, 0xd9,0x8, 0xb3,0xe6,0xfd,0xc9,0x88,0x3c,0x63,0xe0,0x7, 0xd3,0xf6, -0x39,0x68,0x14,0x4, 0xe0,0x4, 0xdc,0x30,0x24,0x23,0xc1,0x90,0x3c,0x63,0xe2,0x1, -0xc4,0x7f,0xe0,0x4, 0xda,0xd4,0xe0,0x4, 0xdb,0x5f,0x3c,0xe8,0xe4,0x13,0xc4,0xd8, -0xe0,0x2, 0x19,0xf8,0xe0,0x2, 0x1c,0x74,0xe0,0x63,0xc4,0x94,0x3c,0x93,0xd3,0x19, -0x3c,0x62,0xe4,0x13,0xc4,0x58,0xe0,0x4, 0x1f,0xb4,0xe0,0x4f,0xc4,0x3a,0xe0,0x2, -0x1e,0xf4,0xe0,0x8, 0x9e,0x3f,0x3c,0x13,0x17,0x80,0x3e,0x7f,0x1, 0x82,0x9, 0xe1, -0xe1,0x80,0x95,0x9d,0xe0,0x80,0x9f,0x18,0xc7,0x81,0x3f,0x1b,0xe3,0xff,0xc7,0xff, -0xb7,0x8, 0x0, 0xf4,0xe2,0x0, 0xcc,0x2, 0x2, 0xa4,0xe0,0x0, 0x1f,0xfd,0x8f,0x8f, -0x3f,0xf8,0x1, 0x1f,0x8, 0xb2,0x14,0x4, 0x39,0x69,0xe0,0x4, 0xdb,0xf5,0x24,0x18, -0x31,0x25,0xc1,0x10,0x3c,0x62,0xe2,0x1, 0xc4,0x7f,0xe0,0x4, 0xda,0x98,0xe0,0x4, -0xdb,0x23,0x3c,0xe8,0xe0,0x2, 0x1f,0xf3,0xe4,0x13,0xc4,0xd8,0xe0,0x2, 0x1c,0x74, -0x3c,0x9f,0xd2,0xdf,0xe0,0x2, 0x1c,0x74,0x9, 0x21,0xe0,0x9c,0x0, 0xd9,0x9, 0x61, -0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0x11,0x81,0x13,0x0, 0xf0,0x4, 0x1c,0xf8, -0xf0,0x0, 0x1c,0x7d,0xf0,0x2, 0x1d,0x30,0xf0,0x2, 0x1d,0xaf,0xf0,0x2, 0x1e,0x2e, -0x39,0x66,0x3a,0xe3,0x3b,0xe3,0xf0,0x0, 0x16,0x90,0x3c,0x67,0xe0,0x4, 0xdc,0xda, -0xe8,0x0, 0x8f,0x89,0x3f,0xf2,0x1, 0x85,0xe8,0x0, 0x8f,0x88,0x3f,0xf2,0x1, 0x26, -0xe8,0x0, 0x8f,0x88,0x3f,0xf2,0x1, 0x6, 0x3c,0x62,0xe0,0x9, 0xd2,0xf, 0xe8,0x40, -0x3b,0x6d,0xe0,0x4, 0xdb,0xe6,0xe8,0x0, 0x87,0x8a,0xe2,0x0, 0xcf,0x80,0x3, 0xc, -0xe8,0x0, 0x8f,0x8b,0xe2,0x0, 0xc7,0xc0,0x27,0x87,0xe8,0x0, 0x8f,0x8c,0xc7,0x81, -0x39,0xef,0xe2,0x1, 0xc1,0xff,0x12,0x0, 0x3a,0x73,0x1, 0x9a,0xf0,0x40,0x3f,0x65, -0x3c,0x67,0xe0,0x4, 0xdc,0xaf,0xe8,0x40,0x3a,0xee,0x3f,0xe2,0xc7,0x81,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0xe2,0x0, 0xc9,0x3, 0x1, 0xc9,0x23,0x6, 0xe0,0x2, 0x1f,0xfc, -0x8c,0xf, 0xe0,0x9, 0xd1,0xe3,0x3c,0x65,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x3c,0x67, -0xe0,0x4, 0xdc,0x98,0xe0,0x4, 0xdc,0xa5,0xf0,0x40,0x3f,0x68,0x24,0x62,0x3c,0xe4, -0x3c,0x62,0xdf,0x79,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0x0, 0xd5, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3c,0xe0,0x4, 0xdb,0xa4,0x14,0x1, 0xe0,0x4, 0xdc,0x82, -0xe0,0x4, 0xdb,0x9f,0x14,0x1, 0x11,0x0, 0xe0,0x4, 0x19,0xef,0xe0,0x2, 0x1a,0x31, -0xe0,0x2, 0x1a,0xf2,0xe0,0x4, 0xdc,0x76,0x3b,0x62,0xe0,0x4, 0xdb,0x92,0x8f,0xf3, -0xe2,0x0, 0xcf,0x84,0x1, 0xd, 0xe0,0xe, 0x8d,0x44,0xe0,0xe, 0x8f,0xd4,0x3c,0x62, -0xe4,0x0, 0xc4,0x7c,0x3d,0x1f,0x35,0x21,0x3c,0xe6,0x3c,0x15,0xdd,0x94,0xc1,0x1, -0xe2,0x0, 0xc9,0x3, 0xc1,0x93,0x1, 0xec,0xe0,0x4, 0x1f,0xb4,0xe0,0x2, 0x1c,0x71, -0xe0,0x8, 0x9d,0x3f,0x14,0x80,0x35,0x21,0xdd,0x86,0xe0,0x2, 0x1f,0xb0,0x11,0x1, -0x3a,0x62,0x3b,0xe2,0x13,0x0, 0xf0,0x0, 0x86,0xf, 0xf0,0x2, 0x1d,0xaf,0xf0,0x2, -0x1d,0x2e,0xf0,0x40,0x3c,0x62,0xf0,0x3, 0x1c,0xa8,0x0, 0x83,0xe0,0x4, 0xdb,0x61, -0xf2,0x0, 0xce,0x0, 0x3, 0xc, 0xe8,0x0, 0x8f,0x8b,0xe2,0x0, 0xc7,0xc0,0x27,0x87, -0xe8,0x0, 0x8f,0x8a,0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe8,0x40,0x3c,0x68, -0xe0,0x4, 0xdc,0x30,0xe8,0x0, 0x97,0xa9,0xe2,0x0, 0xcf,0x80,0xe0,0x0, 0x5, 0x4c, -0xe2,0x0, 0xc9,0xa, 0xe0,0x0, 0x2, 0xc8,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, -0xc1,0x7f,0x3f,0xe6,0xc7,0x81,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0x39,0x76,0x2, 0xd7, -0x23,0xa0,0x14,0x0, 0xe0,0x4, 0xdb,0x0, 0x24,0x6, 0xe0,0x2, 0x1c,0x72,0x14,0x80, -0xe0,0x4, 0xdd,0x43,0x14,0x1, 0xe0,0x4, 0xda,0xf7,0x24,0x6, 0xe0,0x2, 0x1c,0x70, -0x14,0x81,0xe0,0x4, 0xdd,0x3a,0x14,0x2, 0xe0,0x4, 0xda,0xee,0x24,0x6, 0xe0,0x2, -0x1c,0x6f,0x14,0x82,0xe0,0x4, 0xdd,0x31,0xe0,0x2, 0x1c,0x71,0xe0,0x4, 0xdd,0x60, -0x3c,0x67,0xf8,0x0, 0xe, 0x28,0xb, 0xe1,0xe0,0x4, 0xdc,0x3, 0x3a,0xe8,0x24,0xd, -0x3c,0x63,0xdd,0xe9,0x3c,0x63,0xde,0x9f,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, -0xc1,0xff,0x39,0xf4,0x1, 0xf2,0x3a,0xe7,0xe8,0x40,0x3c,0x68,0xe0,0x4, 0xdb,0xe2, -0x3b,0xe5,0x0, 0xc0,0x11,0x80,0x0, 0xf6,0x8, 0xb1,0xdd,0xa2,0x8, 0xa1,0xe7,0xfd, -0x0, 0x82,0x8, 0xb4,0xe0,0x4, 0x1f,0xbe,0x91,0x3f,0xe0,0x4, 0x1f,0xb4,0x89,0xdf, -0x8a,0x4f,0xdd,0x42,0xde,0x43,0xe0,0x0, 0x1f,0xa5,0x8f,0xf, 0x2f,0xc, 0xe0,0x2, -0x1f,0xf6,0xe0,0x2, 0x1c,0xf8,0xa5,0xf, 0x3d,0xe3,0x3e,0xe3,0xe0,0x41,0x3c,0x42, -0x3f,0x74,0x1, 0x82,0xa, 0x61,0x3f,0xed,0xc7,0xfe,0xe3,0xff,0xc7,0xff,0x3e,0x6f, -0xe0,0x14,0xc6,0x6, 0x36,0x21,0x3e,0x19,0x96,0xc, 0x39,0x7c,0x3, 0xf, 0x37,0xa1, -0x3f,0x9a,0x9e,0xf, 0x3e,0x22,0xb6,0xf, 0x3f,0xee,0xc7,0x81,0x3f,0x6f,0x3e,0x9b, -0xe2,0x1, 0xc7,0x7f,0xe3,0xff,0xc6,0xff,0x0, 0xe4,0x3e,0x78,0x3, 0x76,0x37,0xa1, -0x3f,0x9a,0x9e,0xf, 0x3e,0x12,0x0, 0xf0,0x8, 0xb4,0x3f,0xea,0xc7,0xff,0x39,0x6f, -0x3f,0xe9,0xc7,0xff,0x38,0xef,0xe2,0x1, 0xc0,0xff,0x3d,0x71,0x3f,0x68,0xe2,0x1, -0xc1,0x7f,0xe0,0x0, 0x2, 0xd0,0x17,0x80,0x14,0x3, 0xbf,0x8b,0xbf,0x9b,0xbf,0xab, -0x38,0xe9,0xc0,0x81,0x39,0xe1,0xe2,0x1, 0xc1,0xff,0x3d,0x73,0xe0,0x0, 0x2, 0xed, -0x15,0x0, 0xbd,0x4b,0xbd,0x5b,0xbd,0x6b,0x34,0xa1,0x3f,0x19,0x97,0xe, 0x3d,0x6b, -0xbf,0x3b,0x3f,0x6b,0xc5,0x18,0x14,0x80,0xc7,0x7c,0xe0,0x80,0xa0,0x9e,0xe2,0x0, -0xc8,0x80,0x2, 0x2, 0xbc,0x8e,0x3d,0x7e,0x1, 0xf9,0xa4,0xab,0xa7,0x4b,0x15,0x1, -0x3f,0x19,0xe0,0x2e,0x3f,0x6a,0x34,0xab,0xe0,0x2a,0x3c,0xbe,0xe2,0x8, 0xcd,0x0, -0xe0,0x0, 0x5, 0x6e,0x3f,0x6a,0xa4,0x8b,0xe1,0xf8,0xc7,0x0, 0x3f,0x39,0xe2,0x0, -0xcf,0x0, 0x3, 0x3, 0xe0,0x7, 0xc7,0x7f,0x37,0xa, 0xbf,0xb, 0xe0,0x10,0x17,0x0, -0x3f,0x2a,0xe2,0x7, 0xcf,0x7f,0xe0,0x0, 0x2, 0x6a,0xa5,0x5b,0x3f,0x3a,0xe2,0x0, -0xcf,0x0, 0x3, 0x3, 0xe0,0x7, 0xc7,0x7f,0x37,0xa, 0xbf,0x5b,0x17,0x0, 0xe0,0x0, -0x0, 0xed,0x3f,0xe9,0xc7,0xfe,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0xe0,0xf, 0x30,0xa1, -0x3d,0x78,0x3f,0x9e,0x90,0x8f,0x2, 0x88,0x17,0x80,0x14,0x2, 0xbf,0x8b,0xbf,0x9b, -0xb8,0xab,0xe7,0xff,0x0, 0xa7,0x3f,0xe9,0x34,0x21,0xc7,0xfd,0x3c,0x1e,0x94,0x8, -0xe2,0x1, 0xc7,0xff,0x3d,0x7f,0xbc,0x1b,0xb8,0xab,0x2, 0x86,0x17,0x80,0x14,0x1, -0xbf,0x8b,0xe7,0xff,0x0, 0x97,0xe0,0x8, 0x37,0xa1,0x3c,0x1e,0x94,0x8, 0xbc,0xb, -0x14,0x0, 0xe7,0xff,0x0, 0x8f,0x38,0xe9,0xc0,0x82,0xe2,0x1, 0xc0,0xff,0x31,0xa1, -0x3d,0x71,0x39,0x9e,0x92,0x3, 0x2, 0x85,0x15,0x0, 0xba,0x4b,0xe7,0xff,0x0, 0x8c, -0x39,0xe9,0x30,0xa1,0xc1,0x83,0x38,0x9e,0x90,0x81,0xe2,0x1, 0xc1,0xff,0x3d,0x73, -0xba,0x4b,0xb8,0xdb,0x2, 0x84,0x15,0x0, 0xe7,0xfe,0x0, 0xff,0xe0,0xa, 0x31,0xa1, -0x3d,0x1e,0x95,0xa, 0x39,0x63,0xbd,0x6b,0xe7,0xfe,0x0, 0xf8,0x17,0x0, 0xbf,0xb, -0xe7,0xff,0x1, 0x1e,0xa7,0x1b,0x3f,0x3a,0xe2,0x0, 0xcf,0x0, 0x3, 0x3, 0xe0,0x7, -0xc7,0x7f,0x37,0xa, 0xbf,0x1b,0xe7,0xff,0x0, 0x93,0xe2,0x8, 0xcf,0x0, 0xe7,0xff, -0x1, 0x1f,0xe0,0x8, 0x17,0x0, 0x3f,0x2a,0xa5,0x6b,0x3f,0x3a,0xe2,0x0, 0xcf,0x0, -0x3, 0x3, 0xe0,0x7, 0xc7,0x7f,0x37,0xa, 0xbf,0x6b,0xaf,0x8c,0xa9,0xd, 0xa, 0x61, -0x8, 0xb3,0xc0,0x60,0x17,0x80,0x6f,0x86,0x39,0x60,0x3f,0xea,0xe2,0x0, 0x7e,0xa0, -0xc7,0xff,0xc1,0x8, 0x3e,0x60,0xe0,0xc3,0xaf,0x9d,0x39,0xeb,0xc6,0x6, 0x3d,0xe2, -0xdf,0x24,0x4d,0x6, 0x16,0x80,0x4c,0x87,0xe2,0x1, 0xc4,0x7f,0x3f,0x6a,0x3f,0xed, -0x3f,0x79,0x5, 0x8d,0x2e,0x82,0x16,0x81,0x29,0x9f,0xe0,0x8, 0x37,0xa6,0xe1,0x28, -0x3c,0x3d,0xc4,0x20,0xe3,0xff,0xc4,0x7f,0xc0,0x20,0x9, 0xe1,0xe0,0xc, 0x3c,0x1e, -0x3e,0x2a,0x36,0x22,0x3e,0x12,0x96,0x1c,0x29,0x88,0xe0,0xaf,0x3e,0xe, 0xc7,0x1, -0x3e,0x9c,0xe2,0x1, 0xc7,0x7f,0x0, 0xe5,0xe0,0xb, 0x37,0x21,0x3d,0x93,0x9d,0x8b, -0xe0,0xaf,0x3d,0x8c,0x0, 0xf5,0xe1,0x28,0x3f,0xbd,0x0, 0xe5,0x8, 0xb7,0xf8,0x0, -0xc, 0x38,0xe2,0x0, 0xcc,0x1, 0x1, 0x93,0xe0,0x5, 0x1a,0x99,0xe0,0x4, 0x1b,0x5d, -0xe0,0x2, 0x1f,0xee,0x9f,0x8f,0x37,0xcf,0x27,0xb1,0xe0,0x0, 0x19,0xa4,0x11,0x0, -0x3a,0x63,0xe0,0x2, 0x1b,0xb1,0xf0,0x2, 0x1c,0x6d,0x0, 0x9b,0x12,0x80,0x3b,0x65, -0x0, 0xf0,0xe0,0xe, 0x8f,0xd7,0xe0,0xe, 0x39,0x92,0xe8,0x0, 0xa4,0x8, 0x37,0xa1, -0xe0,0xe, 0x8d,0x47,0x8c,0x8e,0x3c,0x1f,0x3d,0xe6,0xdf,0x9b,0x3f,0xe2,0xc7,0x9a, -0x37,0xa1,0x3f,0x93,0xb4,0xf, 0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe0,0x5, 0x8f,0xb3,0x3f,0xf2,0x2, 0xe6,0xe0,0x2, 0x19,0xb1,0xe0,0x2, 0x1b,0x6d, -0x11,0x0, 0xe0,0x5, 0x8f,0xc4,0x3f,0xf2,0x2, 0x84,0xf8,0x0, 0xc, 0x28,0xb, 0xe1, -0xe0,0xf, 0x3a,0x12,0xe0,0x2, 0x8c,0xdf,0xe0,0xe, 0x8d,0x53,0xa4,0x6, 0x3d,0xe5, -0xdf,0x78,0x3f,0xe2,0xc7,0xae,0x37,0xa1,0x3f,0x94,0xb4,0x1f,0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xe6,0xe0,0x3, 0x1f,0xa8,0xe2,0x0, 0xce,0x1, -0x8f,0xf, 0x8e,0x8f,0xe6,0xfb,0xcf,0x7e,0xe7,0x1, 0xce,0x9e,0xae,0x8f,0x1, 0x8b, -0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8e,0xcf,0xe0,0xe, 0x8f,0xdf,0x3e,0x9f,0x17,0x80, -0x3f,0xfd,0x4, 0x2, 0x38,0x82,0xe0,0xe, 0x37,0xa1,0xe0,0xc, 0x3c,0x1e,0x3f,0x19, -0x97,0xe, 0xc7,0x81,0xe0,0x41,0x3f,0x2e,0xe3,0xff,0xc7,0xff,0xb7,0xc, 0x0, 0xf1, -0xe0,0x4, 0x1f,0xcc,0x3d,0x69,0x8d,0x8f,0x25,0x8e,0xe0,0x4, 0x1f,0xb4,0xe0,0x13, -0xc5,0x58,0xe0,0x11,0x8d,0xbf,0x25,0x85,0x16,0x6, 0x15,0x80,0xe0,0xde,0x0, 0xd9, -0x16,0x34,0x0, 0xfd,0x16,0x4, 0x3d,0x6b,0x0, 0xfa,0xe0,0x4, 0x1f,0xb4,0x3f,0x6a, -0xe0,0x12,0x8e,0x4f,0x2e,0x3, 0xe0,0xde,0x0, 0xac,0xe0,0xc, 0x9f,0x9f,0xe6,0xf1, -0xcf,0xff,0x27,0x84,0x15,0x80,0xe0,0xdd,0x0, 0xfe,0x3d,0x69,0x15,0x81,0x3c,0xee, -0x0, 0xfb,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8e,0xcf,0xe0,0xe, 0x8f,0xdf,0x3e,0x9f, -0xe0,0x4, 0x1f,0xb4,0xe0,0x12,0x8f,0xcf,0x27,0x9e,0x17,0x80,0x3f,0xfd,0x3, 0x1d, -0xe0,0xe, 0x37,0xa1,0xe0,0xb, 0x3c,0x1e,0xe0,0xc, 0x3c,0x9e,0x3f,0x1a,0x9e,0xc, -0x9f,0xe, 0xc7,0x81,0xe0,0xe, 0x3e,0x2e,0xe3,0xff,0xc7,0xff,0xb7,0xb, 0x0, 0xef, -0xe0,0xe, 0x37,0xa1,0xe0,0xc, 0x3c,0x1e,0x3f,0x19,0x9f,0xe, 0xc7,0x81,0xe3,0xff, -0xc7,0xff,0xb7,0xc, 0x3f,0xfd,0x4, 0x75,0x38,0x82,0xe0,0x0, 0x1f,0xa8,0xe0,0x0, -0x1f,0x2e,0x8e,0x8f,0xe0,0x3, 0x1f,0xfb,0xe2,0x0, 0xce,0x82,0x5, 0x93,0x16,0x80, -0xb6,0x8f,0x16,0x83,0xae,0x8e,0x9e,0x8f,0xe2,0x3, 0xce,0xdf,0x5, 0x86,0xe0,0x3, -0x16,0xe0,0xb6,0x8f,0x16,0x80,0xae,0x8e,0x9e,0x8f,0x8c,0xe, 0xc6,0x81,0xb6,0x8f, -0x38,0x82,0x1, 0x84,0x16,0x0, 0xb6,0xf, 0x0, 0xee,0x26,0xee,0x16,0x80,0xb6,0x8f, -0x16,0x81,0x0, 0xe9,0x8, 0xb7,0xe0,0x2, 0x1a,0x78,0x39,0xeb,0xe0,0x4, 0x1a,0xb6, -0xe0,0xff,0x13,0xff,0xe0,0x0, 0x13,0x7f,0x3c,0xaa,0xc1,0xff,0x3d,0x79,0x4, 0x3, -0x3c,0x66,0xb, 0xe1,0x25,0xbf,0x3f,0xea,0xe4,0x0, 0xc7,0x83,0x3f,0x93,0xe2,0x1, -0xc7,0xff,0xe0,0xd, 0x35,0x21,0x3e,0x98,0x97,0xd, 0x3e,0xef,0x37,0xa1,0x3f,0x95, -0xe0,0x2, 0xc6,0xb6,0x97,0x8f,0x36,0xa1,0x3e,0x94,0x37,0xa1,0x96,0xd, 0x3e,0xef, -0xe3,0xff,0xc6,0xfe,0xe0,0x43,0x38,0x9d,0xe2,0x0, 0xc8,0x80,0xe0,0x41,0x3f,0x2e, -0xe0,0x41,0x3e,0x2c,0xe0,0x2, 0x3f,0x1c,0x2, 0x3, 0xe0,0x41,0x3f,0xc1,0x3f,0x92, -0xe0,0x41,0x39,0x27,0x3f,0xf2,0x3, 0xf, 0xe2,0x0, 0xc8,0x80,0x3f,0x1c,0xe3,0xff, -0xc7,0x7f,0x2, 0x5, 0xe0,0x41,0x3e,0xcd,0xe3,0xff,0xc6,0xff,0x3f,0x1d,0xe0,0x43, -0x3b,0x9e,0x3b,0x6a,0x3f,0xea,0xc7,0x81,0x3d,0x6f,0xe2,0x1, 0xc5,0x7f,0xe7,0xff, -0x0, 0xbf,0x3f,0xea,0x0, 0xc7,0x35,0xa1,0x3d,0x99,0x96,0x8b,0xc4,0xfe,0xc4,0x7e, -0x17,0x80,0x3f,0xfa,0x1, 0x82,0x38,0x82,0xe0,0x80,0x9f,0x19,0xc7,0x81,0x3f,0x2d, -0xe0,0x80,0xb7,0x18,0xe2,0x1, 0xc7,0xff,0x0, 0xf5,0x8, 0xb5,0x39,0xe9,0x3a,0x6a, -0x3a,0xe8,0x3c,0xe4,0x15,0x0, 0x3c,0x63,0xdf,0x96,0x39,0x68,0x3d,0xe8,0x3d,0x64, -0x3c,0x65,0x3c,0xe3,0xdf,0xe1,0x3c,0x62,0xa, 0xe1,0xe0,0xd, 0x35,0x41,0x17,0x0, -0xe0,0x41,0x3e,0x4d,0x3f,0x79,0x1, 0x82,0x38,0x82,0x97,0x88,0x3f,0xfd,0x5, 0xa, -0x3f,0xaa,0xb7,0x88,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xc4,0x2, -0x0, 0xf2,0x3f,0xfc,0x3, 0x78,0x3f,0x9a,0x0, 0xf5,0x8, 0xb5,0x3e,0xe8,0xc6,0xfe, -0x17,0x80,0xe0,0x41,0x39,0x4a,0x39,0xed,0x3f,0x6f,0xe0,0x41,0x3a,0x4a,0xe0,0x43, -0x39,0x12,0xe0,0x43,0x3a,0x9a,0x3f,0x79,0x1, 0xa6,0xe0,0x2a,0x3f,0xbe,0xe2,0x0, -0xcd,0x81,0xe0,0x43,0x3d,0x1a,0x1, 0x94,0xe0,0x41,0x3c,0xaa,0xe0,0x41,0x38,0xc9, -0x15,0x0, 0x39,0x6d,0x3f,0xea,0xe0,0x41,0x39,0xc9,0xe0,0x43,0x38,0x91,0xe0,0x43, -0x3a,0x19,0x3f,0x7f,0x1, 0x9e,0xe0,0x2a,0x3d,0x3e,0xe0,0x43,0x3d,0x1a,0xe2,0x0, -0xce,0x1, 0x1, 0x2f,0xe0,0x41,0x3d,0x2a,0xe3,0xff,0xc5,0x7f,0x3c,0xee,0xa, 0xa1, -0xe7,0xff,0x0, 0xb5,0xe0,0x80,0x90,0x93,0x38,0xfa,0x5, 0x7, 0x38,0xe5,0xc7,0x1, -0x3f,0x91,0xe2,0x1, 0xc7,0x7f,0x0, 0xd0,0x38,0xf4,0x3, 0x7a,0x38,0xe2,0x0, 0xf8, -0xe0,0x80,0x95,0x92,0x3c,0xfb,0x3, 0x7, 0x3d,0xe4,0xc7,0x81,0x3d,0x1b,0xe2,0x1, -0xc7,0xff,0x0, 0xd8,0x3d,0xf3,0x3, 0x7a,0x3d,0xe1,0x0, 0xf8,0xe0,0x80,0x9e,0x1d, -0xc7,0x81,0x3e,0x2a,0xe2,0x1, 0xc7,0xff,0xb6,0xd, 0x3f,0x7f,0x1, 0xf8,0xa, 0xe1, -0x17,0x80,0x0, 0xfc,0x8, 0xb4,0xe0,0x41,0x3e,0x4b,0x17,0x0, 0x17,0x81,0xe0,0x41, -0x38,0xcb,0xe0,0x43,0x3e,0x1c,0xe0,0x43,0x39,0x1b,0x3f,0xfa,0x5, 0xa6,0xe0,0x2e, -0x3f,0x3a,0x3e,0xe8,0x17,0x81,0x3f,0xfa,0x5, 0xb0,0x3f,0xea,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0xe0,0x1, 0x37,0xa1,0xe0,0x41,0x39,0x4b,0x38,0x98,0x3e,0xef,0x17,0x0, -0xe0,0x41,0x39,0xcb,0xe0,0x43,0x39,0x12,0xe0,0x43,0x3a,0x1b,0x3e,0xf9,0x4, 0xa5, -0xc5,0x1, 0xe0,0xa, 0x3c,0xaa,0xe0,0x2a,0x3f,0x3a,0xe0,0xe, 0x37,0xa1,0xc7,0x7e, -0x3c,0x1e,0x3f,0xf9,0x4, 0xa8,0xa, 0x61,0xe0,0xd, 0x37,0xa1,0x3e,0x98,0x96,0x8d, -0x3e,0xfb,0x5, 0x7, 0x3e,0xe2,0xc7,0x81,0x3f,0x1d,0xe2,0x1, 0xc7,0xff,0x0, 0xce, -0x3e,0xf1,0x3, 0x7a,0x3e,0xec,0x0, 0xf8,0xe0,0x80,0x9e,0x1d,0xc7,0x81,0x3e,0x2e, -0xe2,0x1, 0xc7,0xff,0xb6,0xd, 0x0, 0xc8,0xe1,0x80,0x96,0x11,0x3e,0x7b,0x5, 0x7, -0x3e,0x64,0xc6,0x81,0x3f,0x1c,0xe2,0x1, 0xc6,0xff,0x0, 0xd1,0x3e,0x73,0x3, 0x7a, -0x3e,0x62,0x0, 0xf8,0xe0,0x80,0x9f,0x18,0xc7,0x81,0x3f,0x2a,0xe2,0x1, 0xc7,0xff, -0xb7,0x8, 0x0, 0xd0,0x8, 0xb5,0x39,0xea,0xe0,0x41,0x39,0x4c,0x17,0x80,0x16,0x81, -0xc1,0xfe,0xe0,0x41,0x3a,0x4c,0xe0,0x43,0x39,0x12,0xe0,0x43,0x3a,0x9c,0x3e,0xf3, -0x4, 0x1c,0xe0,0x2f,0x3f,0xb3,0x3c,0xe8,0xe0,0x43,0x38,0x9f,0xe3,0xff,0xc7,0xff, -0xe0,0xc, 0x3f,0xbb,0xc4,0xfe,0xe3,0xff,0xc6,0x7f,0x16,0x80,0x3e,0xfb,0x1, 0xa5, -0x3f,0x6d,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xe0,0xc, 0x37,0x21,0xc6,0x7e,0x3e,0x18, -0x3f,0x7a,0x4, 0xa8,0x3c,0x61,0xa, 0xe1,0x38,0xed,0xc0,0x81,0x30,0xa1,0x38,0x99, -0x9f,0x1, 0xe0,0x40,0x98,0x91,0x3f,0x21,0xe0,0x43,0x3f,0x1e,0x3f,0x7c,0x5, 0x9, -0x3f,0x65,0x3f,0x9e,0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0x0, 0xd0, -0x3f,0x74,0x3, 0x78,0x3f,0x62,0x0, 0xf6,0xe0,0x80,0x9f,0x19,0x3f,0x1c,0xb7,0x9, -0x3f,0x6d,0xc7,0x1, 0x3e,0x2f,0x3e,0xee,0xe3,0xff,0xc6,0x7f,0xe2,0x1, 0xc6,0xff, -0x0, 0xce,0xe0,0x9, 0x3f,0x2d,0xe0,0x80,0x9d,0x9c,0xe2,0x1, 0xc4,0xff,0xe0,0xab, -0x3f,0xa9,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xb5,0x8c,0x0, 0xcb,0x8, 0xb7,0x38,0xe9, -0xe0,0x41,0x39,0x4c,0xc0,0x82,0x17,0x0, 0x16,0x81,0xe0,0x41,0x3a,0x4c,0xe0,0x43, -0x39,0x12,0xe0,0x43,0x3a,0x9c,0x3e,0xfb,0xe0,0x0, 0x4, 0xd8,0xe2,0x0, 0xcd,0x81, -0xe0,0x0, 0x5, 0xea,0x3f,0xeb,0xc7,0xff,0xe0,0x2e,0x3f,0x3f,0xe0,0x43,0x3f,0x1e, -0xe0,0x0, 0x1f,0xae,0x8a,0xf, 0x2a,0x7, 0x17,0xe2,0xe0,0x2e,0x3f,0x6f,0x17,0x9e, -0xe0,0x2e,0x3f,0x5f,0x39,0xea,0xe0,0x41,0x3a,0xcc,0x38,0xeb,0x17,0x80,0xc1,0xfe, -0xe0,0x41,0x3b,0x4c,0xe0,0x43,0x3a,0x95,0xe0,0x43,0x3b,0x9c,0x38,0xf3,0xe0,0x0, -0x4, 0x4e,0xe0,0xd, 0x39,0xab,0xe2,0x0, 0xce,0x80,0xe0,0x0, 0x5, 0x7f,0xe0,0x2f, -0x3f,0xbd,0xe0,0x43,0x3f,0x9f,0x2a,0x13,0xe2,0x0, 0xcf,0x9e,0xe0,0x0, 0x2, 0x5b, -0x16,0xe2,0xe0,0x2f,0x3f,0xed,0x3e,0xee,0xe4,0x0, 0xc7,0x3, 0x3f,0x1f,0xe4,0x0, -0xc7,0x83,0xe6,0x4e,0xcf,0xe, 0x3f,0x9d,0xe6,0x4e,0xcf,0x8f,0x38,0xe9,0x39,0x68, -0xc0,0xfe,0xc1,0x7e,0x3e,0xeb,0xe0,0x0, 0x2e,0xc9,0xe0,0xe, 0x35,0xa1,0x3c,0x9e, -0xe3,0xff,0xc7,0xff,0x3c,0x1e,0x3d,0xfa,0x3f,0x6d,0xe0,0xd, 0x3f,0x9d,0xe3,0xff, -0xc6,0xff,0xe0,0x0, 0x4, 0xc6,0xb, 0xe1,0x39,0xe1,0x9f,0x93,0x99,0x83,0xc0,0x82, -0x3f,0xa3,0xe0,0x43,0x3f,0x9f,0x3f,0xfc,0x5, 0xa, 0x3f,0xe5,0x3f,0x1f,0x3f,0xed, -0xc7,0x81,0x3e,0xef,0xe2,0x1, 0xc6,0xff,0xe7,0xff,0x0, 0x97,0x3f,0xf4,0x3, 0x77, -0x3f,0xe2,0x0, 0xf5,0x17,0x0, 0xe7,0xff,0x0, 0x9d,0x39,0x61,0xc1,0x1, 0x31,0x21, -0x39,0x19,0x9e,0x82,0xe0,0x40,0x99,0x12,0x3e,0xa2,0xe0,0x43,0x3e,0x9d,0x3e,0xfc, -0x5, 0xa, 0x3e,0xe7,0x3f,0x9d,0x3e,0xe1,0xc6,0x81,0x38,0xed,0xe2,0x1, 0xc0,0xff, -0xe7,0xff,0x0, 0x9e,0x3e,0xf6,0x3, 0x77,0x3e,0xe5,0x0, 0xf5,0x3f,0xe4,0xe7,0xff, -0x0, 0xa9,0x17,0x9e,0xe7,0xff,0x0, 0xa9,0xe0,0x80,0x9e,0x11,0xe0,0xac,0x3e,0x8e, -0xc6,0xff,0xe0,0x80,0xb6,0x12,0xe2,0x1, 0xc6,0xff,0xe7,0xff,0x0, 0xae,0xe1,0x80, -0x96,0x19,0xe0,0xe, 0x3e,0x2e,0xe1,0x80,0xb7,0x18,0x3f,0x6b,0xc7,0x1, 0x3d,0xee, -0xe2,0x1, 0xc5,0xff,0xe7,0xff,0x0, 0xa9,0x22,0x62,0x17,0x80,0xe7,0xff,0x0, 0x98, -0x8, 0xb6,0xe0,0x4, 0x1f,0xb4,0xe0,0x2, 0x19,0xec,0x8e,0xdf,0x3b,0x68,0x3a,0xe9, -0xe0,0xc, 0x36,0xa1,0x3f,0x63,0x11,0x0, 0xe0,0xff,0x15,0xfe,0xe7,0x0, 0x15,0x2, -0x39,0x7d,0x1, 0xb0,0xe0,0x2, 0x1d,0x6c,0xe0,0x2, 0x1c,0x6b,0x16,0x0, 0x15,0x86, -0x3c,0xe6,0xe0,0x6, 0xdc,0xc6,0x12,0x0, 0xe0,0x2, 0x1e,0xeb,0xe0,0xff,0x17,0x7e, -0x3f,0xe4,0x39,0x7f,0x1, 0xaa,0xe0,0xe, 0x31,0x21,0x17,0x80,0xe0,0xff,0x16,0xfe, -0xe7,0x0, 0x16,0x2, 0x39,0x7f,0x1, 0xab,0xe0,0x2, 0x1d,0x6c,0xe0,0x2, 0x1c,0x6b, -0x16,0x0, 0x15,0x84,0x3c,0xe6,0xe0,0x6, 0xdc,0xac,0x3f,0xe4,0xe0,0x43,0xc7,0xa8, -0xe0,0xe, 0x37,0xa1,0xe0,0x2, 0x1f,0xf8,0x3c,0x64,0x3f,0x9e,0x97,0x8f,0xb7,0x85, -0xb, 0x61,0xe0,0xf, 0x3f,0x1c,0xb5,0x8e,0xc7,0x2, 0xb5,0xf, 0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xc5,0xe1,0x80,0x96,0x1d,0x3e,0x7e,0x3, 0x3, -0x3a,0x6f,0x3f,0x6c,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xcc,0xe0,0xb, 0x39,0x9e, -0xb6,0x83,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xb6,0xb, 0xc1,0x82,0x0, 0xcc,0x8, 0xb6, -0xe0,0x4, 0x1f,0xb4,0xe0,0x2, 0x19,0xec,0x8e,0xcf,0x3b,0x68,0x3a,0xe9,0xe0,0xc, -0x36,0xa1,0x3f,0x63,0x11,0x0, 0xe0,0xff,0x15,0xfe,0xe7,0x0, 0x15,0x2, 0x39,0x7d, -0x1, 0xb0,0xe0,0x2, 0x1d,0x6c,0xe0,0x2, 0x1c,0x6b,0x16,0x0, 0x15,0x82,0x3c,0xe6, -0xe0,0x6, 0xdc,0x67,0x12,0x0, 0xe0,0x2, 0x1e,0xeb,0xe0,0xff,0x17,0x7e,0x3f,0xe4, -0x39,0x7f,0x1, 0xaa,0xe0,0xe, 0x31,0x21,0x17,0x80,0xe0,0xff,0x16,0xfe,0xe7,0x0, -0x16,0x2, 0x39,0x7f,0x1, 0xab,0x16,0x0, 0xe0,0x2, 0x1d,0x6c,0xe0,0x2, 0x1c,0x6b, -0x3d,0xec,0x3c,0xe6,0xe0,0x6, 0xdc,0x4d,0x3f,0xe4,0xe0,0x43,0xc7,0xa8,0xe0,0xe, -0x37,0xa1,0xe0,0x2, 0x1f,0xf8,0x3c,0x64,0x3f,0x9e,0x97,0x8f,0xb7,0x85,0xb, 0x61, -0xe0,0xf, 0x3f,0x1c,0xb5,0x8e,0xc7,0x2, 0xb5,0xf, 0x3f,0xe2,0xc7,0x81,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0x0, 0xc5,0xe1,0x80,0x96,0x1d,0x3e,0x7e,0x3, 0x3, 0x3a,0x6f, -0x3f,0x6c,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xcc,0xe0,0xb, 0x39,0x9e,0xb6,0x83, -0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xb6,0xb, 0xc1,0x82,0x0, 0xcc,0x8, 0xb5,0xe0,0x4, -0x1f,0xb4,0x16,0x80,0x8d,0x5f,0x8a,0x4f,0xe0,0x2, 0x1f,0xea,0xe0,0x2, 0x1d,0xeb, -0xa1,0x8f,0xe0,0x2, 0x35,0x21,0x38,0xed,0x3f,0xed,0xe2,0x1, 0xc7,0xff,0x3d,0x7f, -0x5, 0x99,0xe0,0xe, 0x36,0xa1,0x3f,0x13,0x3e,0x61,0x17,0x80,0x0, 0x8b,0x94,0xe, -0xc7,0x81,0xe0,0x41,0x3a,0xa8,0x3a,0xf9,0xe2,0x1, 0xc7,0xff,0x3f,0x12,0xe0,0x6c, -0x3a,0x28,0x3f,0xf4,0xe0,0x41,0x3c,0xac,0x1, 0xf3,0xe1,0x80,0xb4,0x9b,0xc6,0x81, -0x0, 0xe4,0xe0,0x2, 0x1c,0xeb,0x15,0x80,0x3c,0x69,0xdd,0x18,0xe0,0x2, 0x1c,0xeb, -0xe0,0x2, 0x1c,0x69,0x3d,0x62,0xa, 0xa1,0xe7,0xee,0x0, 0xc6,0x8, 0xb7,0xe0,0x4, -0x1f,0xb4,0x3b,0x68,0x8e,0xdf,0x12,0x80,0xe0,0x4, 0x36,0xc1,0xf0,0x0, 0x8b,0xcf, -0xf0,0x5, 0x1a,0x1a,0xe6,0xd1,0xcb,0x8a,0xe0,0x16,0x3e,0xa4,0xe0,0x15,0x36,0xa1, -0xc3,0x7e,0xc4,0xff,0x3e,0x65,0xe8,0x40,0x3e,0x77,0x1, 0x82,0xb, 0xe1,0xe0,0x80, -0x8f,0x99,0x3a,0x7f,0x5, 0xbd,0x39,0x67,0x3d,0xea,0xf0,0x40,0x39,0xe6,0x17,0x0, -0xe0,0x41,0x39,0xcb,0xf0,0x0, 0xc1,0x82,0x3f,0xee,0xf0,0x41,0x39,0x4b,0xe0,0x43, -0x39,0x93,0xf0,0x43,0x38,0x9b,0x3a,0x7f,0x1, 0xae,0xe0,0x2e,0x3f,0x34,0x38,0xe6, -0x15,0x80,0x3f,0xfb,0x1, 0xb8,0xe0,0xe, 0x3a,0x9f,0xe0,0x13,0x37,0x21,0xf0,0x41, -0x39,0x42,0xf0,0x13,0x39,0x98,0x38,0xef,0x15,0x80,0xf0,0x41,0x38,0xc2,0xf8,0x43, -0x39,0x12,0xf0,0x43,0x38,0x12,0x38,0xfd,0x4, 0xae,0xe8,0xe, 0x3f,0x14,0x37,0x21, -0xe8,0x2b,0x3d,0xb6,0x3f,0x18,0x3f,0xfd,0x4, 0xb7,0x3f,0xec,0xc7,0x81,0x3e,0x6f, -0xe2,0x1, 0xc6,0x7f,0x3a,0x9d,0xe8,0x6, 0x3b,0x15,0xe7,0xff,0x0, 0xbe,0x39,0x6a, -0x3d,0xe7,0x0, 0xc4,0xe9,0x80,0x90,0x93,0x38,0xfb,0x5, 0x8, 0xe8,0x40,0x38,0xe1, -0xc7,0x81,0x3f,0x11,0xe2,0x1, 0xc7,0xff,0x0, 0xc7,0xe8,0x40,0x38,0xf2,0x3, 0x79, -0x38,0xe3,0x0, 0xf7,0xe0,0x80,0x99,0x91,0xc5,0x81,0x39,0xae,0xe2,0x1, 0xc5,0xff, -0xb1,0x81,0x0, 0xc0,0xe9,0x80,0x91,0x93,0x39,0xf2,0x5, 0x8, 0xe8,0x40,0x39,0xe0, -0xc0,0x81,0x3d,0x93,0xe2,0x1, 0xc0,0xff,0x0, 0xc7,0xe8,0x40,0x39,0xf1,0x3, 0x79, -0xe8,0x40,0x39,0xe2,0x0, 0xf6,0xe0,0x80,0x98,0x9e,0xc7,0x81,0x38,0xab,0xe2,0x1, -0xc7,0xff,0xb0,0x8e,0x0, 0xc1,0x8, 0xb6,0xe0,0x4, 0x1f,0xb4,0x17,0x0, 0x8d,0x5f, -0x8a,0xcf,0x3b,0x6a,0xe0,0xff,0x11,0xff,0xc3,0x7e,0x3f,0x75,0x3, 0xa4,0xe0,0x4, -0x3d,0x3e,0x3d,0xe3,0x16,0x0, 0x17,0x82,0x0, 0x93,0xe0,0xd, 0x3a,0x1f,0x36,0xa1, -0x3e,0x98,0x96,0x8d,0xe0,0x41,0x38,0xab,0xe0,0x41,0x39,0x2d,0x39,0x71,0xe0,0x6b, -0x3c,0x2d,0x39,0x71,0xe0,0x6c,0x3c,0x2f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x3f,0xf6, -0x4, 0x6d,0xe0,0xf, 0x3c,0x9e,0xae,0xf, 0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, -0xc7,0x7f,0x0, 0xdc,0xb, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xe0,0x4, 0x1f,0xb4, -0x3a,0xe9,0x8a,0x5f,0x8b,0x4f,0xc2,0xff,0xe0,0x7, 0x32,0x21,0x39,0xe8,0x11,0x0, -0xf0,0x40,0x3c,0x6b,0x39,0x76,0x1, 0x84,0xf8,0x0, 0xc, 0x28,0xb, 0xe1,0xe0,0x80, -0x8f,0x95,0x3c,0xe3,0x3d,0xef,0x3c,0x63,0xe8,0x40,0x3e,0x68,0x3d,0x64,0xdd,0x77, -0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x39,0x97,0x0, 0xec,0xe0,0x4, -0x1f,0xb4,0xe0,0x2, 0x1f,0x6b,0x8e,0xcf,0x17,0x80,0x3f,0xfd,0x1, 0x89,0xe0,0x2, -0x1d,0x6b,0xe0,0xb, 0x34,0xc1,0x16,0x0, 0x3c,0xe8,0xe0,0xd6,0x0, 0xdc,0xc7,0x81, -0xe1,0x80,0xb4,0x9e,0xe2,0x1, 0xc7,0xff,0x0, 0xf1,0x8, 0xb7,0xe0,0x4, 0x1f,0xb4, -0x3a,0x69,0xe2,0x0, 0xc2,0x4, 0x8f,0x4f,0xe2,0x0, 0xca,0x0, 0x8f,0xdf,0xe0,0x2, -0x19,0xec,0xe0,0x6f,0x39,0x2e,0x3b,0xeb,0x3b,0x6c,0x3a,0xe8,0x3f,0x6f,0xe0,0xc, -0x37,0xa1,0x3e,0xe3,0x11,0x0, 0xe0,0x41,0x3d,0xca,0x39,0x7e,0x1, 0xac,0xe0,0x2, -0x1d,0x6c,0xe0,0x2, 0x1c,0x6b,0x16,0x0, 0x3d,0xe4,0x3c,0xe5,0xe0,0x6, 0xda,0xd1, -0xe2,0x0, 0xcb,0x81,0x1, 0x8f,0xe0,0xd, 0x31,0x21,0x17,0x0, 0x39,0x7e,0x1, 0xa6, -0xe0,0x2, 0x1d,0x6c,0xe0,0x2, 0x1c,0x6b,0x16,0x0, 0x3d,0xe4,0x3c,0xe5,0xe0,0x6, -0xda,0xc0,0x17,0x80,0xe0,0x2, 0x1f,0x68,0x3e,0xef,0x39,0x7f,0x1, 0xa8,0xe2,0x0, -0xcb,0x1, 0x1, 0xaf,0xe0,0x2, 0x1d,0x6b,0x3d,0xe4,0x3c,0xe5,0x3c,0x65,0xb, 0xa1, -0xe0,0xd6,0x0, 0xbf,0xe0,0xf, 0x3e,0x9c,0xb5,0xd, 0xc6,0x82,0xb5,0x8f,0x3f,0xe2, -0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xc9,0xe0,0x45,0x97,0xa3,0xe0,0xc, -0x39,0x9d,0xe0,0x41,0x3f,0xaf,0xb7,0x83,0xe0,0x41,0x3f,0xcf,0xb7,0x8c,0x3f,0xee, -0xc7,0x81,0x3f,0x6f,0xc1,0x82,0xe2,0x1, 0xc7,0x7f,0x0, 0xc9,0xe0,0x80,0x96,0x1e, -0xe2,0xff,0xce,0x7f,0x1, 0x82,0xb6,0x8e,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xce, -0xe0,0x2, 0x1d,0x6b,0x3e,0x64,0x15,0x88,0x3c,0xe5,0x3c,0x65,0xb, 0xa1,0xe0,0xd5, -0x0, 0xe2,0x3f,0xe9,0xc7,0xff,0xe6,0xd8,0xcf,0xff,0x3f,0x6a,0x3f,0x98,0x3f,0xf8, -0x1, 0x87,0xe0,0x28,0x3f,0x39,0xb5,0xf, 0xe0,0x43,0x3c,0x18,0x38,0x82,0xe0,0xc0, -0x96,0x9f,0x3f,0x1d,0xb6,0x9f,0x0, 0xf4,0x8, 0xb2,0xe0,0x3, 0x19,0x28,0xe0,0x3, -0x1c,0x47,0x95,0x32,0x14,0x94,0xdf,0xe6,0xe3,0xff,0xc4,0x7f,0xe0,0x4, 0x1f,0xcb, -0xe2,0x0, 0xcc,0x9, 0xb4,0xf, 0xe0,0x4, 0x1f,0x87,0x2, 0x88,0x17,0x0, 0xaf,0xf, -0x14,0xa, 0x9f,0xb2,0xe1,0x28,0x3f,0x98,0x9, 0x61,0xe2,0x0, 0xcc,0x27,0x2, 0x83, -0x17,0x1, 0x0, 0xf6,0xe2,0x0, 0xcc,0x4f,0x2, 0x83,0x17,0x2, 0x0, 0xf1,0x17,0x3, -0x0, 0xef,0x8, 0xb2,0xe0,0x3, 0x19,0x28,0xe0,0x4, 0x1c,0x35,0x95,0x12,0x14,0x94, -0xdf,0xc1,0xe3,0xff,0xc4,0x7f,0xe0,0x3, 0x1f,0xbf,0xe2,0x0, 0xcc,0x4, 0xb4,0xf, -0xe0,0x0, 0x1f,0xa8,0x2, 0x88,0x17,0x0, 0xaf,0xf, 0x14,0x5, 0x9f,0x92,0xe1,0x28, -0x3f,0x98,0x9, 0x61,0xe2,0x0, 0xcc,0x9, 0x2, 0x83,0x17,0x1, 0x0, 0xf6,0xe2,0x0, -0xcc,0x27,0x2, 0x83,0x17,0x2, 0x0, 0xf1,0x17,0x3, 0x0, 0xef,0x3f,0xe9,0xc7,0xfe, -0xc5,0x7e,0xc4,0x7e,0xe0,0x0, 0xc4,0xfa,0xe0,0x80,0x9f,0x1f,0xe0,0x80,0x9e,0x9a, -0x3f,0xf9,0x3f,0x1d,0xe0,0x80,0xb7,0x18,0x1, 0xf8,0x38,0x82,0x8, 0xb1,0xc0,0x48, -0x17,0x80,0xe2,0x0, 0xcd,0x1, 0x2, 0x9d,0xe0,0x4, 0x1e,0xb4,0x17,0x1, 0x6f,0x4, -0xe0,0x43,0x3c,0x99,0x8f,0x5d,0x8e,0xcd,0x3f,0x1d,0x6f,0x5, 0x17,0x7, 0xe1,0x2f, -0x3f,0xde,0x6f,0x86,0xeb,0xff,0xcf,0xfc,0x3c,0x1f,0x34,0x41,0x17,0x80,0x7c,0x4, -0x7c,0x6, 0xe2,0x0, 0x7c,0x4, 0x77,0x86,0xe0,0xc, 0xd4,0xd5,0xc0,0x38,0x8, 0xe1, -0xe6,0xf7,0xcf,0xa, 0xc7,0x81,0x3d,0x6e,0xe2,0x1, 0xc7,0xff,0x0, 0xdb,0x8, 0xb5, -0xe0,0x1, 0x17,0x80,0xe1,0x2b,0x3d,0xdf,0x17,0x82,0x39,0xe8,0x3a,0x69,0x3a,0xea, -0xe1,0x2b,0x3d,0xef,0x17,0x0, 0xe6,0xf7,0xcf,0x8b,0x3d,0xef,0x3f,0xee,0xc7,0x81, -0xe2,0x0, 0xcd,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x1, 0xf6,0xe0,0xf, 0x35,0xbe, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe0,0x9, 0x39,0x25,0x3d,0x62,0x3c,0x63,0xe3,0xff, -0xc4,0xff,0xdf,0xb5,0x3d,0x62,0x3c,0xe5,0x3c,0x64,0xdf,0xb1,0x3d,0x64,0x3c,0xe3, -0x3c,0x63,0xa, 0xa1,0xe7,0xff,0x0, 0x9c,0x8, 0xb1,0xc0,0x48,0x17,0x80,0xe2,0x0, -0xcd,0x1, 0x2, 0x9b,0xe0,0x4, 0x1f,0x34,0xe0,0x43,0x3c,0x99,0x8e,0xee,0x8f,0x5e, -0x6e,0x84,0x6f,0x5, 0x17,0x7, 0xe1,0x2f,0x3f,0xde,0x6f,0x86,0xeb,0xff,0xcf,0xfc, -0x3c,0x1f,0x34,0x41,0x17,0x80,0x7c,0x4, 0x7c,0x6, 0xe2,0x0, 0x7c,0x4, 0x77,0x86, -0xe0,0xc, 0xd4,0x81,0xc0,0x38,0x8, 0xe1,0xe6,0xf7,0xcf,0xa, 0xc7,0x81,0x3d,0x6e, -0xe2,0x1, 0xc7,0xff,0x0, 0xdd,0x8, 0xb5,0xe0,0x1, 0x17,0x80,0xe1,0x2b,0x3d,0xdf, -0x17,0x82,0x39,0xe8,0x3a,0x69,0x3a,0xea,0xe1,0x2b,0x3d,0xef,0x17,0x0, 0xe6,0xf7, -0xcf,0x8b,0x3d,0xef,0x3f,0xee,0xc7,0x81,0xe2,0x0, 0xcd,0x81,0x3f,0x6f,0xe2,0x1, -0xc7,0x7f,0x1, 0xf6,0xe0,0xf, 0x35,0xbe,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe0,0x9, -0x39,0x25,0x3d,0x62,0x3c,0x63,0xe3,0xff,0xc4,0xff,0xdf,0xb7,0x3d,0x62,0x3c,0xe5, -0x3c,0x64,0xdf,0xb3,0x3d,0x64,0x3c,0xe3,0x3c,0x63,0xa, 0xa1,0xe0,0xd1,0x0, 0xaf, -0xe0,0x3, 0x1f,0xfc,0x17,0x0, 0xaf,0xf, 0x38,0x82,0x8, 0xb7,0xe0,0x3, 0x1a,0xfc, -0xe0,0x4, 0x1b,0xe4,0x89,0x5, 0x21,0x5, 0x89,0x7, 0xc1,0x1, 0xe6,0xfe,0xc9,0x62, -0x3a,0x62,0xe4,0x16,0xc2,0x52,0xe0,0x3, 0x1b,0x5, 0xe0,0x2, 0x1c,0xf4,0xe0,0x3, -0x3a,0x16,0x3c,0x63,0xe0,0x6, 0xd8,0xdd,0x3c,0x64,0xe0,0x2, 0x1c,0xe7,0xe0,0x13, -0xc4,0x58,0xe0,0x0, 0x15,0x7c,0x3c,0x16,0xef,0xff,0xd4,0x9e,0x3c,0x64,0xe0,0x2, -0x1c,0xe6,0xe0,0x14,0xc4,0x54,0xe0,0x0, 0x15,0x7c,0x3c,0x16,0xef,0xff,0xd4,0x94, -0x3c,0x64,0xe0,0x15,0xc4,0x50,0xe0,0x2, 0x1c,0xe9,0xe0,0x0, 0x15,0x7c,0x3c,0x16, -0xef,0xff,0xd4,0x8a,0xe0,0x3, 0x1f,0xa8,0x3f,0x63,0x9e,0x9f,0xe0,0x16,0xc7,0x4c, -0xb6,0x8e,0x9f,0x3f,0x3f,0xe3,0xe0,0x16,0xc7,0xce,0xb7,0xf, 0xe0,0x16,0xc1,0xd0, -0xe0,0x0, 0x1f,0xae,0xa9,0x7, 0x8f,0x8f,0xb7,0x83,0x8f,0x85,0xe2,0x0, 0xcf,0x83, -0x2, 0x83,0xc7,0x81,0xaf,0x85,0xb, 0xe1,0xe0,0x3, 0x1f,0xfc,0x8f,0x8f,0x3f,0xf8, -0xe0,0x0, 0x5, 0xc7,0x8, 0xb4,0xe2,0x0, 0xcc,0x2, 0x39,0xe8,0x1, 0x98,0xe0,0x4, -0x1f,0xe4,0xe0,0x3, 0x1d,0x5, 0x8f,0x8f,0xc7,0x83,0xe6,0xfe,0xcf,0xef,0xe4,0x16, -0xc7,0xd2,0x3d,0x1f,0xe0,0x2, 0x1c,0xf4,0x3c,0x69,0xe0,0x6, 0xd8,0x40,0xe0,0x2, -0x1c,0x74,0x3d,0x63,0x14,0x81,0xa, 0x21,0xe7,0xfe,0x0, 0xb8,0xe2,0x0, 0xcc,0x4, -0x1, 0xa6,0xe0,0x4, 0x1f,0xe4,0xe0,0x3, 0x1a,0x5, 0x89,0xf, 0xe0,0x2, 0x1c,0xf4, -0x3d,0x62,0xc5,0x3, 0xe6,0xfe,0xcd,0x6a,0xe4,0x16,0xc5,0x52,0x3c,0x69,0x3d,0x14, -0xe0,0x6, 0xd8,0x25,0x3d,0x62,0xc5,0x2, 0xe6,0xfe,0xcd,0x6a,0xe0,0x2, 0x1c,0xf4, -0xe4,0x16,0xc5,0x52,0x3c,0x69,0x3d,0x14,0xe0,0x6, 0xd8,0x19,0x3d,0x62,0xc5,0x1, -0xe6,0xfe,0xcd,0x6a,0xe4,0x16,0xc5,0x52,0x3d,0x14,0x0, 0xcd,0xa, 0x61,0x38,0x82, -0xe0,0x3, 0x1f,0xfc,0x8f,0x8f,0x3f,0xf8,0xe0,0x0, 0x5, 0xec,0x8, 0xb7,0xf8,0x0, -0xc, 0x39,0xe2,0x0, 0xcc,0x2, 0x1, 0xa4,0xe0,0x4, 0x1f,0xe4,0xe0,0x3, 0x1a,0x84, -0x8f,0x8f,0xe0,0x2, 0x1b,0xe7,0xc7,0x83,0xe6,0xfe,0xcf,0xef,0xe4,0x16,0xc7,0xd2, -0x11,0x80,0x3a,0x9f,0x39,0x68,0x13,0x1, 0xe0,0x4, 0x3b,0x93,0xe0,0xa, 0x3a,0x93, -0x3c,0xe4,0x3c,0x64,0xde,0x84,0x3d,0x62,0x3c,0xe6,0x3c,0x64,0xde,0x90,0xe0,0x0, -0xc1,0xfc,0xe2,0x2, 0xc9,0xf4,0x1, 0xf1,0xf8,0x0, 0xc, 0xa8,0xb, 0xe1,0xe2,0x0, -0xcc,0x4, 0x1, 0xfb,0xe0,0x4, 0x1f,0xe4,0xe0,0x3, 0x1a,0x4, 0x8f,0x8f,0xf0,0x2, -0x1c,0xe7,0x39,0xef,0xc1,0x83,0xe6,0xfe,0xcf,0x63,0x3b,0x6f,0x39,0xef,0xc3,0x2, -0xc1,0x81,0xe6,0xfe,0xcb,0x66,0xe6,0xfe,0xc9,0xe3,0xe4,0x16,0xc7,0x52,0xe4,0x16, -0xc3,0x52,0xe4,0x16,0xc1,0xd2,0x3a,0x1e,0x13,0x80,0x3b,0x2e,0x39,0xae,0x39,0x68, -0xf0,0x0, 0x14,0x1, 0xf0,0x5, 0x3c,0x97,0x3d,0x64,0x3c,0xe5,0x3c,0x65,0xde,0x4f, -0xe0,0xa, 0x3b,0x14,0x3c,0xe5,0x3c,0x65,0xde,0x4a,0xe0,0xa, 0x39,0x94,0x3c,0xe5, -0x3c,0x65,0xde,0x45,0x3d,0x62,0xe8,0x40,0x3c,0xe8,0x3c,0x65,0xde,0x50,0xe0,0x0, -0xc3,0xfc,0xe2,0x2, 0xcb,0xf4,0xe0,0x0, 0xc2,0x7c,0x1, 0xe5,0xe7,0xff,0x0, 0xbe, -0x38,0x82,0x3f,0xe8,0xc7,0x83,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x83,0x2, 0xb1, -0xe0,0x3, 0x1f,0xfc,0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0x5, 0xab,0x8, 0xb3,0xe0,0x4, -0x1f,0xe4,0xe0,0x3, 0x19,0x85,0x89,0xf, 0xe0,0x0, 0x15,0x7c,0x39,0x28,0xe6,0xfe, -0xc9,0x62,0xe4,0x16,0xc1,0x52,0xe0,0x2, 0x1c,0x67,0x3c,0xe2,0xe0,0x13,0xc4,0xd8, -0x3c,0x93,0xef,0xff,0xd3,0x91,0x3c,0xe2,0xe0,0x14,0xc4,0xd4,0xe0,0x2, 0x1c,0x66, -0x3c,0x93,0xe0,0x0, 0x15,0x7c,0xef,0xff,0xd3,0x87,0x3c,0xe2,0xe0,0x15,0xc4,0xd0, -0xe0,0x2, 0x1c,0x69,0xe0,0x0, 0x15,0x7c,0x3c,0x93,0x9, 0xa1,0xe7,0xe6,0x0, 0xfc, -0x38,0x82,0x8, 0xb3,0x39,0xe8,0x39,0x69,0xde,0xb9,0xe2,0x0, 0xc9,0x81,0x5, 0x85, -0x14,0x4, 0xe1,0x28,0x39,0xd8,0xdf,0x1, 0xe2,0x0, 0xc9,0x1, 0x5, 0x87,0x14,0x4, -0xe1,0x28,0x39,0x58,0x9, 0xa1,0xe7,0xfe,0x0, 0xc5,0x9, 0xe1,0x8, 0xb2,0xe0,0x3, -0x1c,0x74,0xe0,0x13,0x15,0x58,0x14,0x80,0xef,0xff,0xd3,0x96,0xe0,0x0, 0x11,0x7c, -0xe0,0x3, 0x1c,0x73,0x3d,0x62,0x14,0x80,0xef,0xff,0xd3,0x8e,0xe0,0x3, 0x1c,0x72, -0x3d,0x62,0x14,0x80,0xef,0xff,0xd3,0x88,0xe0,0x3, 0x1c,0x71,0x3d,0x62,0x14,0x80, -0xef,0xff,0xd3,0x82,0xe0,0x3, 0x1f,0x70,0x17,0x80,0xb7,0x8e,0xe0,0x3, 0x1f,0x6f, -0xb7,0x8e,0xe0,0x3, 0x1f,0x6e,0xb7,0x8e,0x9, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b, -0xe0,0x4, 0x1f,0xb4,0xe2,0x0, 0xcc,0x1, 0x3a,0xe9,0xf0,0x0, 0x8c,0x5f,0x5, 0x96, -0xe0,0x2, 0x19,0xea,0x3d,0xe8,0x39,0x68,0xa4,0x83,0xe0,0x3, 0x1c,0x74,0x15,0x1, -0xde,0x3b,0x16,0x1, 0xe0,0x3, 0x1c,0x74,0x14,0x80,0x3d,0xec,0x3d,0x62,0xdc,0xd6, -0xe0,0x3, 0x1c,0xf4,0xa4,0x3, 0xe0,0x6, 0xd7,0x54,0xe2,0x0, 0xca,0x81,0x5, 0xab, -0xf0,0x3, 0x1c,0xf3,0xf0,0x2, 0x1d,0x67,0x11,0x0, 0x13,0x1, 0xf0,0x40,0x3d,0xe5, -0xe0,0x0, 0x13,0xfc,0x39,0xe2,0xe4,0x0, 0xc1,0xfc,0x3d,0xe5,0xf0,0x4, 0x3c,0x93, -0xe8,0x3, 0x39,0x9a,0x3d,0x66,0x3c,0xe3,0x3c,0x64,0xdd,0xc2,0xe2,0x0, 0xc9,0x2, -0x1, 0x9, 0x3e,0x66,0x15,0x81,0xe8,0x40,0x3d,0x6b,0xe8,0x40,0x3c,0xe8,0x3c,0x64, -0xd8,0xed,0x3d,0x67,0x3c,0xe4,0x3c,0x63,0xef,0xff,0xd2,0xf6,0xc1,0x1, 0xe2,0x0, -0xc9,0x3, 0x1, 0xe1,0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0x8, 0xb3,0xe0,0x0, 0x16,0x64, -0xe0,0xb, 0x34,0xc1,0x3d,0x69,0x39,0x69,0x3c,0xe8,0x39,0xe8,0xd9,0xf0,0x16,0x1, -0x3d,0xec,0xe0,0xff,0x15,0x7f,0x3c,0xe2,0x3c,0x63,0xd8,0xd0,0xe0,0x5, 0x1f,0x92, -0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0x1, 0x87,0x14,0x0, 0xc1,0xfe,0x3f,0xe8,0x3f,0xf2, -0x1, 0x9b,0x9, 0xe1,0xe0,0x2, 0x1f,0xc3,0xe0,0x2, 0x18,0xf8,0x94,0xaf,0x17,0x80, -0x3c,0x6f,0x3e,0xef,0x3e,0x6f,0x17,0x1, 0xc1,0x7f,0x3f,0x72,0x4, 0x18,0x26,0x3, -0xe1,0x28,0x3c,0x3c,0x26,0x83,0xe1,0x2f,0x3f,0xbd,0x3c,0x7f,0x5, 0xab,0x3c,0x2f, -0xe3,0xff,0xc4,0x7f,0x0, 0xe7,0xe0,0x80,0x97,0x13,0x3c,0x7e,0x3, 0x4, 0x3c,0x6e, -0xe3,0xff,0xc4,0x7f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xda,0x3d,0x6e,0xe0,0x2, -0xc5,0x36,0x35,0x21,0x3d,0x11,0xe0,0xb, 0x37,0x21,0x95,0xa, 0x3d,0x93,0x95,0x8b, -0x3d,0x79,0xe0,0x41,0x3d,0xab,0x4, 0x9, 0xc6,0x1, 0x3c,0x1b,0xe2,0x1, 0xc6,0x7f, -0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0x0, 0xd2,0xc6,0x81,0x3f,0x9b,0xe2,0x1, 0xc6,0xff, -0x0, 0xf8,0x14,0x0, 0xe7,0xff,0x0, 0xbf,0x3e,0x68,0xe0,0xd, 0x34,0xc1,0xc6,0x2, -0x17,0x0, 0x17,0x81,0x3e,0xff,0x2, 0x9a,0x3f,0xed,0xc7,0xff,0xe0,0x2e,0x3f,0x3f, -0x3d,0x6d,0xe0,0x43,0x3f,0x1e,0x17,0x80,0xc4,0xfe,0x3e,0xf9,0x4, 0x19,0xe0,0x8, -0x3c,0xaa,0xe0,0x28,0x3f,0xb8,0xe0,0x41,0x3f,0x2e,0xe0,0x43,0x3c,0x18,0xe0,0x41, -0x3c,0x28,0x3c,0x1e,0xe3,0xff,0xc4,0x7f,0x38,0x82,0x3d,0x6c,0x95,0x9a,0x95,0xa, -0xc7,0x81,0x3d,0xaa,0xc6,0x2, 0x3f,0x1b,0xe2,0x1, 0xc7,0xff,0x0, 0xdc,0xc6,0x81, -0xe0,0xc, 0x36,0xa1,0x3e,0x18,0x95,0x8c,0xe0,0x40,0x96,0x1c,0xe2,0x1, 0xc6,0xff, -0xe0,0xc, 0x3d,0xac,0x3f,0x9c,0x0, 0xda,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xe1,0xff, -0xc0,0x4, 0xf0,0x4, 0x1c,0xb4,0x39,0x6a,0xe8,0x0, 0x8a,0xd9,0xe0,0x0, 0x15,0x7c, -0x3a,0x68,0xe2,0x0, 0x7c,0x4, 0x39,0xeb,0xf0,0x40,0x3c,0x6c,0xf0,0x40,0x3d,0x6d, -0xe8,0x0, 0x8b,0x49,0xef,0xff,0xd2,0x40,0xe0,0x0, 0x15,0xe4,0x3d,0x63,0x3c,0xe5, -0xe2,0x0, 0x7c,0x4, 0xd8,0x88,0xe0,0x7, 0x32,0xa1,0xe2,0x0, 0x7c,0x4, 0xe0,0x0, -0x15,0xe4,0x3d,0x62,0x3c,0xe6,0x3c,0x17,0xd8,0x7e,0xe8,0x13,0x8f,0xb9,0x37,0xc7, -0x27,0xb5,0x16,0x1, 0x3d,0xec,0x3c,0xe3,0x3c,0x64,0xe0,0x7, 0x15,0x68,0xd8,0x16, -0x3f,0xe5,0xc7,0xff,0x3c,0x63,0x3f,0xa3,0xc4,0x1, 0x3c,0xef,0x16,0x1, 0x34,0x21, -0x3d,0xec,0x3c,0x14,0xe0,0x7, 0x15,0x68,0xe2,0x1, 0xc4,0xff,0xd8,0x7, 0x16,0x1, -0x3d,0xec,0x3c,0xe2,0xe0,0x8, 0x3a,0x17,0xe0,0x7, 0x15,0x68,0xef,0xff,0xd7,0xff, -0x3c,0x62,0xc3,0x7f,0xc4,0x1, 0x3b,0x22,0x3c,0x15,0x16,0x1, 0x3c,0xe6,0x34,0x21, -0x3d,0xec,0xe0,0x7, 0x15,0x68,0xe2,0x1, 0xc4,0xff,0x3c,0x14,0xef,0xff,0xd7,0xef, -0xe0,0x0, 0xc0,0x7c,0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0xe0,0xf, 0x31,0xa1,0x3f,0x94, -0xf0,0x0, 0xb5,0xf, 0x3f,0xe3,0xc7,0xff,0xe0,0x43,0x3f,0x8f,0xe0,0xe, 0x37,0xa1, -0xe2,0x0, 0x7e,0x4, 0xe0,0xd, 0x37,0xa1,0xc7,0x4, 0x3e,0x94,0x3f,0x1c,0xe2,0x0, -0xcf,0x80,0x3, 0x33,0x3f,0xe3,0xc7,0x81,0xe0,0x5, 0x1d,0x9a,0xe0,0x43,0x3f,0x8f, -0x3a,0xff,0x2, 0x35,0xe0,0xf, 0x39,0x15,0xe0,0xe, 0x37,0xa1,0x3f,0x14,0xe2,0x1, -0xc7,0xff,0xf0,0x0, 0xb4,0xe, 0x3f,0x6f,0xc7,0x7f,0xe0,0x43,0x3f,0xe, 0x3a,0xfe, -0x5, 0x38,0xc7,0x81,0xe0,0x5, 0x1d,0x1a,0xe0,0x43,0x3f,0x8f,0xe0,0xb, 0x3b,0x15, -0x3f,0xfb,0xe7,0xff,0x3, 0x18,0xe0,0xe, 0x3f,0x9a,0xe0,0xc, 0x37,0xa1,0xe2,0x0, -0x7e,0x84,0x37,0x21,0x3f,0x14,0x3e,0x1d,0x9e,0xc, 0x9e,0x8e,0xc7,0x81,0x3e,0x9c, -0xe0,0x43,0x3f,0x8f,0xb6,0x9e,0x0, 0xed,0x9e,0x1d,0xe0,0xc0,0x9d,0x9e,0xc7,0xff, -0x3e,0x2b,0xe1,0xc0,0xb6,0x1d,0xe0,0x43,0x3f,0x8f,0x0, 0xc2,0xe0,0xe, 0x3f,0x9b, -0xe0,0xc, 0x37,0xa1,0xe2,0x0, 0x7e,0x84,0x37,0x21,0x3f,0x14,0x3e,0x1d,0x9e,0xc, -0x9e,0x8e,0xc7,0x81,0x3e,0x9c,0xe0,0x43,0x3f,0x8f,0xb6,0x9e,0xe7,0xff,0x0, 0xba, -0x3e,0xee,0xc6,0x81,0x36,0xa1,0xe2,0x0, 0x7e,0x4, 0xe0,0xb, 0x3a,0x1d,0x3e,0x9c, -0x9e,0x8d,0x9e,0xb, 0xc7,0x7f,0xe0,0xd, 0x3e,0x2d,0xe0,0x40,0xb6,0x9b,0xe7,0xff, -0x0, 0xb6,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xe1,0xff,0xc0,0x20,0xe0,0x4, 0x1f,0xb4, -0xe0,0x2, 0x1c,0xf8,0x8a,0xdf,0x3f,0xe8,0xe4,0x0, 0xc7,0xfc,0x39,0xef,0xe0,0x2, -0xc1,0xf4,0x39,0x99,0xe0,0x1, 0x2c,0x1b,0x39,0x68,0x3b,0x68,0x16,0x3, 0x74,0x2, -0x6c,0x6, 0x3b,0x75,0xe0,0x0, 0x1, 0xdb,0xf0,0x40,0x3c,0xe0,0x3b,0xe0,0xf0,0x0, -0xc4,0x84,0xc3,0x88,0x3a,0x62,0xf0,0x0, 0x15,0x64,0xe9,0x80,0x8f,0x99,0x3c,0xe7, -0xf0,0x40,0x3c,0x6f,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0x3d,0xe4, -0xe8,0x40,0x3d,0x68,0x3c,0x67,0xef,0xff,0xd7,0x1a,0x3d,0xe8,0x3c,0xe7,0x3c,0x67, -0xe8,0x40,0x3e,0x6a,0xe8,0x40,0x3d,0x68,0xef,0xff,0xd7,0xf6,0xe2,0x0, 0xca,0x3, -0xc3,0x9e,0x1, 0xe4,0xe0,0x2, 0x1e,0x67,0x3f,0x64,0x3b,0x72,0xe0,0x0, 0x1, 0xce, -0x16,0x1, 0x3d,0xec,0xe0,0x1, 0x15,0x16,0x3c,0xe5,0x3c,0x63,0xef,0xff,0xd7,0x27, -0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0x1, 0x91,0xe0,0x0, 0x15,0x50, -0x3c,0xe5,0x3c,0x63,0xef,0xff,0xd7,0x3, 0x15,0x32,0x3c,0xe5,0x3c,0x63,0xef,0xff, -0xd6,0xfe,0x15,0x1e,0x3c,0xe5,0x3c,0x63,0xef,0xff,0xd6,0xf9,0x3c,0xe5,0x3c,0x63, -0x15,0x14,0xef,0xff,0xd6,0xf4,0x15,0xa, 0x3c,0xe5,0x3c,0x63,0xef,0xff,0xd6,0xef, -0xe0,0x0, 0xc0,0x60,0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0xe1,0x2e,0x3b,0x4c,0xe1,0x2f, -0x3b,0x3c,0xe1,0x80,0x95,0x99,0x3e,0xef,0x3f,0xee,0xe4,0x0, 0xc7,0x8f,0xe2,0x1, -0xc6,0xff,0x3f,0x9d,0x37,0xa1,0xe2,0x0, 0x7e,0x88,0x3f,0x9d,0xb5,0x8f,0xe2,0x0, -0x7f,0x84,0x3f,0x9e,0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0x3f,0xe6,0xc7,0x81,0x3b,0x6f, -0xe2,0x1, 0xc3,0x7f,0xe7,0xff,0x0, 0x87,0xe1,0x2f,0x39,0x4e,0xe1,0x2d,0x39,0x3e, -0xe2,0x1, 0xc7,0xff,0xe4,0x0, 0xc7,0x8f,0xe2,0x1, 0xc6,0xff,0x3f,0x9d,0x37,0xa1, -0xe2,0x0, 0x7e,0x88,0x3f,0x9d,0x9f,0x8f,0xe1,0x80,0xb7,0x9c,0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe7,0xff,0x0, 0x9a,0x3c,0x9f,0x3d,0x65,0x15,0x80, -0x3c,0x63,0xef,0xff,0xd6,0x9c,0xe0,0x0, 0x1f,0xae,0xe0,0x0, 0x16,0x64,0x8f,0x8f, -0x3d,0xe8,0xe2,0x0, 0xcf,0x82,0x17,0xb2,0xe0,0x6c,0x3c,0xaf,0x3d,0x65,0x3c,0xe3, -0x3c,0x63,0xef,0xff,0xd7,0x71,0xe7,0xff,0x0, 0x85,0x8, 0xb7,0xf8,0x0, 0xc, 0x3d, -0xe1,0xff,0xc0,0x8, 0xe0,0x4, 0x1f,0xb4,0xf0,0x40,0x3c,0xe0,0x8a,0x5f,0x3a,0xe0, -0xf0,0x0, 0xc4,0x84,0xc2,0xac,0x8d,0xcf,0x39,0xe8,0xe0,0x6, 0x32,0x21,0xf0,0x40, -0x3d,0x68,0x3e,0xe5,0xe8,0x40,0x3f,0x69,0x3f,0xe8,0x11,0x0, 0x39,0x7b,0xe0,0x0, -0x1, 0xe1,0xf0,0x3, 0x1e,0x78,0xf0,0x3, 0x1e,0xf7,0xe6,0xd8,0xcb,0xf2,0xf0,0x0, -0x14,0x50,0xf8,0x1b,0x3c,0x1c,0x3d,0x67,0xe8,0x40,0x3c,0xeb,0xf8,0x8, 0x3e,0x98, -0xe0,0x6, 0xd4,0x2b,0xe2,0x0, 0x7f,0x28,0x17,0x80,0x39,0x7f,0xe0,0x0, 0x1, 0xd7, -0xf1,0xff,0xc4,0x58,0xf3,0xff,0xcc,0x58,0x1, 0xed,0x3c,0xe0,0xe0,0x3, 0x1c,0x78, -0x3d,0x67,0xc4,0x84,0xe0,0x6, 0xd4,0x19,0x3e,0xe5,0x17,0x0, 0x39,0x7e,0xe0,0x0, -0x1, 0xd1,0xe0,0x0, 0x1f,0xae,0x8f,0x8f,0x27,0xaf,0xc2,0x7f,0xe6,0xd8,0xca,0x74, -0x39,0x94,0x3e,0xe5,0x3f,0x63,0x17,0x80,0x39,0x7f,0xe0,0x0, 0x1, 0xd5,0xf0,0x0, -0x1c,0xfa,0xf0,0x0, 0x1d,0x79,0xe0,0x0, 0x12,0x50,0xe8,0x18,0x3a,0x19,0x3d,0x67, -0xe8,0x40,0x3c,0xe8,0xf0,0x8, 0x3d,0x14,0xe0,0x6, 0xd3,0xf7,0xe2,0x0, 0x7f,0x28, -0x17,0x80,0x39,0x7f,0xe0,0x0, 0x1, 0xcb,0xc2,0x58,0xe3,0xff,0xca,0x58,0x1, 0xee, -0x3c,0xe0,0xe0,0x0, 0x1c,0x7a,0x3d,0x67,0xc4,0x84,0xe0,0x6, 0xd3,0xe6,0x17,0x0, -0x39,0x7e,0xe0,0x0, 0x1, 0xc7,0xe0,0x0, 0xc0,0x78,0xf8,0x0, 0xe, 0xa8,0xb, 0xe1, -0x96,0xf, 0x3f,0x96,0xe1,0x80,0xb6,0x1e,0xe1,0x80,0xbe,0x1d,0x3e,0x62,0xc6,0x1, -0x39,0x6c,0xe2,0x1, 0xc1,0x7f,0xe7,0xff,0x0, 0x93,0xe0,0x80,0xa6,0x9e,0xe9,0x80, -0x96,0x1b,0xc7,0x81,0x3e,0x9c,0xe2,0x1, 0xc7,0xff,0xbe,0x8e,0xe7,0xff,0x0, 0x9f, -0xe1,0x80,0xa7,0x9d,0xe2,0x0, 0xcf,0x80,0x3, 0x2, 0xc7,0x83,0x37,0x82,0xe8,0x0, -0xb7,0x8a,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xf0,0x1a,0x3d,0x16, -0xe7,0xff,0x0, 0x9e,0x96,0xe, 0xc7,0x81,0xe9,0x80,0xb6,0x19,0xe2,0x1, 0xc7,0xff, -0xe1,0x80,0xbe,0x1d,0x3f,0x16,0xe7,0xff,0x0, 0xa1,0xe0,0x80,0xa6,0x9e,0xe9,0x80, -0x96,0x18,0xc7,0x81,0x3e,0x9c,0xe2,0x1, 0xc7,0xff,0xbe,0x8e,0xe7,0xff,0x0, 0xab, -0xe1,0x80,0xa7,0x95,0xe2,0x0, 0xcf,0x80,0x3, 0x2, 0xc7,0x83,0x37,0x82,0xb7,0x83, -0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x39,0x96,0xe7,0xff,0x0, 0xaa, -0x8, 0xb7,0xc0,0x54,0xe0,0x4, 0x1f,0xb4,0x15,0x2a,0x3a,0x68,0x14,0x80,0xe2,0x0, -0x7c,0x4, 0x89,0xdf,0x89,0x4f,0xef,0xff,0xd0,0x1f,0xe0,0x0, 0x1f,0x2e,0x17,0x81, -0x8a,0x8e,0x3b,0x63,0xe2,0x0, 0x7f,0x4, 0x6f,0x84,0x3f,0x13,0x3b,0xe2,0xe5,0xff, -0xc3,0x7e,0xe0,0x40,0xaf,0x9e,0xe2,0x0, 0x7d,0x4, 0xe0,0xb, 0x31,0xa1,0x10,0x80, -0xc3,0xff,0xf0,0x0, 0x13,0x83,0xe0,0x7, 0x17,0xe8,0x3f,0x61,0xe2,0x1, 0xc7,0x7f, -0x39,0xfe,0x2, 0x8d,0xe0,0x2, 0x1f,0xea,0x16,0x82,0xa7,0x8f,0x17,0x0, 0x3e,0x9f, -0x3f,0x72,0x3f,0x9b,0xe0,0x1, 0x1, 0xa7,0xc0,0x2c,0xb, 0xe1,0xe1,0x80,0x8f,0x1a, -0x27,0x35,0xe0,0xe, 0x30,0xa1,0x2a,0xb5,0x3f,0x14,0x16,0x0, 0xf0,0x41,0x3b,0x4f, -0x3c,0x6e,0x3e,0xec,0xf0,0x41,0x3a,0xcf,0xf8,0x43,0x3b,0x16,0xf0,0x43,0x3a,0x1f, -0x3e,0xf2,0xe0,0x0, 0x1, 0xdd,0xe0,0x2c,0x3e,0x3d,0x3f,0xec,0xe0,0x43,0x3e,0x1c, -0xe2,0x0, 0xce,0x0, 0xe3,0xff,0xc7,0xff,0xe0,0x0, 0x5, 0x64,0xe6,0xd1,0xcf,0x8f, -0x16,0x0, 0xf0,0x41,0x3a,0xcf,0xf0,0x40,0x3b,0x6e,0x3c,0xec,0xf0,0x41,0x3a,0x4f, -0xf8,0x43,0x3a,0x95,0xf0,0x43,0x39,0x9f,0x3e,0xf9,0xe0,0x0, 0x1, 0xd7,0xe0,0x2c, -0x3e,0x3d,0x14,0x80,0x3e,0xf9,0xe0,0x0, 0x1, 0xe5,0xc0,0x81,0xe7,0xff,0x0, 0xb7, -0xe0,0xd, 0x3a,0x1e,0xe0,0x16,0x3f,0x1b,0xf0,0x40,0x3a,0xed,0xf0,0x16,0x3b,0x14, -0x14,0x0, 0x3e,0x68,0xe2,0x1, 0xc6,0x7f,0x39,0x7c,0xe7,0xff,0x5, 0xbf,0x2e,0xf, -0xe8,0x0, 0x96,0x5, 0xe8,0x0, 0x94,0x86,0x3c,0x9c,0xe4,0xc, 0x34,0xcf,0x3e,0x19, -0x36,0x1, 0xe8,0x0, 0xb6,0x5, 0xc4,0x1, 0x3e,0x9b,0x0, 0xec,0x3b,0xf8,0xe0,0xc, -0x3e,0x96,0x94,0x8d,0xf0,0x0, 0x92,0xc, 0x1, 0x89,0xe8,0xc, 0x3c,0x94,0xe4,0x9, -0x36,0x4f,0x3e,0x19,0x36,0x1, 0xb6,0xd, 0x0, 0xef,0xe0,0xc, 0x3e,0x9b,0x96,0xc, -0x3e,0x19,0xe8,0xc, 0x3e,0x14,0xe8,0x2c,0x3e,0x37,0x0, 0xf6,0x94,0x88,0x3c,0xff, -0x5, 0xa, 0xe8,0x40,0x3c,0xe4,0xc6,0x81,0x3e,0x19,0xe2,0x1, 0xc6,0xff,0x3c,0x1b, -0xe7,0xff,0x0, 0x98,0xe8,0x40,0x3c,0xf5,0x3, 0x77,0xe8,0x40,0x3c,0xe6,0x0, 0xf4, -0xe0,0x41,0x3f,0xcf,0xe7,0xff,0x0, 0x9c,0xe8,0x0, 0x94,0x6, 0x3c,0x7f,0x5, 0xb, -0xe8,0x40,0x3c,0x63,0xc4,0x81,0x3e,0x18,0xe2,0x1, 0xc4,0xff,0xf0,0x16,0x3b,0x1b, -0xe7,0xff,0x0, 0x9c,0xe8,0x40,0x3c,0x74,0x3, 0x76,0xe8,0x40,0x3c,0x65,0x0, 0xf3, -0x9c,0xe, 0xc4,0x81,0x3c,0x2c,0xb4,0xe, 0xe2,0x1, 0xc4,0xff,0x3f,0x1b,0xe7,0xff, -0x0, 0x93,0xe0,0x40,0x95,0x1f,0xc7,0x1, 0xe0,0xc, 0x35,0x1, 0x35,0x2, 0x3e,0x1a, -0xe0,0x40,0x95,0x2f,0xe2,0x1, 0xc7,0x7f,0x35,0x2, 0x3e,0x1a,0xe0,0x40,0xb6,0x1f, -0xe0,0x40,0x95,0x1d,0xe0,0xc, 0x35,0x1, 0x35,0x2, 0x3e,0x1a,0x95,0xd, 0x35,0x2, -0x3e,0x1a,0xe0,0x40,0xb6,0x1d,0x3e,0x9b,0xe7,0xfe,0x0, 0xbc,0x8, 0xb7,0xf8,0x0, -0xc, 0x38,0xc0,0x7c,0xe0,0x2, 0x19,0xea,0x17,0x80,0x39,0x68,0x77,0x82,0xe2,0x0, -0x7c,0x84,0xa4,0x3, 0x77,0x83,0xe0,0x4, 0x1f,0xb4,0x8b,0xcf,0x8a,0xdf,0xef,0xff, -0xd7,0x10,0xf0,0x40,0x3c,0x68,0x3c,0xe0,0xa4,0x3, 0xc4,0x86,0xef,0xff,0xd6,0xaa, -0x39,0xe8,0x3c,0x62,0xe0,0x5, 0xdc,0xcb,0xe0,0x0, 0x24,0x46,0x3c,0xe2,0xe4,0x0, -0xc4,0xfc,0xe0,0x2, 0x1b,0x78,0x3a,0x69,0xe0,0x2, 0xc2,0x74,0x56,0x83,0x56,0x2, -0x3a,0x16,0x3d,0xe3,0xe8,0x40,0x3d,0x68,0x3c,0x96,0x3c,0x64,0xdc,0x76,0x15,0x28, -0x3c,0xe5,0x3c,0x64,0xef,0xff,0xd4,0xa3,0x3f,0xe2,0xe4,0x0, 0xc7,0xbe,0x39,0xe5, -0xe0,0x1, 0xc1,0xba,0x39,0x9f,0x31,0xa1,0x39,0x96,0x15,0x28,0x3c,0xe7,0x3c,0x63, -0xef,0xff,0xd4,0x95,0x15,0x28,0x3c,0xe5,0x3c,0x64,0xef,0xff,0xd4,0x90,0x15,0x28, -0x3c,0xe7,0x3c,0x63,0xef,0xff,0xd4,0x8b,0xe2,0x0, 0xc9,0x1, 0x2, 0x90,0xe0,0x2, -0x1f,0xe5,0xe4,0x0, 0xc1,0x7c,0x39,0x1f,0x17,0xbe,0xe0,0x80,0x9f,0x12,0xc7,0xff, -0xe0,0x41,0x3f,0x4e,0xe2,0x1, 0xc7,0xff,0xb7,0x2, 0x2f,0xf8,0xc0,0x4, 0xf8,0x0, -0xc, 0x28,0xb, 0xe1,0x3c,0x62,0xe0,0x5, 0xdc,0x66,0xe7,0xff,0x2c,0x39,0x0, 0xe5, -0x8, 0xb6,0xc0,0x44,0xe0,0x5, 0xdc,0x58,0xe0,0x2, 0x24,0x23,0xe0,0x0, 0x19,0xae, -0xe0,0x2, 0x19,0x6a,0x8f,0x83,0xa2,0x2, 0xe0,0x2, 0x2f,0xab,0xe0,0x2, 0x1f,0xb1, -0x14,0x93,0xe0,0xe, 0x85,0xdf,0xe0,0x2, 0x1d,0x67,0xe0,0x2, 0x1c,0x78,0x16,0x81, -0xe0,0xff,0x16,0x7f,0x3f,0x69,0xc5,0xfe,0x3f,0x7b,0x4, 0x1b,0x3f,0xe9,0xe0,0x2, -0xc7,0xb6,0xe0,0xe, 0x37,0xa1,0xe0,0x2, 0x1f,0xf8,0x3f,0x9e,0x97,0x8f,0xe2,0x0, -0xcf,0xb2,0xe0,0x1, 0x5, 0x12,0x14,0x93,0x16,0x81,0xe0,0xff,0x15,0x7f,0x3f,0xe9, -0xe0,0x2, 0x1c,0x64,0xe0,0x2, 0x18,0xe3,0xe0,0x2, 0x1a,0xe9,0xe0,0x0, 0x0, 0xe3, -0xe2,0x0, 0xcf,0x1, 0x5, 0xf, 0xe0,0xf, 0x37,0x21,0x3f,0x9a,0x97,0x8f,0xe0,0x41, -0x3f,0xaf,0xe3,0xff,0xc7,0xff,0x3f,0xfc,0x3, 0x85,0x3c,0xee,0xe3,0xff,0xc4,0xff, -0x3e,0x6f,0xe2,0x1, 0xc6,0xff,0xe6,0xff,0xcf,0xfd,0xe2,0x1, 0xc7,0x7f,0x27,0x95, -0x3f,0x1d,0xe2,0x0, 0xce,0x63,0xe0,0x43,0x3f,0xe, 0x2, 0x8a,0x3f,0xe9,0xe0,0x2, -0xc7,0xb6,0x37,0xa1,0x3f,0x98,0x97,0x8f,0xe2,0x0, 0xcf,0xb1,0x5, 0x40,0xc6,0x81, -0xe0,0x43,0x3e,0x8d,0xe7,0xff,0x0, 0xba,0x3f,0x2d,0x0, 0xec,0xe2,0x0, 0xcf,0x81, -0x5, 0x21,0xe0,0xc, 0x37,0xa1,0xe0,0xe, 0x3c,0x1c,0xe0,0x6, 0x38,0x9c,0x9f,0xe, -0x9b,0x6, 0x3e,0x15,0x9e,0xc, 0x3f,0x16,0x3f,0x1c,0xe3,0xff,0xc7,0x7f,0xe0,0x43, -0x3e,0x1e,0xe2,0x0, 0xce,0x0, 0x2, 0x5, 0xe0,0x41,0x3f,0x4e,0xe3,0xff,0xc7,0x7f, -0x3d,0x7e,0x5, 0x88,0xe2,0x0, 0xcf,0x31,0x3c,0xef,0xe3,0xff,0xc4,0xff,0x5, 0x94, -0x3d,0x6e,0x3f,0x6d,0xe2,0x1, 0xc7,0x7f,0xe6,0xff,0xce,0xfe,0xe2,0x1, 0xc7,0xff, -0xe0,0x1, 0x26,0x99,0xe0,0xd, 0x3f,0x1f,0xc7,0x1, 0xe0,0x43,0x3f,0x8d,0xe0,0x43, -0x3e,0x8e,0x3d,0xff,0x2, 0x4c,0xe0,0x2, 0x1f,0x69,0xe0,0xb, 0x37,0xa1,0x3f,0x1b, -0x96,0xe, 0xe0,0x2, 0x1f,0x64,0xe0,0x41,0x3e,0x2c,0x3f,0x1b,0x96,0x8e,0xe0,0x2, -0x1f,0x63,0xe0,0x41,0x3e,0xad,0x3f,0x1b,0x97,0xe, 0x3e,0x7d,0xe0,0x41,0x3f,0x2e, -0xe0,0x0, 0x5, 0x7d,0x3e,0xfe,0xe0,0x0, 0x3, 0x7a,0x3c,0xef,0xc4,0xff,0xe3,0xff, -0xc4,0xff,0xe2,0x1, 0xc4,0xff,0x15,0x14,0xe2,0x1, 0xc4,0xff,0xe2,0x0, 0x7c,0x4, -0xef,0xfe,0xde,0xa, 0x3d,0x60,0xe0,0x0, 0x15,0xd0,0xc5,0x18,0xe2,0x0, 0x7c,0x84, -0x3c,0x64,0xef,0xff,0xd7,0x42,0x16,0x1, 0x3d,0xec,0xe0,0xff,0x15,0x7f,0x14,0x80, -0xa4,0x2, 0xef,0xff,0xd7,0x74,0xa4,0x2, 0x3c,0xe0,0xe0,0x1, 0x15,0x16,0xc4,0x84, -0xef,0xff,0xd6,0x76,0xa4,0x2, 0xdd,0xc5,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x1, -0x15,0x16,0x14,0x80,0xef,0xff,0xd7,0x63,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x1, -0x15,0x16,0x14,0x84,0xef,0xff,0xd7,0x5b,0x8f,0x83,0x27,0x89,0x16,0x1, 0xa4,0x2, -0x3d,0xec,0xe0,0x1, 0x15,0x16,0x14,0x84,0xef,0xff,0xd7,0x51,0xe0,0x5, 0x1f,0x92, -0x8f,0xf, 0x8f,0x83,0xe2,0x0, 0xcf,0x3, 0xe0,0x1, 0x1, 0xb3,0xe2,0x0, 0xcf,0x82, -0x5, 0x86,0xa4,0x2, 0xe0,0x0, 0x14,0xd0,0xef,0xff,0xd7,0x2b,0x8f,0x83,0xe2,0x0, -0xcf,0x81,0x5, 0x85,0x14,0xbc,0xa4,0x2, 0xef,0xff,0xd7,0x23,0x8f,0x83,0x27,0x88, -0xe0,0x8, 0xd1,0x83,0x24,0x5, 0xa4,0x2, 0x14,0xa8,0xef,0xff,0xd7,0x1a,0xe0,0x1, -0x1f,0x84,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x9, 0xa4,0x2, 0x14,0x94,0xef,0xff, -0xd7,0x10,0xa4,0x2, 0x14,0x8a,0xef,0xff,0xd7,0xc, 0xa4,0x2, 0xdc,0xaf,0xc0,0x3c, -0xb, 0x61,0xe0,0xd, 0x3f,0xae,0xe7,0xfe,0x0, 0xe9,0x3e,0x7e,0xe7,0xff,0x5, 0xb, -0x3e,0xfe,0xe7,0xff,0x5, 0x8, 0xc7,0x81,0x3c,0xef,0xe7,0xff,0x0, 0x82,0x15,0x14, -0x14,0x92,0xe2,0x0, 0x7c,0x4, 0xef,0xfe,0xdd,0x8f,0xe0,0x0, 0x15,0xd0,0xe2,0x0, -0x7d,0x18,0xe2,0x0, 0x7c,0x84,0x3c,0x64,0xef,0xff,0xd6,0xc7,0x16,0x1, 0xa4,0x2, -0x3d,0xec,0xe0,0xff,0x15,0x7f,0x14,0x80,0xef,0xff,0xd6,0xf9,0x16,0x1, 0xa4,0x2, -0x3d,0xec,0xe0,0xff,0x15,0x7f,0x14,0x84,0xef,0xff,0xd6,0xf1,0x15,0x14,0x14,0x8b, -0xe2,0x0, 0x7c,0x4, 0xef,0xfe,0xdd,0x70,0xa4,0x2, 0x15,0xbc,0xe2,0x0, 0x7d,0x18, -0xe2,0x0, 0x7c,0x84,0xef,0xff,0xd6,0xa9,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0xff, -0x15,0x7f,0x14,0x80,0xef,0xff,0xd6,0xdb,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x2, -0x15,0x2c,0x14,0x84,0xef,0xff,0xd6,0xd3,0x15,0x14,0x14,0x98,0xe2,0x0, 0x7c,0x4, -0xef,0xfe,0xdd,0x52,0xa4,0x2, 0x15,0xbc,0xe2,0x0, 0x7d,0x18,0xe2,0x0, 0x7c,0x84, -0xef,0xff,0xd6,0x8b,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0xff,0x15,0x7f,0x14,0x80, -0xef,0xff,0xd6,0xbd,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x2, 0x15,0x2c,0x14,0x84, -0xef,0xff,0xd6,0xb5,0xa4,0x2, 0xe2,0x0, 0x7c,0x84,0xef,0xff,0xd6,0x46,0xa4,0x2, -0xe0,0x0, 0x15,0xd0,0xe2,0x0, 0x7d,0x18,0xe2,0x0, 0x7c,0x84,0xef,0xff,0xd6,0x6d, -0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x2, 0x15,0x2c,0x14,0x80,0xef,0xff,0xd6,0x9f, -0x16,0x1, 0x3d,0xec,0xe0,0x1, 0x15,0x16,0x14,0x84,0xe7,0xfe,0x0, 0xa3,0xe2,0x0, -0xcf,0x82,0x5, 0x89,0xe0,0x8, 0xd0,0xe1,0x24,0x6, 0xa4,0x2, 0xe0,0x1, 0x14,0xa0, -0xef,0xff,0xd6,0x77,0x8f,0x83,0xe2,0x0, 0xcf,0x81,0xe7,0xfe,0x5, 0xd1,0xe0,0x8, -0xd0,0xd4,0xe7,0xfe,0x24,0x4d,0xe0,0x0, 0x14,0xd0,0xe7,0xfe,0x0, 0xc6,0x8, 0xb2, -0xe0,0x3, 0x1f,0xa2,0x8f,0xf, 0x39,0x6f,0xe2,0x0, 0xcf,0x3, 0x1, 0x14,0xe2,0x0, -0xcf,0x1, 0x17,0x82,0x14,0x4, 0xe0,0x68,0x3a,0xaf,0x14,0x84,0xd9,0x43,0x8f,0x82, -0x14,0x2, 0xe2,0x0, 0xcf,0x83,0x17,0x80,0xe0,0x68,0x39,0x2f,0x14,0x84,0x9, 0x21, -0xe7,0xf2,0x0, 0xf5,0x14,0x0, 0x0, 0xf2,0xe0,0x0, 0x1f,0xae,0x8f,0xf, 0xe0,0x3, -0x1f,0xa2,0x2f,0x8, 0xe0,0x1, 0x1f,0x27,0x8f,0xe, 0x2f,0x4, 0x17,0x3, 0xaf,0xf, -0x38,0x82,0x17,0x1, 0x0, 0xfd,0xe0,0x4, 0x1f,0xb4,0x25,0x9, 0x8f,0x5f,0x3e,0x6e, -0x17,0x81,0xc6,0x7f,0x3f,0xfc,0x15,0x3, 0x4, 0xd, 0x38,0x82,0x8f,0x4f,0x0, 0xf8, -0xe0,0xb, 0x37,0x21,0x3d,0x98,0x95,0x8b,0xc7,0x1, 0x3e,0x9b,0xe0,0x43,0x3f,0xe, -0x0, 0x89,0x8, 0xb1,0x3f,0x6f,0xc7,0x7f,0x38,0xef,0xe0,0x43,0x3f,0xe, 0x16,0x80, -0xc0,0x81,0x3f,0x71,0x5, 0x6e,0x26,0x87,0xe0,0xe, 0x37,0xa1,0xe0,0x2d,0x3e,0xba, -0x3f,0x19,0xb6,0x8e,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x3f,0xfc,0x4, 0x6c,0x8, 0xe1, -0x8, 0xb6,0xef,0xff,0xd1,0xb4,0xdf,0xc1,0xe0,0x4, 0x1c,0x36,0xe0,0x2, 0x1c,0xe9, -0x15,0x1, 0xdf,0xca,0xe0,0x4, 0x1f,0xef,0xe0,0x0, 0x1a,0x2e,0xe0,0x4, 0x8f,0x8f, -0x14,0x1, 0xe0,0x1, 0x27,0x89,0xe0,0x5, 0xda,0x4a,0x24,0x3, 0x14,0x1, 0xda,0xda, -0x14,0x1, 0xe0,0x5, 0xda,0x28,0xe0,0x0, 0x24,0x49,0xe0,0x2, 0x1f,0xb1,0xe0,0x2, -0x1b,0x78,0xe0,0xe, 0x89,0xdf,0xe0,0xe, 0x8a,0xcf,0xe0,0x1, 0xc1,0xf8,0x31,0xa1, -0x3c,0xe3,0xe0,0x2, 0x39,0x96,0xe1,0xfd,0xc4,0x8c,0x15,0x80,0x3d,0x65,0x3c,0x96, -0x3c,0x62,0xef,0xff,0xd2,0xc, 0x8f,0x84,0xe0,0x0, 0x16,0x64,0xe2,0x0, 0xcf,0x82, -0x17,0xb2,0xe0,0x6c,0x3c,0xaf,0x3d,0xe8,0x3c,0xe2,0x3d,0x65,0x3c,0x62,0xef,0xff, -0xd2,0xe3,0x16,0x1, 0x3d,0xec,0x3c,0x62,0xe0,0x3, 0x15,0x74,0x3c,0xe5,0xef,0xff, -0xd2,0x1e,0x3c,0x63,0xe0,0x0, 0xc4,0x7c,0xe0,0xa, 0x32,0xa1,0x3c,0xe2,0x3c,0x16, -0xef,0xfe,0xdc,0x22,0x17,0x80,0xc1,0x7e,0x3d,0xe2,0x3e,0xef,0x3f,0x6f,0x3d,0x6f, -0x3a,0xfe,0x1, 0xaa,0xe6,0xf7,0xce,0xe, 0xc6,0x7f,0x3f,0xfc,0x4, 0x6, 0xe0,0x2d, -0x3e,0xbf,0x17,0x80,0x3f,0x7f,0x1, 0xaf,0x14,0x0, 0xe0,0x5, 0xd9,0xf8,0x24,0x3, -0x14,0x0, 0xda,0x88,0xdd,0x76,0xef,0xff,0xd4,0x8b,0xdf,0x3a,0x8f,0x84,0x27,0xb1, -0xe0,0x2, 0x19,0x6a,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x1, 0x15,0x16,0x14,0x80, -0xef,0xff,0xd5,0xad,0x16,0x1, 0xa4,0x2, 0x3d,0xec,0xe0,0x0, 0x15,0x64,0x14,0x84, -0xb, 0x21,0xe7,0xeb,0x0, 0xa4,0xe0,0x80,0x96,0x1b,0xe2,0x0, 0xce,0x0, 0x2, 0x9, -0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xc7,0x1, 0x3e,0x9c,0xe2,0x1, 0xc7,0x7f,0x0, 0xc9, -0x3e,0x6a,0x0, 0xfa,0xe0,0x80,0x9e,0x12,0xc7,0x81,0x3e,0x2d,0xe2,0x1, 0xc7,0xff, -0xb6,0x2, 0x0, 0xc9,0xe0,0x5, 0xd9,0xc3,0x24,0x48,0x14,0x1, 0xdc,0xd8,0x0, 0xc5, -0xb, 0x61,0x8, 0xb5,0x3a,0x68,0x39,0x69,0x24,0xac,0x3f,0xe9,0xc7,0xff,0x39,0xef, -0xe2,0x1, 0xc1,0xff,0x3c,0xe3,0xe0,0x8, 0xd7,0x3f,0x3a,0xe8,0x3c,0xe2,0x3c,0x64, -0xe0,0x8, 0xd7,0x3a,0x3a,0xf8,0x3f,0xe2,0xe0,0x6f,0x3a,0x23,0x39,0xef,0xe0,0x2, -0x1f,0xb1,0xe0,0xe, 0x8f,0xff,0xc7,0xff,0x39,0x7f,0x3, 0x11,0xc1,0x1, 0xe2,0x1, -0xc1,0x7f,0x3c,0xe2,0x3c,0x64,0xe0,0x8, 0xd7,0x27,0x3a,0xe8,0x3c,0xe3,0x3c,0x64, -0xe0,0x8, 0xd7,0x22,0x3a,0xf8,0xe0,0x62,0x3d,0x23,0x39,0xe2,0x3c,0x63,0xa, 0xe1, -0x39,0xe9,0x0, 0xe6,0x8, 0xb7,0x11,0x80,0x3b,0xe9,0x3a,0xe8,0x3a,0x68,0x38,0xe3, -0x3c,0x63,0xe0,0x43,0x3d,0x1a,0xc3,0xff,0x3b,0x63,0x38,0xf9,0x1, 0x82,0xb, 0xe1, -0xe1,0x80,0x97,0x94,0x26,0x5, 0xe0,0x41,0x3f,0xcf,0xe0,0x43,0x3f,0x9f,0x3d,0x7f, -0x3, 0x1d,0x28,0xa3,0x91,0x15,0x3f,0x66,0x26,0x9, 0xe0,0x41,0x3f,0x4e,0xe0,0x41, -0x39,0x42,0xe0,0x43,0x3f,0x1e,0xe0,0x43,0x39,0x12,0xe0,0x2e,0x3f,0x9e,0x27,0xe, -0xe0,0x2f,0x3f,0xa2,0x27,0x8b,0xe0,0xf, 0x3d,0x98,0xa8,0x8f,0x3f,0xe8,0xc7,0x81, -0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0x3c,0x7d,0x3, 0xdb,0x3f,0xe1,0xc7,0x81,0x38,0xef, -0xe2,0x1, 0xc0,0xff,0xc1,0x81,0x0, 0xd2,0x3b,0xf3,0xe0,0x40,0x97,0x24,0x1, 0x3, -0x91,0x4, 0x0, 0xdb,0x39,0x66,0x0, 0xd9,0x8, 0xb7,0xe0,0x0, 0x1c,0x23,0x15,0x3, -0x14,0x80,0xef,0xfe,0xdb,0x91,0xe0,0x0, 0x1c,0x22,0x15,0x3, 0x14,0x80,0xef,0xfe, -0xdb,0x8b,0xe0,0x0, 0x19,0x24,0x17,0x80,0xe0,0x2, 0xb7,0xd2,0x16,0x0, 0xe0,0x5, -0xaf,0xc2,0xe0,0xb, 0xb7,0x92,0xe0,0x16,0xaf,0xc2,0xe0,0x2, 0x1f,0xad,0xe0,0x2, -0x1a,0x43,0xe0,0x4, 0x19,0xb4,0xe0,0x2, 0x1a,0xed,0x8b,0xf, 0xe0,0x0, 0x1d,0xa1, -0xe0,0x1, 0x9d,0x54,0x8c,0xd3,0xa4,0x5, 0x3e,0xe6,0xdf,0x95,0x17,0x80,0x16,0x1, -0xe0,0x5, 0xac,0x42,0x3c,0x7f,0xe0,0x0, 0x1, 0xc4,0xe0,0x4, 0x1b,0xe7,0x8c,0x7, -0xe0,0x5, 0xd8,0xf9,0xe0,0x0, 0x24,0x61,0x8f,0xd3,0xa4,0x5, 0x37,0xa1,0xe0,0x0, -0x1d,0xa4,0xe0,0x1, 0x9d,0x44,0x8c,0xc3,0x16,0x0, 0x3c,0x1f,0x3e,0xe6,0xdf,0x7b, -0x17,0x80,0x16,0x1, 0xe0,0x5, 0xac,0x32,0x3c,0x7f,0x1, 0xbc,0xe0,0x5, 0x8f,0xc2, -0x3c,0x3f,0xe0,0x5, 0xac,0x22,0x3e,0xe6,0xe0,0x0, 0x1d,0xa0,0xe0,0x1, 0x9d,0x54, -0x8c,0xd3,0xa4,0x5, 0x16,0x1, 0xdf,0x67,0xe0,0x16,0xac,0x42,0x8c,0x7, 0xe0,0x5, -0xd8,0xd2,0xe0,0x0, 0x24,0x40,0x8f,0xd3,0xa4,0x5, 0x37,0xa1,0xe0,0x0, 0x1d,0x9f, -0xe0,0x1, 0x9d,0x44,0x8c,0xc3,0x3c,0x1f,0x3e,0xe6,0x16,0x1, 0xdf,0x54,0xe0,0x16, -0x8f,0xc2,0xe0,0x16,0xac,0x32,0x3c,0x3f,0xe0,0x16,0xac,0x22,0xb, 0xe1,0xe6,0xf5, -0xcf,0xf, 0xe0,0xd, 0x39,0x1e,0xe0,0x6, 0x8d,0x8d,0xe6,0xfd,0xcf,0x5f,0xe0,0xe, -0x36,0x3e,0x3f,0x4b,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe0,0x6, 0xaf,0xd, 0xe7,0xff, -0x0, 0xab,0xe6,0xf5,0xcf,0xf, 0xe0,0xd, 0x39,0x1e,0xe0,0x5, 0x8d,0xdd,0xe6,0xfd, -0xcf,0x5f,0xe0,0xe, 0x36,0x3e,0x3f,0x4b,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe0,0x5, -0xaf,0x5d,0xe7,0xff,0x0, 0xb3,0xe0,0x5, 0x8f,0xc2,0xe0,0x5, 0xaf,0xa2,0xe7,0xff, -0x0, 0xb4,0xe0,0x16,0x8f,0xc2,0xe0,0x16,0xaf,0xa2,0x0, 0xd1,0x8, 0xb7,0xf8,0x0, -0xc, 0x3e,0xc0,0x74,0xf0,0x2, 0x1c,0xb1,0x12,0x0, 0xe8,0xe, 0x8f,0xd9,0xe0,0x0, -0x19,0x1e,0x6f,0x8b,0xf0,0x40,0x3d,0x64,0xe0,0x2, 0x1f,0xac,0x3b,0x64,0x8f,0x8f, -0xf0,0xff,0x15,0xff,0x6f,0x8f,0xe0,0x2, 0x1f,0xab,0xf0,0x0, 0x8a,0xf, 0x17,0x80, -0xf0,0x2, 0x1e,0xc3,0xe0,0x1, 0xb7,0x92,0xf7,0xff,0x11,0xff,0xe0,0x1, 0xb7,0xf2, -0xe7,0x0, 0x17,0x80,0x4a,0x8f,0xe0,0x1, 0xb7,0xc2,0xe0,0xff,0x17,0xff,0xe8,0x1, -0x9d,0x5d,0xb7,0xe2,0x32,0xa8,0xe0,0x0, 0x19,0xa4,0x4f,0x8b,0xf0,0x4, 0x1f,0x67, -0xe4,0x0, 0xc5,0x3, 0xe8,0x5, 0x3a,0xc4,0xf0,0x40,0x38,0x64,0xf0,0x40,0x3c,0x64, -0xe0,0x43,0x3a,0x95,0x3b,0xef,0xf0,0x13,0x39,0x9f,0xf8,0x0, 0x89,0xe, 0x17,0x81, -0xf0,0x2, 0x18,0xf8,0xf4,0x0, 0xc0,0x3e,0xe0,0x17,0x8d,0xd3,0xe0,0x17,0x8e,0xb3, -0xe0,0x17,0x8e,0x13,0xf2,0x1, 0xc4,0x7f,0xe0,0x43,0x3d,0x1a,0xf0,0x41,0x3e,0x45, -0xf8,0x40,0x3b,0xea,0xf0,0x40,0x3b,0x66,0xf0,0x40,0x3a,0xe6,0xe8,0x40,0x3c,0xeb, -0xe7,0x0, 0x14,0x0, 0x38,0xef,0xe8,0x40,0x3f,0xf3,0xe0,0x0, 0x4, 0x73,0xf0,0x0, -0x22,0x84,0xe0,0x17,0xad,0xd3,0xf0,0x0, 0x23,0x4, 0xe0,0x17,0xae,0x13,0xf0,0x0, -0x23,0x84,0xe0,0x17,0xae,0xb3,0xb4,0x32,0xe0,0x1, 0xb4,0x42,0xe8,0x40,0x3c,0x68, -0xb4,0x82,0xb4,0xe2,0xf0,0x0, 0x7a,0x1, 0xe0,0x5, 0xd8,0x15,0xf0,0x0, 0x62,0x1, -0xe0,0x0, 0x24,0x4e,0xe7,0x0, 0x17,0x80,0xe0,0x1, 0xb7,0xf2,0xe0,0xff,0x17,0xff, -0xe0,0x1, 0xb7,0x92,0x3f,0xe7,0x3b,0xe4,0xe8,0x1, 0x9c,0xdd,0xe4,0x0, 0xc3,0xbe, -0xe0,0x1, 0xc7,0xba,0x3b,0x9f,0xe4,0x0, 0xc4,0x83,0xe0,0x2, 0x1f,0xe2,0x33,0xa1, -0xe8,0xe, 0x8c,0x49,0xe8,0x0, 0x88,0x8e,0xe0,0x17,0x8e,0x43,0xe0,0x17,0x8d,0xa3, -0xe0,0x17,0x8e,0x83,0x3b,0x9f,0xe0,0x43,0x3c,0x99,0xf8,0x40,0x3a,0xea,0xf0,0x40, -0x39,0xe6,0xf0,0x40,0x39,0x66,0xe7,0x0, 0x17,0x0, 0x15,0x0, 0xf0,0x0, 0x13,0x1, -0xe8,0x40,0x3f,0xeb,0x3c,0x7a,0xe0,0x0, 0x1, 0xd4,0xf0,0x0, 0x21,0x4, 0xe0,0x17, -0xad,0xa3,0xf0,0x0, 0x21,0x84,0xe0,0x17,0xae,0x43,0xf0,0x0, 0x22,0x84,0xe0,0x17, -0xae,0x83,0xe0,0x1, 0x96,0xc2,0xe0,0x1, 0xb7,0x92,0x3e,0xfe,0xe0,0x1, 0xb7,0x72, -0x3, 0x2, 0xb7,0x32,0x97,0x62,0x3f,0x7f,0x5, 0x2, 0xb7,0x82,0xc2,0x1, 0xe2,0x0, -0xca,0x3, 0xc1,0x2, 0xe7,0xfe,0x1, 0xcd,0xc0,0xc, 0xf8,0x0, 0xf, 0x28,0xb, 0xe1, -0xf0,0xe, 0x38,0x1f,0xe0,0x1, 0xc7,0x3a,0x37,0x21,0xe8,0xe, 0x3f,0x11,0x97,0xe, -0xf8,0x40,0x39,0x78,0xe0,0x28,0x3c,0x6e,0xe0,0x29,0x3c,0xde,0x1, 0x91,0x3d,0x7e, -0x3, 0x6, 0xc5,0x81,0xe2,0x1, 0xc5,0xff,0xf0,0x40,0x3a,0xe1,0x3a,0xfe,0x3, 0xd, -0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, 0xc6,0x7f,0xf0,0x40,0x3b,0x61,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe7,0xfe,0x0, 0xe9,0xe8,0x40,0x3f,0x7c,0x3, 0x79,0x3f,0x6d, -0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0xf0,0x40,0x3b,0xe1,0x0, 0xf1,0xf0,0x80, -0x93,0x97,0xe8,0x40,0x38,0xf8,0xe8,0x2e,0x3f,0x67,0xe8,0x2f,0x3f,0xd7,0x1, 0x91, -0xe8,0x40,0x3c,0xf7,0x3, 0x6, 0xc6,0x1, 0xe2,0x1, 0xc6,0x7f,0xf8,0x40,0x39,0xe6, -0xe8,0x40,0x3a,0xf7,0x3, 0xb, 0xc6,0x81,0xe2,0x1, 0xc6,0xff,0xf8,0x40,0x3a,0xe6, -0xc5,0x1, 0xe2,0x1, 0xc5,0x7f,0xe7,0xff,0x0, 0x8f,0xf8,0x40,0x3e,0x77,0x5, 0x79, -0xc5,0x81,0xe2,0x1, 0xc5,0xff,0xf8,0x40,0x39,0x66,0x0, 0xf3,0x8, 0xb5,0x2d,0x31, -0x39,0x68,0x3a,0x69,0x24,0x2c,0x3f,0xe8,0xc7,0xff,0x39,0xef,0xe2,0x1, 0xc1,0xff, -0x3c,0x63,0xe0,0x8, 0xd5,0x1, 0x3a,0xe8,0x3c,0xe4,0x3c,0x62,0xe0,0x8, 0xd4,0xfc, -0x3a,0xf8,0x3f,0xe2,0xe0,0x6f,0x3a,0x23,0x39,0xef,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8f,0xcf,0xc7,0xff,0x39,0x7f,0x3, 0x11,0xc1,0x1, 0xe2,0x1, 0xc1,0x7f,0x3c,0xe4, -0x3c,0x62,0xe0,0x8, 0xd4,0xe9,0x3a,0xe8,0x3c,0xe4,0x3c,0x63,0xe0,0x8, 0xd4,0xe4, -0x3a,0xf8,0xe0,0x62,0x3d,0x23,0x39,0xe2,0x3c,0x63,0xa, 0xe1,0x39,0xe8,0x0, 0xe6, -0xe2,0x0, 0xcd,0x1, 0x1, 0x84,0xa, 0xa1,0xe7,0xfb,0x0, 0x8d,0x11,0x80,0x0, 0xf5, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xe1,0xff,0xc0,0x10,0xe0,0x2, 0x1f,0xaa,0xe0,0x0, -0x1f,0x1d,0x89,0x8f,0x17,0x80,0xe0,0xd, 0x31,0xc3,0x3e,0x6f,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0x3e,0xff,0xe1,0x80,0xae,0x1e,0x3, 0xfa,0xe0,0x0, 0x1a,0x9c,0x11,0x0, -0xe0,0x0, 0x1b,0x25,0xe0,0x0, 0x1a,0x1b,0xb9,0x5, 0xb1,0x4, 0xb9,0x6, 0xe0,0x5, -0xd7,0x3, 0xe0,0x0, 0x24,0x68,0xe0,0x2, 0x1f,0xea,0x3c,0xe0,0xa7,0xf, 0xeb,0xff, -0xcf,0xfc,0x3f,0x1f,0xe0,0x5, 0x1f,0x9b,0x37,0x41,0x3f,0x90,0x37,0xc1,0x7f,0x8a, -0xc1,0xff,0xe0,0x2, 0x1f,0xe1,0x7f,0x8, 0x37,0xc1,0x7f,0x89,0xc4,0x8c,0xe0,0x4, -0x1f,0xb4,0xe2,0x0, 0x7c,0x1c,0x8f,0x4f,0x8f,0xdf,0x6f,0x1d,0xf0,0x40,0x3c,0xe2, -0x6f,0x9c,0xe0,0x2, 0x1f,0xc3,0x69,0x9e,0x9f,0x2f,0xf0,0x0, 0x1c,0x1a,0x77,0x16, -0x9f,0x3f,0xe0,0x0, 0x1b,0xa4,0x77,0x17,0x39,0xe7,0x9f,0x7f,0xe0,0x1, 0x9f,0x8f, -0x77,0x18,0x77,0x99,0xe0,0x5, 0x1f,0x88,0xf0,0x2, 0x1d,0xb1,0x8f,0x8f,0x6f,0x9f, -0xe0,0xb, 0xd8,0xb2,0x4f,0x8c,0x5f,0x7, 0xaf,0x86,0x4f,0x8d,0xe8,0x0, 0xaf,0x88, -0xe0,0x0, 0x1f,0x99,0xb7,0xf, 0x5f,0x88,0x5f,0xb, 0xb7,0x85,0xe0,0x0, 0x1f,0x98, -0xb7,0xf, 0x5f,0x8c,0xe0,0x0, 0x1f,0x17,0xaf,0x8e,0x37,0xc8,0xe0,0x0, 0x1f,0x16, -0xaf,0x8e,0x5f,0x89,0xe0,0x0, 0x1f,0x15,0xb7,0x84,0x5f,0x8a,0xaf,0x8e,0x37,0xc8, -0xe0,0x0, 0x1f,0x14,0xaf,0x8e,0x8f,0x86,0x3f,0xf2,0x2, 0x91,0x3e,0x60,0xe8,0x0, -0x8d,0x88,0xe0,0x0, 0x1f,0x13,0xc6,0x34,0x17,0x80,0x3d,0xff,0xc7,0x2, 0xe0,0x2, -0x1, 0xf9,0xe0,0x0, 0xc0,0x70,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe6,0xf5,0xcf,0x82, -0x3f,0x97,0xe0,0x4, 0xc7,0x9c,0x16,0x81,0xe6,0xfd,0xcf,0x52,0xe0,0xe, 0x36,0xbe, -0x8e,0x8f,0xe0,0x4, 0x31,0x21,0x3f,0x4d,0xaf,0xf, 0x3f,0xe2,0xe0,0x2, 0x1f,0x78, -0xe0,0x44,0xc7,0xd4,0x37,0xa1,0x3f,0x9e,0x9f,0xf, 0x3f,0xe2,0xe0,0x1, 0xc7,0x86, -0x37,0xa1,0xe0,0xd, 0x37,0x48,0x3f,0x97,0x3a,0xe2,0xae,0xaf,0xf0,0x40,0x3e,0x6e, -0xe4,0x0, 0xc2,0x85,0xe0,0xd, 0x3b,0x94,0xe0,0x2, 0xc6,0x8f,0xf2,0x1, 0xc6,0x7f, -0xf0,0x0, 0xae,0xd, 0xe0,0xd, 0x3b,0x95,0x17,0x1, 0xe0,0x2, 0xc6,0xca,0xf0,0x0, -0x8d,0x2f,0xaf,0xd, 0xf0,0x0, 0x25,0x25,0xe8,0x40,0x3e,0xea,0xc6,0xff,0xf0,0x40, -0x3e,0xed,0xf2,0x1, 0xc6,0xff,0xe8,0x40,0x3c,0xec,0xe8,0x40,0x3c,0x6d,0xdc,0xba, -0x3c,0xe8,0xf0,0x40,0x3f,0x68,0xe8,0x40,0x3c,0x6d,0xe0,0x8, 0xd3,0xfd,0xe2,0x0, -0xcc,0x3c,0x3e,0xe8,0xe0,0x1, 0x2, 0x10,0x3f,0x62,0xe0,0x1, 0xc7,0x6, 0x37,0x21, -0x3f,0x13,0x8f,0x2e,0xe8,0x40,0x3f,0x7a,0x1, 0x83,0xf8,0x40,0x3d,0x6d,0xe0,0xf, -0x39,0x94,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8e,0xf, 0x3f,0xe2,0xe0,0x1, 0xc7,0x86, -0xe0,0xe, 0x39,0x95,0x37,0xa1,0x3f,0x93,0xe0,0x2, 0xc7,0x4b,0xf0,0x0, 0xad,0xe, -0xf0,0x0, 0x8d,0x2f,0xe8,0xe, 0x8f,0xcb,0x3e,0xef,0xc6,0xff,0xf0,0x40,0x3d,0x7d, -0x3, 0x26,0xe8,0x40,0x3e,0xea,0xc6,0x81,0xf0,0x40,0x3e,0xed,0xf2,0x1, 0xc6,0xff, -0xe8,0x40,0x3c,0xec,0xe8,0x40,0x3c,0x6d,0x7f,0x82,0xdc,0x7c,0x3c,0xe8,0xf0,0x40, -0x3f,0x68,0xe8,0x40,0x3c,0x6d,0xe0,0x8, 0xd3,0xbf,0xe2,0x0, 0xcc,0x3c,0x3e,0xe8, -0x67,0x82,0xe0,0x0, 0x2, 0x63,0x3f,0x62,0xe0,0x1, 0xc7,0x6, 0x37,0x21,0x3f,0x13, -0x8f,0x2e,0xe8,0x40,0x3f,0x7a,0x1, 0x83,0xf8,0x40,0x3d,0x6d,0x3f,0xe2,0xe0,0x1, -0xc7,0x86,0xe0,0xe, 0x39,0x95,0x37,0xa1,0xe0,0x2, 0xc7,0x4c,0x3f,0x93,0xf0,0x0, -0xad,0xe, 0xf0,0x0, 0x8d,0x2f,0xe0,0xf, 0x39,0x94,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, -0x8e,0x8f,0xe8,0x40,0x3c,0x6a,0xe8,0x40,0x3c,0xed,0xe0,0x8, 0xd3,0x95,0xf0,0x40, -0x3f,0x68,0xf0,0x0, 0x26,0xd9,0xe8,0x40,0x3f,0xed,0xc7,0xff,0xf0,0x40,0x3e,0x6f, -0xf2,0x1, 0xc6,0x7f,0xe8,0x40,0x3d,0x69,0xe8,0x40,0x3c,0xec,0xe8,0x40,0x3c,0x6a, -0xde,0x76,0xe8,0x40,0x3c,0xec,0xf0,0x40,0x3d,0x68,0xe0,0x8, 0xd3,0x7d,0xe2,0x0, -0xcc,0x3c,0x5, 0x37,0xe8,0x40,0x3e,0xee,0xc6,0x9e,0x3c,0x7d,0x2, 0x32,0xe2,0x0, -0xcc,0x77,0xe0,0x1, 0x5, 0x3, 0xf0,0x3e,0x3f,0x58,0xf8,0x43,0x3f,0x1e,0xf8,0x40, -0x3e,0xec,0x0, 0xd8,0xe8,0x40,0x3c,0xec,0xe8,0x40,0x3c,0x6a,0x7e,0x81,0xe0,0x8, -0xd3,0x63,0x66,0x81,0xc4,0x1e,0x3e,0xf8,0xf8,0x40,0x3e,0x6e,0xe7,0xfe,0x2, 0x66, -0xf8,0x40,0x3d,0x6d,0xe7,0xfe,0x0, 0xc8,0xe8,0x40,0x3c,0xec,0xe8,0x40,0x3c,0x6a, -0x7e,0x81,0xf8,0x40,0x3e,0x6e,0x7f,0x82,0xe0,0x8, 0xd3,0x4e,0x66,0x81,0xc4,0x1e, -0x3e,0xf8,0x67,0x82,0xe7,0xff,0x2, 0x11,0xf8,0x40,0x3d,0x6d,0xe7,0xfe,0x0, 0xee, -0xe0,0xe, 0x39,0x94,0xe0,0x2, 0xc7,0xf, 0x8f,0xe, 0xe8,0x40,0x3f,0x7d,0x1, 0x83, -0xf8,0x40,0x3e,0xec,0xe0,0xf, 0x39,0x95,0xe0,0x2, 0xc7,0xcd,0xf0,0x0, 0xae,0x8f, -0x3f,0xe2,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x93,0xf0,0x0, 0x8e,0x2f,0xe0,0xf, -0x39,0x94,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8e,0x8f,0xe8,0x40,0x3c,0x6c,0xe8,0x40, -0x3c,0xed,0xe0,0x8, 0xd3,0x21,0xe8,0xe, 0x8e,0xfb,0xf0,0x40,0x3f,0x68,0x3f,0xed, -0xc7,0xff,0xf0,0x40,0x3e,0xff,0x3, 0x36,0xe8,0x40,0x3f,0xed,0xc7,0x81,0xf0,0x40, -0x3d,0x6f,0xf2,0x1, 0xc5,0x7f,0xe8,0x40,0x3d,0x69,0xe8,0x40,0x3c,0xea,0xe8,0x40, -0x3c,0x6c,0x7e,0x81,0xdd,0xfc,0xe8,0x40,0x3c,0xea,0xf0,0x40,0x3e,0x68,0xe0,0x8, -0xd3,0x3, 0xe2,0x0, 0xcc,0x3c,0x66,0x81,0x5, 0x14,0xe8,0x40,0x3e,0x6e,0xc6,0x1e, -0x3c,0x7c,0x2, 0xf, 0xe2,0x0, 0xcc,0x77,0x5, 0x21,0xf0,0x3e,0x3f,0x58,0xf8,0x43, -0x3f,0x1e,0xf8,0x40,0x3e,0xea,0x0, 0xd4,0xf8,0x40,0x3f,0x69,0xe7,0xff,0x0, 0x81, -0x3a,0x13,0xe0,0x2, 0xc2,0xf, 0x8f,0x4, 0xe8,0x40,0x3f,0x7d,0x1, 0x83,0xf8,0x40, -0x3e,0xea,0x3f,0xe2,0x3a,0x93,0xc7,0x81,0xe0,0x2, 0xc2,0xce,0x39,0x6f,0xe2,0x1, -0xc1,0x7f,0xf0,0x0, 0xae,0x85,0xe7,0xfd,0x0, 0x80,0xf8,0x40,0x3f,0x69,0x0, 0xe2, -0xe0,0x80,0x9e,0x9c,0xc7,0x81,0xe0,0xa, 0x36,0xc8,0xe2,0x1, 0xc7,0xff,0xe0,0x40, -0xad,0x2e,0xe0,0x40,0xae,0x9e,0xe7,0xfc,0x0, 0xfa,0xe0,0x0, 0x1f,0x12,0x17,0x80, -0xb7,0x8e,0xe0,0x0, 0x1f,0x11,0xe0,0x0, 0x1e,0x90,0xb7,0x8e,0xe0,0x2, 0x1f,0x29, -0x8e,0xe, 0xe0,0x0, 0x1f,0xf, 0x26,0x8, 0xe7,0x0, 0x17,0x80,0xb7,0x8d,0xe0,0xff, -0x17,0xff,0xb7,0x8e,0x38,0x82,0xb6,0xd, 0x0, 0xfd,0x38,0x82,0x8, 0xb2,0xe0,0x0, -0x1f,0x8e,0x17,0x0, 0xaf,0xf, 0xdd,0xd5,0xdf,0xe1,0xe0,0x2, 0x1f,0xee,0x9f,0xf, -0x39,0x6f,0x37,0x4f,0x27,0x7, 0xe0,0x0, 0x1f,0xa5,0x8f,0xf, 0xe0,0x0, 0x1f,0x8d, -0xaf,0xf, 0xdb,0xc3,0xdc,0x64,0x9f,0x82,0x37,0xcf,0x27,0x8f,0xe0,0x0, 0x1f,0xa4, -0xe0,0x5, 0x8f,0x2f,0xe0,0x16,0xaf,0x5f,0xe0,0x5, 0x8f,0x4f,0xe0,0x16,0xaf,0x7f, -0xe0,0x5, 0x8f,0x3f,0xe0,0x16,0xaf,0x6f,0x9, 0x61,0xe0,0x1, 0x1f,0x9d,0x17,0x0, -0xaf,0xf, 0x38,0x82,0xea,0x1d,0x7c,0x5a,0xe0,0xb5,0x0, 0xd8,0xe0,0x5, 0x1f,0x89, -0xe0,0x1, 0x1f,0x1d,0x8c,0xf, 0x8e,0x8e,0x3d,0x6e,0xe0,0x0, 0x2c,0x5e,0xe0,0x3, -0x1f,0xec,0x8e,0xf, 0xe0,0x1, 0x26,0xcb,0xea,0x1d,0x7f,0xda,0x9d,0x8f,0xe0,0x0, -0x25,0xd4,0xe2,0x0, 0xce,0x1, 0xe0,0x0, 0x2, 0xd0,0xe0,0x1, 0x1, 0xab,0xe2,0x0, -0xce,0x84,0xe0,0x0, 0x1, 0x50,0xe0,0x2, 0x1f,0x28,0xe0,0x3, 0x1d,0xeb,0x8f,0xe, -0xe0,0xa, 0x9f,0x8b,0xe0,0xc, 0x37,0x28,0xe0,0x2, 0x1f,0x27,0x8f,0xe, 0x3f,0x4c, -0x3f,0xfe,0x5, 0xba,0xe0,0x2, 0x1f,0x26,0x8f,0xe, 0xe0,0xc, 0x37,0x28,0xe0,0x2, -0x1f,0x25,0x8f,0xe, 0x3f,0x4c,0x3f,0xfe,0x3, 0xaf,0xe0,0x2, 0x1e,0x24,0xe0,0xa, -0x9f,0x1b,0x8e,0xc, 0xe0,0xb, 0x36,0x28,0xe0,0x2, 0x1e,0x23,0x8e,0xc, 0x3e,0x4b, -0x3f,0x7c,0x5, 0xa2,0xe0,0x2, 0x1e,0x22,0x8e,0xc, 0xe0,0xb, 0x36,0x28,0xe0,0x2, -0x1e,0x21,0x8e,0xc, 0x3e,0x4b,0x3f,0x7c,0x3, 0x97,0xe0,0x3, 0x1e,0x4e,0xe0,0x9, -0x8e,0x7c,0xe2,0x0, 0xc6,0x2, 0xe0,0x1, 0x26,0x8, 0x3e,0x6f,0xe1,0xfc,0xc6,0x41, -0xe2,0x1, 0xce,0x3a,0xe0,0x1, 0x2, 0x81,0x3e,0x6e,0xe1,0xef,0xc6,0x63,0xe2,0x1, -0xce,0x3a,0xe0,0x0, 0x2, 0xfa,0xe2,0x0, 0xce,0x82,0x17,0xa5,0x14,0x0, 0xe0,0x68, -0x39,0x2f,0x17,0x80,0xaf,0x8a,0xea,0x1d,0x7f,0xda,0x17,0x0, 0x0, 0xa6,0xe0,0x3, -0x1e,0xea,0x8e,0xd, 0x2e,0x16,0x16,0x81,0xae,0x8a,0xea,0x1d,0x7e,0xd8,0xb7,0x8d, -0xea,0x1d,0x7f,0xd6,0xb7,0xf, 0xea,0x1d,0x7f,0xda,0xe0,0x2, 0x1f,0x20,0x8f,0xe, -0x3c,0x6c,0xe0,0xd, 0x37,0x28,0xe0,0x2, 0x1f,0x1f,0x8f,0xe, 0x3f,0x4d,0xb7,0xf, -0x38,0x82,0x16,0x84,0xae,0x8e,0xe0,0x2, 0x1f,0x1e,0x8f,0xe, 0xe0,0xd, 0x37,0x28, -0xe0,0x2, 0x1f,0x1d,0x8f,0xe, 0x3f,0x4d,0xb7,0xf, 0x0, 0xf3,0xea,0x1d,0x7e,0x54, -0xe0,0x43,0x3f,0x9f,0xb7,0x8c,0xea,0x1d,0x7e,0x52,0xe0,0x43,0x3f,0x1e,0xea,0x1d, -0x7d,0xd8,0xb7,0xc, 0xe0,0x2, 0x1e,0x1c,0x95,0x8b,0x8e,0xc, 0x3f,0xab,0xe0,0x41, -0x3f,0xaf,0x36,0x23,0x3f,0xfc,0xe7,0xff,0x2, 0x38,0xea,0x1d,0x7f,0xd6,0x97,0x8f, -0x3f,0x2f,0xe0,0x41,0x3f,0x2e,0x3e,0x7e,0xe7,0xff,0x4, 0x2f,0x0, 0xd2,0xea,0x1d, -0x7f,0xda,0x9f,0x8f,0xe2,0x0, 0xcf,0xb1,0x2, 0xcc,0x14,0x24,0xe7,0xff,0x0, 0xab, -0xe2,0x0, 0xce,0x83,0x1, 0x47,0xe2,0x0, 0xce,0x84,0x1, 0x72,0xe2,0x0, 0xce,0x81, -0xe7,0xff,0x1, 0x9b,0x16,0x82,0xae,0x8e,0xe0,0x2, 0x1f,0x20,0x8f,0xe, 0xe0,0xd, -0x37,0x28,0xe0,0x2, 0x1f,0x1f,0xe7,0xff,0x0, 0xbf,0xe2,0x0, 0xce,0x1, 0xe7,0xff, -0x1, 0xb1,0xe7,0xfe,0x0, 0xc2,0xe2,0x0, 0xce,0x84,0xe7,0xff,0x2, 0x86,0xea,0x81, -0x7e,0x6a,0xe9,0xff,0xc6,0x7c,0x3d,0xed,0x35,0xa1,0x3d,0x9c,0x95,0x8b,0x3d,0x9c, -0x3d,0x82,0xff,0xc, 0xff,0x5a,0xfe,0xf4,0xff,0x5a,0xff,0x9c,0xe0,0x3, 0x1e,0x3e, -0x8f,0x8c,0xe2,0x1, 0xcf,0xef,0x2, 0x8a,0xe0,0x5, 0x1f,0xd, 0xe0,0xd, 0x37,0xa2, -0x3f,0x1d,0xc7,0x81,0xaf,0x8c,0xb4,0x1e,0xb4,0xae,0xe0,0x4, 0x1f,0xc6,0xe0,0x1, -0x9f,0xf, 0x3f,0x78,0x5, 0x9b,0xe0,0x1, 0xb4,0xf, 0xe0,0x1, 0xb4,0x9f,0x9f,0x7f, -0x3f,0x79,0x5, 0x9a,0xb4,0x6f,0xb4,0xff,0x8f,0xc, 0xe2,0x0, 0xcf,0xa, 0x1, 0x9d, -0xe0,0x1, 0x9e,0x8f,0x9f,0x4f,0x3f,0x2d,0xe0,0x2, 0xb7,0xf, 0x9e,0xff,0xe0,0x1, -0x9f,0x3f,0x3f,0x2d,0xe0,0x2, 0xb7,0x1f,0x38,0x82,0x9f,0x4f,0x3f,0x78,0x3, 0xe8, -0xb4,0x4f,0xb4,0xdf,0x0, 0xe5,0xe0,0x1, 0x9f,0x3f,0x3f,0x79,0x3, 0xe6,0xe0,0x1, -0xb4,0x2f,0xe0,0x1, 0xb4,0xbf,0x0, 0xe1,0xe2,0x0, 0xcf,0x14,0x1, 0x8e,0xe0,0x1, -0x9e,0x8f,0x9f,0x4f,0x3f,0x2d,0xe0,0x2, 0xb7,0x2f,0x9e,0xff,0xe0,0x1, 0x9f,0x3f, -0x3f,0x2d,0xe0,0x2, 0xb7,0x3f,0x38,0x82,0xe2,0x1, 0xcf,0x6f,0xe0,0x0, 0x5, 0xd6, -0x8, 0xb7,0xe0,0x0, 0x1c,0xa9,0xe0,0x5, 0x1a,0xd, 0x8e,0x89,0x11,0x80,0xf0,0x0, -0x13,0x1, 0xe2,0x0, 0xce,0x9f,0x2, 0x88,0x3f,0xed,0xc7,0x81,0x3e,0xef,0xe2,0x1, -0xc6,0xff,0xe8,0x40,0x39,0xe6,0x9b,0x94,0xf0,0x0, 0x9b,0xa4,0xe0,0x5, 0x19,0xd, -0x15,0x0, 0x14,0x1, 0x9a,0xb2,0x9b,0x42,0xe0,0xb, 0x3a,0xa7,0xe0,0x41,0x3d,0xab, -0xe8,0x1, 0x3b,0x27,0x3f,0xeb,0xe0,0x41,0x3d,0xa1,0xe2,0x1, 0xc7,0xff,0xe2,0x1, -0xc5,0xff,0xe1,0x2f,0x3f,0xeb,0x3f,0xfd,0x4, 0x8f,0x3f,0xea,0xc7,0x81,0x3d,0x6f, -0xe2,0x1, 0xc5,0x7f,0xe0,0xf, 0x35,0x22,0xc7,0x82,0x3f,0x94,0xf0,0x40,0x3b,0xe6, -0x3b,0xe5,0xb2,0x8f,0xb3,0x1f,0x3f,0xe8,0xc7,0x81,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f, -0x3c,0x7e,0xc1,0x4, 0x1, 0xd8,0x3f,0xea,0xc7,0x81,0xe2,0x0, 0xce,0x9f,0x3f,0x6f, -0xe2,0x1, 0xc7,0x7f,0x5, 0x85,0x21,0x82,0xae,0x89,0xaf,0xc, 0xb, 0xe1,0xe2,0x1, -0xcf,0x6b,0xe7,0xff,0x2, 0xb8,0x0, 0xf8,0x38,0x82,0xe0,0x2, 0x1c,0x4a,0xe0,0xb2, -0x0, 0xbd,0xe0,0x4, 0x1f,0xc6,0x8c,0xf, 0x17,0x84,0xe0,0x28,0x3c,0xf, 0x38,0x82, -0x8, 0xb5,0xe0,0x3, 0x1e,0x82,0x16,0x0, 0xe0,0x3, 0x1f,0xec,0xae,0xd, 0xe0,0x5, -0x1e,0x89,0x8f,0x8f,0xe0,0x3, 0x1f,0x6a,0xae,0xd, 0x16,0x1, 0xe1,0x2b,0x3f,0x9c, -0x8f,0xe, 0xe0,0x4, 0x19,0x46,0x2d,0x8a,0xe1,0x2c,0x3f,0x1c,0x2e,0x7, 0xe0,0x0, -0x1e,0x19,0x9e,0xc, 0xe2,0x0, 0xce,0x32,0x5, 0x8a,0x17,0x81,0xaf,0x8d,0x16,0xfe, -0xe0,0x3, 0x1f,0xce,0xe0,0xa, 0xae,0xbf,0x17,0x80,0x0, 0xa9,0x8a,0x82,0x22,0x8c, -0xe0,0x2, 0x1e,0xca,0x9e,0x8d,0x2e,0x88,0xe0,0x3, 0x1f,0xce,0x17,0x7e,0xae,0x82, -0xe0,0xa, 0xaf,0x3f,0xa, 0xe1,0x3e,0xef,0xe4,0x0, 0xce,0x81,0x3e,0xde,0x26,0x9f, -0xe0,0x2, 0x1f,0xca,0xe2,0x0, 0xca,0x83,0x9f,0x8f,0xb7,0x92,0x1, 0x92,0x27,0x8a, -0xe0,0x1, 0x9c,0xd2,0xe0,0x1, 0x9c,0x42,0x17,0x84,0xaf,0x82,0xa, 0xa1,0xe7,0xfe, -0x0, 0x87,0xe0,0x3, 0x1f,0x4e,0x16,0xfe,0xe0,0xa, 0xae,0xbe,0xaf,0x82,0x0, 0xe3, -0xe0,0x3, 0x1f,0xce,0x17,0x7e,0xe0,0xa, 0xaf,0x3f,0x0, 0xcf,0xe0,0x3, 0x1e,0xeb, -0xe0,0xa, 0x9a,0xd, 0xe0,0xa, 0x99,0x9d,0xe0,0x0, 0x2a,0xe8,0xe4,0x0, 0xcf,0x1, -0x3f,0xde,0x27,0xbe,0xe0,0x4, 0x1c,0x46,0x15,0x28,0x3c,0xe5,0xef,0xfe,0xd5,0x34, -0xe0,0x5, 0x1c,0xc, 0xe0,0x7, 0x15,0x40,0x3c,0xe5,0xef,0xfe,0xd5,0x2d,0xe0,0x3, -0x1f,0xce,0x3c,0xe3,0xe0,0xa, 0xaa,0xbf,0x3c,0x64,0xe0,0x2, 0x1f,0x9b,0xb2,0x22, -0x8f,0x8f,0xb1,0xb2,0xe0,0xe, 0x37,0xa8,0xe0,0x2, 0x1f,0x9a,0xb2,0x42,0x8f,0x8f, -0xb1,0xd2,0x3f,0xce,0xe0,0x2, 0x1f,0x4a,0xb2,0x62,0xb7,0x8e,0xea,0x1d,0x7f,0xe0, -0xb2,0xf, 0xea,0x1d,0x7f,0xde,0xb1,0x8f,0x17,0x2, 0xe0,0x3, 0x1f,0xbe,0xb1,0xf2, -0xaa,0x8f,0xe0,0x0, 0x1f,0xa9,0xe0,0x1, 0xb2,0x2, 0xaf,0xf, 0xe0,0x1, 0xb1,0x92, -0xe0,0x1, 0xb2,0x22,0xe0,0x1, 0xb1,0xb2,0xde,0xb2,0x17,0x81,0xaf,0x82,0x8f,0x82, -0xe7,0xff,0x27,0x92,0xea,0x1d,0x7a,0xe0,0xea,0x1d,0x79,0x5e,0x9f,0x5, 0x9e,0x82, -0xe0,0xe, 0x3a,0x2e,0xe0,0xd, 0x39,0xad,0xe0,0x41,0x3f,0x2e,0x3f,0xee,0xe0,0x41, -0x3f,0x2d,0xe0,0x0, 0x1e,0xa9,0xe2,0x1, 0xc7,0xff,0xe2,0x1, 0xc7,0x7f,0x8e,0x8d, -0xe1,0x2f,0x3f,0xee,0x3e,0xff,0xe7,0xfe,0x3, 0xf7,0x3c,0xe3,0x3c,0x64,0xde,0x8f, -0xb1,0x82,0xb2,0x5, 0xe7,0xfe,0x0, 0xf0,0xe2,0x0, 0xca,0x81,0x1, 0xa8,0xe0,0x1, -0x9f,0x82,0x9f,0x42,0x3f,0x2f,0xe0,0x2, 0x1f,0x99,0x8f,0x8f,0xe0,0xd, 0x37,0xa8, -0xe0,0x2, 0x1f,0x98,0x8f,0x8f,0x3f,0xcd,0x3f,0x7f,0x2, 0x11,0x9f,0xf2,0xe0,0x1, -0x9f,0x32,0x3f,0x2f,0xe0,0x2, 0x1f,0x97,0x8f,0x8f,0xe0,0xd, 0x37,0xa8,0xe0,0x2, -0x1f,0x96,0x8f,0x8f,0x3f,0xcd,0x3f,0x7f,0xe7,0xff,0x5, 0x3b,0x17,0x83,0xaf,0x82, -0xe0,0x1, 0xb2,0x42,0xe0,0x1, 0xb1,0xd2,0xe7,0xff,0x0, 0xb3,0xe2,0x0, 0xca,0x83, -0xe7,0xff,0x1, 0xaf,0x0, 0xf6,0x8, 0xb2,0xe0,0x3, 0x19,0x4e,0xe0,0xa, 0x8f,0x82, -0x2f,0x87,0xe0,0x4, 0x1f,0x46,0xaf,0x8e,0x9, 0x21,0xe7,0xfa,0x0, 0xd8,0xdf,0x1, -0xde,0xf9,0xe2,0x0, 0xcc,0x1, 0x1, 0x9f,0xe0,0x4, 0x1f,0xc6,0x14,0x0, 0xe0,0x1, -0x9e,0x8f,0x9f,0x4f,0x3f,0x2d,0xe0,0x1, 0xb7,0x6f,0x9e,0xff,0xe0,0x1, 0x9f,0x3f, -0x3f,0x2d,0xe0,0x1, 0xb7,0x7f,0x17,0x0, 0xaf,0xf, 0xe0,0x3, 0x1f,0xd5,0x8f,0x8f, -0xe2,0x0, 0xcf,0xa6,0x1, 0x8a,0xe0,0xa, 0xaf,0xb2,0x17,0x1, 0xe0,0x3, 0x1f,0xe9, -0xaf,0xf, 0x9, 0x61,0xdd,0x3c,0x0, 0xf2,0x24,0x7d,0xe0,0xa, 0xac,0x32,0x0, 0xf6, -0xe0,0x3, 0x1f,0xa3,0xa7,0xf, 0x9f,0xbe,0x9e,0xbe,0xe6,0xf9,0xcf,0xff,0xe4,0x0, -0xcf,0x81,0xe7,0x6, 0xce,0x9f,0xb6,0xbe,0x38,0x82,0x8, 0xb2,0xe0,0x0, 0x19,0x75, -0xe0,0x2, 0x1f,0x15,0xe0,0xa, 0x9f,0xb2,0x8f,0xe, 0xe2,0xa8,0xc7,0x80,0xe0,0xa, -0xb7,0xb2,0xe0,0x50,0xc7,0x0, 0xe0,0x2, 0x1f,0xaf,0xe0,0xa, 0x9e,0x32,0x8f,0x8f, -0xe0,0x0, 0x1c,0xf4,0x37,0xc7,0x37,0xaf,0x3f,0x9e,0xe0,0x2, 0x1f,0x30,0x15,0x4, -0x8f,0xe, 0xe0,0x20,0x14,0x53,0xe6,0xfc,0xce,0xfe,0x36,0xa9,0x3f,0x9d,0xe6,0xfd, -0xce,0xfe,0x36,0xa8,0x3f,0x9d,0x3f,0xcc,0xe0,0xa, 0xb7,0xb2,0xe0,0x2, 0x1f,0x94, -0x8f,0x8f,0xe0,0xd, 0x37,0xa8,0xe0,0x2, 0x1f,0x93,0x8f,0x8f,0x3f,0xcd,0xe0,0x2, -0x1e,0x92,0xe0,0xa, 0xb7,0xc2,0x8e,0x8d,0xe0,0x2, 0x1f,0x91,0xe0,0xc, 0x36,0xa8, -0xe0,0x2, 0x1e,0x90,0x8f,0x8f,0x8e,0x8d,0xe6,0xdd,0xcf,0x8f,0x3e,0xcc,0x3f,0xcd, -0xe0,0xa, 0xb7,0xd2,0xe6,0xf9,0xce,0xfe,0xe0,0xa, 0x9f,0xe2,0x36,0xa9,0xe2,0x3, -0xc7,0x80,0xe0,0xa, 0xb7,0xe2,0xe0,0x2, 0x1f,0x8f,0xe0,0xa, 0x9e,0x62,0x8f,0x8f, -0x37,0xaa,0x3e,0x9f,0xe0,0x2, 0x1f,0x8e,0x8f,0x8f,0x3f,0x9d,0x3f,0xcc,0xe0,0xa, -0xb7,0xe2,0xe6,0xfe,0xce,0xfe,0xe0,0xc, 0x9f,0xc2,0xe6,0xff,0xcf,0x7e,0xe3,0xff, -0xc7,0x8f,0xe0,0xc, 0xb7,0xc2,0xe0,0xf, 0x36,0xa5,0xe0,0xc, 0x9e,0x42,0x37,0x24, -0x3e,0xec,0xe0,0x80,0xce,0xc0,0x3f,0xcd,0x3f,0x4f,0xe0,0xc, 0xb7,0x42,0xe0,0xb, -0xd2,0x6b,0xe0,0x0, 0x1c,0xf3,0x15,0x1, 0xe0,0x20,0x14,0x64,0xe0,0xb, 0xd2,0x64, -0xe0,0xa, 0xde,0xae,0xe0,0x3, 0x17,0xf4,0xe0,0xe, 0xb7,0xb2,0xe0,0x20,0x14,0xf3, -0xe0,0xe, 0x9d,0x32,0x14,0x0, 0xe0,0xb, 0xd1,0x7d,0xe0,0xe, 0x9f,0xd2,0x17,0x1, -0xe7,0xd, 0xcf,0x9e,0xe0,0xe, 0xb7,0xd2,0xe0,0x20,0x14,0xf5,0xe0,0xe, 0x9d,0x52, -0x14,0x0, 0xe0,0xb, 0xd1,0x6f,0xe0,0xd, 0x9f,0x82,0x14,0x0, 0xe7,0x20,0xcf,0x88, -0xe0,0xd, 0xb7,0x82,0xe0,0x20,0x14,0xe8,0xe0,0xd, 0x9d,0x2, 0x9, 0x21,0xe1,0x62, -0x0, 0xe1,0xe1,0xfe,0xc4,0x60,0xe2,0x0, 0xcc,0x10,0xe0,0x0, 0x2, 0xfd,0x8, 0xb2, -0xea,0x8c,0x7f,0xa8,0xe9,0xff,0xc7,0xfc,0x3c,0x1f,0x8c,0x8, 0x3c,0x1f,0x3c,0x2, -0xc0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x7c,0x9e,0x12,0x20,0x20, -0x5a,0x0, 0xe0,0x4, 0x1f,0x59,0x17,0x80,0xb7,0x8e,0xe0,0x1, 0x1f,0x14,0xb7,0x8e, -0x9, 0x61,0xe0,0x2, 0x1f,0xea,0x11,0x0, 0xa4,0x8f,0xe0,0x3, 0x1f,0xf6,0x14,0x36, -0xbc,0x8f,0xe0,0x4, 0x1f,0xd9,0xb1,0xf, 0x9f,0x8f,0x3c,0x9f,0xe0,0x3, 0xdd,0xd6, -0xe0,0x2, 0x1c,0xe0,0xe0,0x4, 0x1f,0xe3,0xe0,0x1, 0x14,0x4e,0xbc,0x8f,0xe0,0x1, -0x1f,0x94,0xb1,0xf, 0x9, 0x21,0xe0,0x7b,0x0, 0xc9,0xe0,0x2, 0x1c,0xdf,0xe0,0x3, -0x1f,0xf6,0x11,0x0, 0xbc,0x8f,0x14,0x36,0xe0,0x4, 0x1f,0xd9,0xb1,0xf, 0x9f,0x8f, -0x3c,0x9f,0xe0,0x3, 0xdd,0xbb,0xe0,0x2, 0x1c,0xde,0x0, 0xe5,0xe0,0x2, 0x1c,0xe7, -0xe0,0x3, 0x1f,0xf6,0x11,0x0, 0xbc,0x8f,0x14,0x36,0xe0,0x4, 0x1f,0xd9,0xb1,0xf, -0x9f,0x8f,0x3c,0x9f,0xe0,0x3, 0xdd,0xaa,0xe0,0x2, 0x1c,0xdd,0x0, 0xd4,0xe0,0x2, -0x1c,0xe6,0xe0,0x3, 0x1f,0xf6,0x11,0x0, 0xbc,0x8f,0x14,0x36,0xe0,0x4, 0x1f,0xd9, -0xb1,0xf, 0x9f,0x8f,0x3c,0x9f,0xe0,0x3, 0xdd,0x99,0xe0,0x2, 0x1c,0xdc,0x0, 0xc3, -0xe0,0x2, 0x1c,0xe9,0xe0,0x3, 0x1f,0xf6,0x11,0x0, 0xbc,0x8f,0x14,0x36,0xe0,0x4, -0x1f,0xd9,0xb1,0xf, 0x9f,0x8f,0x3c,0x9f,0xe0,0x3, 0xdd,0x88,0xe0,0x2, 0x1c,0xdb, -0xe7,0xff,0x0, 0xb2,0x38,0x82,0xe0,0x3, 0x1f,0x4b,0x8f,0x8e,0xe2,0x0, 0xcf,0x82, -0xe0,0x4, 0x1f,0xeb,0x1, 0x85,0xe0,0x4, 0x1f,0x5e,0xbf,0xf, 0x38,0x82,0x8f,0xe, -0xe4,0x0, 0xc4,0x3e,0xe2,0x0, 0xcf,0x1, 0x1, 0x86,0xe0,0x1, 0x1f,0xe, 0x3c,0x1e, -0xbc,0xf, 0x0, 0xf5,0xe0,0x4, 0x1f,0x72,0x0, 0xfb,0x8, 0xb2,0x39,0x69,0x2c,0x15, -0x3c,0x69,0xe0,0x7, 0xd3,0x4b,0xe0,0x2, 0x1f,0xb8,0x9f,0x8f,0x2f,0x85,0xe0,0x0, -0x1f,0xf7,0x9f,0x8f,0x27,0x89,0xe0,0x4, 0x1f,0xc1,0x8f,0xf, 0xe2,0x1, 0xcf,0x2a, -0x1, 0x3, 0x17,0x1, 0xaf,0xf, 0x9, 0x61,0xe2,0x0, 0xcc,0x1, 0x1, 0x87,0xe0,0x3, -0x1f,0x9a,0x3c,0x69,0xac,0x9f,0xdf,0x46,0x0, 0xe7,0x3f,0xe8,0xc7,0xc8,0xe2,0x0, -0xcf,0x81,0x2, 0x98,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xcf,0x81,0xb7,0x8e,0xe0,0x3, -0x1f,0x9d,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf,0xe0,0x3, 0x1f,0x9a,0xe0,0x4, 0x8f,0x5f, -0x3f,0x1d,0xe0,0x4, 0xaf,0x5f,0xe0,0x4, 0x8e,0xdf,0xe0,0x4, 0xae,0xcf,0xe0,0x3, -0x0, 0xf6,0x3f,0xe8,0xc7,0xc6,0xe2,0x0, 0xcf,0x81,0x2, 0xa0,0xe0,0x0, 0x1f,0x77, -0x9f,0x8e,0xcf,0x82,0xb7,0x8e,0xe0,0x3, 0x1f,0x9d,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf, -0xe0,0x3, 0x1f,0x9a,0xe0,0x4, 0x8f,0x7f,0x3f,0x1d,0xe0,0x4, 0xaf,0x7f,0xe0,0x4, -0x8f,0x7f,0xe0,0x4, 0xaf,0x6f,0x14,0x3a,0xe0,0x4, 0x8f,0xff,0xe0,0x4, 0x1c,0xb3, -0x3c,0x9f,0xe0,0x3, 0xdd,0xb, 0xe7,0xff,0x0, 0xa8,0xe2,0x1, 0xcc,0x7b,0x1, 0x8c, -0xe0,0x0, 0x1f,0x77,0x16,0x80,0x9f,0x8e,0xcf,0x84,0xb7,0x8e,0xe0,0x3, 0x1f,0xac, -0xae,0x8f,0xe7,0xff,0x0, 0x9a,0xe2,0x1, 0xcc,0x38,0x1, 0x8d,0xe0,0x0, 0x1f,0x77, -0x9f,0x8e,0xe0,0x1, 0xcf,0x80,0xb7,0x8e,0xe0,0x4, 0x1f,0xb4,0xe0,0x1f,0xac,0xaf, -0xe7,0xff,0x0, 0x8b,0xe2,0x1, 0xcc,0x3b,0x1, 0x8c,0xe0,0x0, 0x1f,0x77,0x9f,0x8e, -0xe0,0x1, 0xcf,0x80,0xb7,0x8e,0xe0,0x4, 0x1f,0xb2,0xa9,0xf, 0xe7,0xfe,0x0, 0xfd, -0xe2,0x1, 0xcc,0x3d,0x1, 0x8a,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xe0,0x40,0xcf,0x80, -0xb7,0x8e,0xe0,0x4, 0x1f,0xb1,0x0, 0xf2,0x3f,0xe8,0xc7,0xe5,0xe2,0x0, 0xcf,0x82, -0x2, 0x87,0xe0,0x3, 0x1f,0x9a,0x3c,0x1f,0xac,0x88,0xe7,0xfe,0x0, 0xe6,0x3f,0xe8, -0xc7,0xc4,0xe2,0x0, 0xcf,0x81,0x2, 0x9e,0xe0,0x2, 0x1f,0x38,0x9f,0x8e,0xcf,0xa0, -0xb7,0x8e,0xe0,0x3, 0x1f,0x9d,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf,0xe0,0x3, 0x1f,0x9a, -0xe0,0x5, 0x8f,0x1f,0x3f,0x1d,0xe0,0x5, 0xaf,0x1f,0xe0,0x5, 0x8f,0x1f,0xe0,0x5, -0xaf,0xf, 0x14,0x3c,0xe0,0x5, 0x8f,0x9f,0xe0,0x4, 0x1c,0xb0,0x3c,0x9f,0xe7,0xff, -0x0, 0x9a,0x3f,0xe8,0xc7,0xc2,0xe2,0x0, 0xcf,0x81,0x2, 0x98,0xe0,0x2, 0x1f,0x38, -0x9f,0x8e,0xcf,0xa0,0xb7,0x8e,0xe0,0x3, 0x1f,0x9d,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf, -0xe0,0x3, 0x1f,0x9a,0xe0,0x5, 0x8f,0x3f,0x3f,0x1d,0xe0,0x5, 0xaf,0x3f,0xe0,0x5, -0x8e,0xbf,0xe0,0x5, 0xae,0xaf,0xe0,0x2, 0x0, 0xf6,0x3f,0xe8,0xe1,0xff,0xc7,0xb2, -0xe2,0x0, 0xcf,0x81,0x2, 0x96,0xe0,0x2, 0x1f,0x38,0x9f,0x8e,0xcf,0x90,0xb7,0x8e, -0xe0,0x3, 0x1f,0x9d,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf,0xe0,0x4, 0x1f,0xc9,0x9f,0xf, -0x3f,0x1d,0xb7,0xf, 0x9f,0x8f,0xe0,0x4, 0x1f,0x6b,0xa4,0x8e,0x3c,0x9f,0x0, 0xbc, -0xe2,0x1, 0xcc,0x3c,0x1, 0x93,0xe0,0x2, 0x1f,0x38,0x9f,0x8e,0xe0,0x80,0xcf,0x80, -0xb7,0x8e,0xe0,0x3, 0x1f,0xdb,0x8f,0xf, 0xe0,0x4, 0x1f,0xef,0xe4,0x0, 0xc7,0x13, -0x3f,0x9e,0xe0,0x1, 0xa9,0x2f,0xe7,0xfd,0x0, 0xf8,0xe2,0x1, 0xcc,0x3e,0x1, 0x93, -0xe0,0x2, 0x1f,0x38,0x9f,0x8e,0xe0,0x80,0xcf,0x80,0xb7,0x8e,0xe0,0x3, 0x1f,0xdb, -0x8f,0xf, 0xe0,0x4, 0x1f,0xef,0xe4,0x0, 0xc7,0x13,0x3f,0x9e,0xe0,0x1, 0xac,0x9f, -0xe7,0xfd,0x0, 0xe3,0xe2,0x1, 0xcc,0x3f,0x1, 0x93,0x17,0x83,0xe1,0x22,0x3c,0xcf, -0xe0,0x3, 0x1f,0xcb,0xa9,0xf, 0xe0,0x3, 0x1f,0xdb,0x8f,0x8f,0x3c,0x6f,0xde,0xb4, -0xe0,0x4, 0x1f,0xeb,0xa4,0x8f,0xe0,0x0, 0x14,0x4e,0xe7,0xfe,0x0, 0xa4,0xe2,0x0, -0xcc,0x50,0xe0,0x2, 0x2, 0xcb,0xe2,0x0, 0xcc,0x30,0xe0,0x0, 0x2, 0xf9,0xe2,0x0, -0xcc,0x2e,0xe7,0xfd,0x3, 0xd2,0xe2,0x0, 0xcc,0x2, 0x4, 0x89,0xe2,0x0, 0xcc,0x3, -0xe7,0xfd,0x5, 0xcb,0xe2,0x0, 0xcc,0x14,0xe7,0xfd,0x1, 0x47,0x3f,0xe8,0xc7,0xdc, -0xe2,0x0, 0xcf,0x83,0x2, 0x84,0x17,0x89,0xe1,0x22,0x39,0x4f,0xe0,0x3, 0x1f,0x9a, -0xe0,0xe, 0x3f,0x98,0xc4,0x7a,0xe2,0x0, 0xcc,0x4a,0xa9,0xe, 0xe7,0xfd,0x2, 0xa5, -0xea,0x94,0x7f,0x1e,0xe9,0xff,0xc7,0x7c,0x34,0x21,0x3c,0x1e,0x94,0x8, 0x3c,0x1e, -0xe0,0x2, 0x1f,0x38,0x3c,0x2, 0x0, 0xbc,0xfd,0x30,0x0, 0xcc,0xfd,0x30,0x0, 0xd2, -0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30, -0x0, 0xe0,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30, -0xfd,0x30,0xfd,0x30,0xfd,0x30,0x0, 0xfc,0x0, 0xf0,0x0, 0xfc,0x0, 0xfc,0x0, 0xfc, -0x0, 0xfc,0x1, 0x7c,0xfd,0x90,0x1, 0x94,0x1, 0xa0,0x1, 0xac,0x1, 0xb8,0x1, 0xc4, -0xfe,0xd8,0xfd,0x30,0x1, 0x5a,0xfd,0x30,0xfd,0x30,0xfd,0x30,0x1, 0x6, 0x1, 0x6, -0x1, 0x10,0x1, 0x1c,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30, -0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0xfd,0x30,0x1, 0x32,0x1, 0x38,0x1, 0x3e, -0x1, 0x44,0x1, 0x4c,0x1, 0xdc,0x2, 0x6, 0xfd,0x30,0xfd,0x30,0x1, 0xdc,0x2, 0x6, -0xfd,0x30,0x1, 0x3e,0xfd,0x30,0xfd,0x30,0xfd,0x30,0x2, 0x20,0xe2,0x0, 0xcc,0x48, -0x2, 0x89,0xe2,0x0, 0xcc,0x47,0xe7,0xfc,0x3, 0xd8,0xe2,0x0, 0xcc,0x35,0xe7,0xff, -0x0, 0x8d,0xe2,0x0, 0xcc,0x4b,0xe7,0xfc,0x1, 0x50,0xe2,0x0, 0xcc,0x4d,0xe7,0xff, -0x0, 0x85,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xe1,0x0, 0xcf,0x80,0xb7,0x8e,0xe7,0xfc, -0x0, 0xb4,0xdc,0xdf,0xe7,0xfc,0x0, 0xb1,0xe0,0x0, 0x1e,0xf7,0x9f,0xd, 0xcf,0x8, -0xb7,0xd, 0xe7,0xfe,0x0, 0xb0,0x9e,0x8e,0xe1,0x0, 0xce,0x80,0xb6,0x8e,0xe0,0x2, -0xa9,0x3f,0xe7,0xfc,0x0, 0xa2,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xe0,0x20,0xcf,0x80, -0x0, 0xe6,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xcf,0xc0,0x0, 0xe1,0xe0,0x0, 0x1f,0x77, -0x9f,0x8e,0xcf,0x90,0x0, 0xdc,0xe0,0x0, 0x1f,0x77,0x9f,0x8e,0xe0,0x1, 0xcf,0x80, -0x0, 0xd6,0xe0,0x0, 0x17,0x64,0xe1,0x2e,0x39,0x5e,0xe0,0x6, 0xaf,0x4f,0xe0,0x0, -0x1f,0x77,0x9f,0x8e,0xcf,0xa0,0x0, 0xcb,0x9f,0x8e,0xcf,0x81,0x0, 0xc8,0x9f,0x8e, -0xcf,0x82,0x0, 0xc5,0x9f,0x8e,0xcf,0x84,0x0, 0xc2,0x9f,0x8e,0xcf,0x88,0xe7,0xff, -0x0, 0xbf,0x9f,0x8e,0x3c,0x62,0xe0,0x1, 0xcf,0x80,0xb7,0x8e,0xe7,0xfe,0x0, 0x99, -0xe0,0x5, 0x8f,0xcf,0xe0,0x4, 0x1f,0x59,0x37,0xa8,0x3f,0x92,0xe6,0xd1,0xcf,0x8f, -0xb7,0x8e,0x14,0x36,0x9f,0x8e,0xe0,0x3, 0x1f,0x76,0xa4,0x8e,0x3c,0x9f,0xe7,0xfc, -0x0, 0xb2,0xe0,0x4, 0x8f,0x4f,0xe0,0x4, 0xaf,0x5f,0x14,0x38,0xe0,0x4, 0x8f,0xdf, -0xe0,0x4, 0x1c,0xaf,0x3c,0x9f,0xe7,0xfc,0x0, 0xa6,0xe0,0x4, 0x8f,0x6f,0xe0,0x4, -0xaf,0x7f,0xe7,0xfc,0x0, 0x9a,0xe0,0x4, 0x8e,0xff,0xe0,0x4, 0xae,0xef,0xe7,0xfc, -0x0, 0x94,0xe0,0x5, 0x8f,0xf, 0xe0,0x5, 0xaf,0x1f,0xe7,0xfc,0x0, 0xf4,0xe0,0x5, -0x8e,0x9f,0xe0,0x5, 0xae,0x8f,0xe7,0xfc,0x0, 0xee,0xe0,0x5, 0x8f,0x2f,0xe0,0x5, -0xaf,0x3f,0x14,0x3e,0xe0,0x5, 0x8f,0xbf,0xe0,0x4, 0x1c,0xae,0x3c,0x9f,0xe7,0xfc, -0x0, 0x82,0xe0,0x8, 0x8f,0x5f,0xe0,0x8, 0xaf,0x6f,0xe0,0x9, 0x8e,0x9f,0xe0,0x9, -0xae,0xaf,0xe0,0x9, 0x8f,0x2f,0xe0,0x8, 0x8e,0xef,0xe0,0xf, 0x37,0x28,0xe0,0x4, -0x1f,0x49,0x3f,0x9d,0xb7,0x8e,0x9f,0x8e,0xe7,0xfd,0x0, 0x87,0xe0,0x8, 0x8f,0x6f, -0xe0,0x8, 0xaf,0x5f,0xe0,0x9, 0x8e,0xaf,0xe0,0x9, 0xae,0x9f,0xe0,0x9, 0x8f,0x1f, -0xe0,0x8, 0x8e,0xdf,0x0, 0xeb,0xe0,0xa, 0x8f,0x8f,0xe0,0x2, 0x1c,0xb1,0xe0,0x0, -0x14,0x51,0x3c,0x9f,0xe7,0xfb,0x0, 0xd7,0xe2,0x0, 0xcc,0x5a,0x1, 0x87,0xe0,0x3, -0x1f,0x9a,0xe0,0xb, 0xac,0xaf,0xe7,0xfa,0x0, 0xf8,0xe2,0x0, 0xcc,0x5b,0x1, 0x87, -0xe0,0x3, 0x1f,0x9a,0xe0,0xb, 0xac,0xbf,0xe7,0xfa,0x0, 0xef,0xe2,0x0, 0xcc,0x70, -0x1, 0x89,0xe0,0x4, 0x1f,0xea,0x17,0x0, 0xaf,0xf, 0xe0,0x3, 0x1f,0xd0,0xe7,0xfb, -0x0, 0xe6,0xe2,0x0, 0xcc,0x71,0x1, 0x85,0xe0,0x4, 0x1f,0xd0,0xe7,0xfb,0x0, 0xdf, -0xe2,0x0, 0xcc,0x72,0x1, 0x8d,0xe6,0xfe,0xce,0xe9,0xe6,0xf6,0xcf,0x89,0xe0,0x2, -0x1f,0x7e,0x2e,0x84,0xaf,0x8e,0xe7,0xfa,0x0, 0xd0,0xc7,0x81,0x0, 0xfc,0x3f,0xe8, -0xe1,0xff,0xc7,0x8d,0xe2,0x0, 0xcf,0x81,0x2, 0x97,0xe2,0x0, 0xcc,0x74,0xe0,0x4, -0x1f,0x6a,0x1, 0x8f,0xe0,0x2, 0x1f,0xc9,0xe0,0x0, 0x16,0xf3,0xae,0x8f,0x8e,0x8e, -0x3f,0xed,0xc7,0x81,0xaf,0x8e,0xe0,0x5, 0x1f,0x80,0x3f,0x9d,0xe7,0xfb,0x0, 0xb7, -0x17,0x80,0xaf,0x8e,0x0, 0xf5,0x3f,0xe8,0xe1,0xff,0xc7,0x8b,0xe2,0x0, 0xcf,0x81, -0x2, 0x88,0xe0,0x2, 0x1f,0xc6,0x3c,0x1f,0xe0,0x4e,0xac,0xd8,0xe7,0xfa,0x0, 0xa5, -0xe2,0x1, 0xcc,0x0, 0x1, 0x85,0xe0,0x0, 0x1f,0xfc,0xe7,0xfb,0x0, 0xa0,0xe2,0x1, -0xcc,0x4, 0x1, 0x85,0xe0,0x4, 0x1f,0xd8,0xe7,0xfb,0x0, 0x99,0xe2,0x1, 0xcc,0x40, -0x1, 0x91,0xe0,0x1, 0x1f,0x97,0x17,0x0, 0xb7,0xf, 0xe0,0x1, 0x14,0x44,0x9f,0x8f, -0xe0,0x1, 0x1c,0x80,0x3c,0x9f,0xe0,0x3, 0xda,0x69,0xe0,0x5, 0x1f,0x98,0xe7,0xfb, -0x0, 0x86,0xe2,0x1, 0xcc,0x41,0x1, 0x85,0xe0,0x4, 0x1f,0xfe,0xe7,0xfa,0x0, 0xff, -0xe2,0x1, 0xcc,0x42,0x1, 0x85,0xe0,0x0, 0x1f,0xb8,0xe7,0xfa,0x0, 0xf8,0xe2,0x1, -0xcc,0x43,0x1, 0x85,0xe0,0x3, 0x1f,0xd3,0xe7,0xfa,0x0, 0xf1,0x3f,0xe8,0xc7,0xba, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0xe7,0xf9,0x2, 0xe7,0xe2,0x1, 0xcc,0x47, -0xe0,0x4, 0x1f,0x5b,0x1, 0x8d,0xe0,0x2, 0x1f,0xc9,0x16,0xc6,0xae,0x8f,0x8e,0x8e, -0x3f,0xed,0xc7,0x81,0xaf,0x8e,0xe0,0x1, 0x1f,0x9b,0xe7,0xff,0x0, 0xa0,0x17,0x80, -0xaf,0x8e,0x0, 0xf6,0xe2,0x0, 0xcc,0x58,0x1, 0x87,0xe0,0x4, 0x1f,0xb4,0xe0,0x13, -0x8f,0xbf,0x3c,0x6f,0x38,0x82,0xe2,0x0, 0xcc,0xa, 0x1, 0x87,0xe0,0x4, 0x1f,0xb4, -0xe0,0x1c,0x8c,0x3f,0xe0,0xe4,0x0, 0xb1,0xe2,0x0, 0xcc,0x34,0x2, 0x86,0xe0,0x3, -0x1f,0x9a,0x3c,0x1f,0x8f,0x88,0x0, 0xee,0x8, 0xb1,0x3f,0xe8,0xc7,0xca,0xe2,0x0, -0xcf,0x81,0x2, 0x95,0xe0,0x3, 0x1f,0x9d,0x14,0x36,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf, -0xe0,0x4, 0x1f,0xd9,0x9f,0xf, 0x3f,0x1d,0xb7,0xf, 0xe0,0x3, 0x1f,0x76,0x9f,0x8f, -0xa4,0x8e,0x3c,0x9f,0xe0,0x3, 0xda,0x2, 0x17,0x80,0x0, 0x88,0xe2,0x0, 0xcc,0x35, -0x1, 0x87,0xe0,0x3, 0x1f,0x9a,0xe0,0x6, 0x8f,0xdf,0x3c,0x6f,0x8, 0xe1,0x3f,0xe8, -0xc7,0xc8,0xe2,0x0, 0xcf,0x81,0x2, 0x98,0xe0,0x3, 0x1f,0x9d,0xe0,0x4, 0x1c,0xaf, -0xa7,0x8f,0x14,0x38,0xe0,0x3, 0x9e,0xdf,0xe0,0x3, 0x1f,0x9a,0xe0,0x4, 0x8f,0x5f, -0x3f,0x1d,0xe0,0x4, 0xaf,0x5f,0xe0,0x4, 0x8f,0x5f,0xe0,0x4, 0xaf,0x4f,0xe0,0x4, -0x8f,0xdf,0x3c,0x9f,0x0, 0xd8,0x3f,0xe8,0xc7,0xc6,0xe2,0x0, 0xcf,0x81,0x2, 0x99, -0xe0,0x3, 0x1f,0x9d,0xe0,0x4, 0x1c,0xb3,0xa7,0x8f,0x14,0x3a,0xe0,0x3, 0x9e,0xdf, -0xe0,0x3, 0x1f,0x9a,0xe0,0x4, 0x8f,0x7f,0x3f,0x1d,0xe0,0x4, 0xaf,0x7f,0xe0,0x4, -0x8e,0xff,0xe0,0x4, 0xae,0xef,0xe0,0x4, 0x8f,0xff,0x3c,0x9f,0xe7,0xff,0x0, 0xbc, -0xe2,0x1, 0xcc,0x7b,0x1, 0x86,0xe0,0x3, 0x1f,0xac,0x8f,0x8f,0xe7,0xff,0x0, 0xbf, -0xe2,0x1, 0xcc,0x38,0x1, 0x87,0xe0,0x4, 0x1f,0xb4,0xe0,0x1f,0x8f,0xaf,0xe7,0xff, -0x0, 0xb6,0xe2,0x1, 0xcc,0x39,0x1, 0x87,0xe0,0x4, 0x1f,0xb4,0xe0,0x1a,0x8f,0xcf, -0xe7,0xff,0x0, 0xad,0xe2,0x1, 0xcc,0x3a,0x1, 0x87,0xe0,0x4, 0x1f,0xb4,0xe0,0x19, -0x8f,0xbf,0xe7,0xff,0x0, 0xa4,0xe2,0x1, 0xcc,0x3b,0x1, 0x84,0xe0,0x4, 0x1f,0xb2, -0x0, 0xdd,0xe2,0x1, 0xcc,0x3d,0x1, 0x84,0xe0,0x4, 0x1f,0xb1,0x0, 0xd7,0x3f,0xe8, -0xc7,0xc4,0xe2,0x0, 0xcf,0x81,0x2, 0x99,0xe0,0x3, 0x1f,0x9d,0xe0,0x4, 0x1c,0xb0, -0xa7,0x8f,0x14,0x3c,0xe0,0x3, 0x9e,0xdf,0xe0,0x3, 0x1f,0x9a,0xe0,0x5, 0x8f,0x1f, -0x3f,0x1d,0xe0,0x5, 0xaf,0x1f,0xe0,0x5, 0x8f,0x1f,0xe0,0x5, 0xaf,0xf, 0xe0,0x5, -0x8f,0x9f,0x3c,0x9f,0xe7,0xfe,0x0, 0xf0,0x3f,0xe8,0xc7,0xc2,0xe2,0x0, 0xcf,0x81, -0x2, 0x99,0xe0,0x3, 0x1f,0x9d,0xe0,0x4, 0x1c,0xae,0xa7,0x8f,0x14,0x3e,0xe0,0x3, -0x9e,0xdf,0xe0,0x3, 0x1f,0x9a,0xe0,0x5, 0x8f,0x3f,0x3f,0x1d,0xe0,0x5, 0xaf,0x3f, -0xe0,0x5, 0x8e,0xbf,0xe0,0x5, 0xae,0xaf,0xe0,0x5, 0x8f,0xbf,0x3c,0x9f,0xe7,0xfe, -0x0, 0xd3,0x3f,0xe8,0xe1,0xff,0xc7,0xb2,0xe2,0x0, 0xcf,0x81,0x2, 0x94,0xe0,0x3, -0x1f,0x9d,0xe0,0x0, 0x14,0x4e,0xa7,0x8f,0xe0,0x3, 0x9e,0xdf,0xe0,0x4, 0x1f,0xc9, -0x9f,0xf, 0x3f,0x1d,0xb7,0xf, 0xe0,0x4, 0x1f,0x6b,0x9f,0x8f,0xa4,0x8e,0x3c,0x9f, -0xe7,0xfe,0x0, 0xba,0x3f,0xe8,0xc7,0xc0,0xe2,0x0, 0xcf,0x8d,0x2, 0x87,0xe0,0x3, -0x1f,0x9a,0x3c,0x1f,0x8f,0x88,0xe7,0xfe,0x0, 0xba,0xe2,0x1, 0xcc,0x0, 0x1, 0x85, -0xe0,0x0, 0x1f,0xfc,0xe7,0xfe,0x0, 0xf3,0xe2,0x1, 0xcc,0x2, 0x1, 0x84,0x8, 0xa1, -0xe0,0x90,0x0, 0xe4,0xe2,0x1, 0xcc,0x4, 0x1, 0x85,0xe0,0x4, 0x1f,0xd8,0xe7,0xfe, -0x0, 0xe6,0xe2,0x1, 0xcc,0x3c,0x1, 0x8d,0xe0,0x3, 0x1f,0xdb,0x8f,0xf, 0xe0,0x4, -0x1f,0xef,0xe4,0x0, 0xc7,0x13,0x3f,0x9e,0xe0,0x1, 0x8f,0xaf,0xe7,0xfe,0x0, 0x97, -0xe2,0x1, 0xcc,0x3e,0x1, 0x8d,0xe0,0x3, 0x1f,0xdb,0x8f,0xf, 0xe0,0x4, 0x1f,0xef, -0xe4,0x0, 0xc7,0x13,0x3f,0x9e,0xe0,0x1, 0x8f,0x9f,0xe7,0xfe,0x0, 0x88,0xe2,0x1, -0xcc,0x3f,0x1, 0x85,0xe0,0x3, 0x1f,0xcb,0xe7,0xfe,0x0, 0xc1,0xe2,0x1, 0xcc,0x34, -0x1, 0x85,0xe0,0x1, 0x1f,0xa0,0xe7,0xfe,0x0, 0xba,0xe2,0x1, 0xcc,0x35,0x1, 0x8e, -0xe0,0x4, 0x1f,0x41,0x8f,0x8e,0xe2,0x1, 0xcf,0xaa,0x1, 0x85,0x16,0x80,0xae,0x8e, -0xe7,0xfd,0x0, 0xed,0x8f,0x8e,0xe7,0xfd,0x0, 0xea,0xe2,0x1, 0xcc,0x40,0x1, 0x85, -0xe0,0x5, 0x1f,0x98,0xe7,0xfe,0x0, 0xa3,0xe2,0x1, 0xcc,0x41,0x1, 0x85,0xe0,0x4, -0x1f,0xfe,0xe7,0xfe,0x0, 0x9c,0xe2,0x1, 0xcc,0x42,0x1, 0x85,0xe0,0x0, 0x1f,0xb8, -0xe7,0xfe,0x0, 0x95,0xe2,0x1, 0xcc,0x43,0x1, 0x85,0xe0,0x3, 0x1f,0xd3,0xe7,0xfe, -0x0, 0x8e,0x3f,0xe8,0xc7,0xba,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x96, -0xe2,0x1, 0xcc,0x47,0xe0,0x4, 0x1f,0x5b,0x1, 0x8e,0xe0,0x2, 0x1f,0xc9,0x16,0xc6, -0xae,0x8f,0x8e,0x8e,0x3f,0xed,0xc7,0x81,0xaf,0x8e,0xe0,0x1, 0x1f,0x9b,0x3f,0x9d, -0xe7,0xfd,0x0, 0xf5,0x17,0x80,0xaf,0x8e,0x0, 0xf5,0x3f,0xe8,0xc7,0xbc,0xe2,0x1, -0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x93,0xe0,0x3, 0x1f,0x9d,0xe0,0x1, 0x1c,0x80, -0xa7,0x8f,0xe0,0x1, 0x14,0x44,0xe0,0x3, 0x9e,0xdf,0xe0,0x1, 0x1f,0x97,0x9f,0xf, -0x3f,0x1d,0xb7,0xf, 0x9f,0x8f,0x3c,0x9f,0xe7,0xfd,0x0, 0x8e,0x3f,0xe8,0xc7,0xb2, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x95,0xe0,0x3, 0x1f,0x9d,0xe0,0x1, -0x14,0x4e,0xa7,0x8f,0xe0,0x3, 0x9f,0x5f,0xe0,0x1, 0x1f,0x94,0x9c,0x8f,0x3c,0x9e, -0xe3,0xff,0xc4,0xff,0xb4,0x8f,0xe0,0x4, 0x1f,0xe3,0xa7,0x8f,0x3c,0x9f,0xe7,0xfc, -0x0, 0xf3,0x3f,0xe8,0xe1,0xff,0xc7,0xaf,0xe2,0x0, 0xcf,0x81,0x2, 0x96,0xe0,0x3, -0x1f,0x9d,0xe0,0x2, 0x1c,0xb1,0xa7,0x8f,0xe0,0x0, 0x14,0x51,0xe0,0x3, 0x9e,0xdf, -0xe0,0x3, 0x1f,0x9a,0xe0,0xa, 0x8f,0xf, 0x3f,0x1d,0xe0,0xa, 0xaf,0xf, 0xe0,0xa, -0x8f,0x8f,0x3c,0x9f,0xe7,0xfc,0x0, 0xd8,0x3f,0x68,0xe1,0xff,0xc7,0x20,0x3f,0xee, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x8c,0x2, 0x86,0xe0,0x1, 0x1f,0x8b,0x3f,0x9e, -0xe7,0xfd,0x0, 0x95,0xe2,0x0, 0xcc,0x70,0x1, 0x85,0xe0,0x3, 0x1f,0xd0,0xe7,0xfd, -0x0, 0x8e,0xe2,0x0, 0xcc,0x71,0x1, 0x85,0xe0,0x4, 0x1f,0xd0,0xe7,0xfd,0x0, 0x87, -0xe2,0x0, 0xcc,0x72,0x1, 0x88,0xe0,0x2, 0x1f,0xfe,0x8f,0x8f,0xe6,0xfa,0xcf,0x8f, -0xe7,0xfc,0x0, 0xbd,0x3f,0xe8,0xe1,0xff,0xc7,0x8d,0xe2,0x0, 0xcf,0x81,0x2, 0x96, -0xe2,0x0, 0xcc,0x74,0xe0,0x4, 0x1f,0x6a,0x1, 0x8e,0xe0,0x2, 0x1f,0xc9,0xe0,0x0, -0x16,0xf3,0xae,0x8f,0x8e,0x8e,0x3f,0xed,0xc7,0x81,0xaf,0x8e,0xe0,0x5, 0x1f,0x80, -0xe7,0xfe,0x0, 0xef,0x17,0x80,0xaf,0x8e,0x0, 0xf6,0x3f,0xe8,0xe1,0xff,0xc7,0x8b, -0xe2,0x0, 0xcf,0x81,0x2, 0x88,0xe0,0x2, 0x1f,0xc6,0x3c,0x1f,0xe0,0x4e,0x8f,0xd8, -0xe7,0xfc,0x0, 0x95,0xe2,0x0, 0xcc,0x5a,0x1, 0x87,0xe0,0x3, 0x1f,0x9a,0xe0,0xb, -0x8f,0xaf,0xe7,0xfc,0x0, 0x8c,0xe2,0x0, 0xcc,0x5b,0x1, 0x87,0xe0,0x3, 0x1f,0x9a, -0xe0,0xb, 0x8f,0xbf,0xe7,0xfc,0x0, 0x83,0xe2,0x1, 0xcc,0x7e,0xe7,0xfb,0x1, 0xf6, -0xe0,0x4, 0x1f,0xb4,0xe0,0x1c,0x8f,0xbf,0xe7,0xfb,0x0, 0xf9,0x8, 0xb2,0xe0,0x4, -0x1f,0x34,0xe0,0x3, 0x1e,0x1a,0xe0,0x13,0x8f,0xbe,0xe0,0x4, 0x1d,0xf7,0x16,0x80, -0xe0,0xb, 0xaf,0x8c,0x3c,0xed,0x3f,0xeb,0xe0,0xa, 0x36,0xa2,0xc6,0x81,0x3d,0x1b, -0xe2,0x2, 0xce,0x80,0xbc,0x8a,0x1, 0xf9,0xe0,0x3, 0x1d,0x57,0xe0,0x3, 0x1e,0x99, -0xe0,0x1f,0xbd,0x7b,0x3c,0x6d,0xbe,0x8b,0xea,0x0, 0xce,0x84,0x15,0x81,0x3c,0xed, -0xe0,0x2, 0x3c,0x1b,0xe0,0x1, 0x35,0xa2,0xc5,0x81,0x38,0x9f,0xe2,0x0, 0xcd,0xd1, -0xb9,0x1, 0x1, 0xf7,0xa5,0xaf,0xea,0x0, 0xcc,0x6, 0xe8,0x0, 0xcd,0x82,0xbd,0xaf, -0xa5,0xbf,0xe8,0x0, 0xcd,0x82,0xbd,0xbf,0xe0,0x1, 0xa5,0xcf,0xe8,0x0, 0xcd,0x82, -0xe0,0x1, 0xbd,0xcf,0xe0,0x1, 0xa5,0xdf,0xe8,0x0, 0xcd,0x82,0xe0,0x1, 0xbd,0xdf, -0xe0,0x1, 0xa5,0xef,0xe8,0x0, 0xcd,0x82,0xe0,0x1, 0xbd,0xef,0xe0,0x2, 0xa5,0xcf, -0xe8,0x0, 0xcd,0x82,0xe0,0x2, 0xbd,0xcf,0xe0,0x5, 0xa5,0xef,0xe8,0x0, 0xcd,0x82, -0xe0,0x5, 0xbd,0xef,0xe0,0x5, 0xa5,0xff,0xe8,0x0, 0xcd,0x82,0xe0,0x5, 0xbd,0xff, -0xe0,0x6, 0xa5,0x8f,0xe8,0x0, 0xcd,0x82,0xe0,0x6, 0xbd,0x8f,0xe0,0x3, 0x1d,0x98, -0xe0,0x6, 0xbd,0xdf,0xe0,0x3, 0x1d,0xf6,0xa5,0x8b,0x3d,0x98,0xe0,0x6, 0xbd,0xef, -0xe0,0x6, 0xbd,0xff,0xe0,0x4, 0x8d,0xdc,0xe0,0x3, 0x1c,0x5b,0xe0,0x1, 0xc5,0xe7, -0x3d,0x9e,0x3d,0x9d,0xe0,0x7, 0xbd,0x8f,0xe0,0x4, 0x8d,0xdc,0xe0,0x1, 0xc5,0xe7, -0x3d,0x9e,0x3d,0x9d,0xe0,0x7, 0xbd,0x9f,0xe0,0x4, 0x8d,0xfc,0xe0,0x1, 0xc5,0xf0, -0x3d,0x9e,0x3d,0x9d,0xe0,0x7, 0xbd,0xaf,0xe0,0x4, 0x8d,0xfc,0xe0,0x1, 0xc5,0xf0, -0x3d,0x9e,0x3d,0x9d,0xe0,0x7, 0xbd,0xbf,0xe0,0x5, 0x8d,0x9c,0xc5,0x89,0x3d,0x9e, -0x3d,0x9d,0xe0,0x7, 0xbd,0xcf,0xe0,0x5, 0x8d,0x9c,0xc5,0x89,0x3d,0x9e,0x3d,0x9d, -0xe0,0x7, 0xbd,0xdf,0xe0,0x5, 0x8d,0xbc,0xc5,0x9d,0x3d,0x9e,0x3d,0x9d,0xe0,0x7, -0xbd,0xef,0xe0,0x5, 0x8d,0xbc,0xc5,0x9d,0x3f,0x1b,0x3f,0x1d,0xe0,0x7, 0xbf,0x7f, -0xe0,0x3, 0x1f,0x17,0xe0,0x9, 0xbf,0x4f,0xe0,0x4, 0x1f,0x6b,0xe0,0x8, 0x8d,0xec, -0xa7,0xe, 0x3d,0x9e,0x3d,0x9d,0xe0,0x9, 0xbd,0xef,0xe0,0x8, 0x8e,0x6c,0xe0,0x4, -0x1d,0xef,0x3f,0x1c,0x3f,0x1d,0xe0,0x9, 0xbf,0x7f,0x16,0x13,0x8f,0x8, 0x3e,0x3e, -0x17,0x13,0xc6,0xa, 0x3e,0x1b,0x3e,0x1d,0xe0,0x17,0xbe,0x4f,0x8e,0x8, 0x3f,0x3c, -0xc7,0x9, 0x3f,0x1b,0x3e,0x9e,0xe0,0x3, 0x1f,0x4a,0xe0,0x17,0xbe,0xef,0xe0,0x17, -0xbf,0x7f,0xe0,0x2, 0x1f,0xd, 0xe0,0x1, 0x1d,0x8a,0xe0,0xa, 0xbf,0x1f,0xe0,0xa, -0xbf,0x2f,0xe0,0x3, 0x1f,0x16,0xe0,0xa, 0xbd,0x7f,0xe0,0xb, 0xbf,0xf, 0xe0,0x3, -0x1f,0x15,0xe0,0xb, 0xbf,0x2f,0xe0,0x3, 0x1f,0x14,0xe0,0xb, 0xbf,0x3f,0xe0,0x0, -0x17,0x60,0xe0,0xc, 0x3d,0x9e,0xe0,0xd, 0x37,0x22,0xc7,0x1, 0x3e,0x9f,0xe2,0x0, -0xcf,0x6d,0xbe,0xd, 0x1, 0xf7,0xe0,0x1, 0x1f,0x1f,0xe0,0x16,0xbf,0x4f,0xe0,0x4, -0x1f,0x40,0xe0,0x16,0xbf,0x5f,0xe0,0x4, 0x1f,0x2d,0xe0,0x17,0xbf,0xf, 0xe0,0x4, -0x1f,0x2c,0xe0,0x17,0xbf,0x1f,0xe0,0x4, 0x1f,0x2b,0xe0,0x17,0xbf,0x2f,0xe0,0x4, -0x1f,0x2a,0xe0,0x17,0xbf,0x3f,0xe0,0x4, 0x1f,0x29,0xe0,0x17,0xbf,0x5f,0xe0,0x3, -0x1f,0x2b,0xe0,0x1f,0xbf,0x3f,0xe0,0x4, 0x1f,0x63,0xa7,0xe, 0x3c,0x9e,0xe0,0x19, -0xbc,0xef,0xe0,0x5, 0x1f,0x17,0xe0,0x19,0xbc,0xff,0xe0,0x18,0xbf,0xf, 0xe0,0x4, -0x1f,0x7d,0xe0,0x18,0xbf,0x1f,0xe0,0x0, 0x1f,0x37,0xe0,0x18,0xbf,0x2f,0xe0,0x3, -0x1f,0x52,0xe0,0x18,0xbf,0x3f,0xe0,0x0, 0x1f,0x7f,0xe0,0x18,0xbf,0x4f,0xe0,0x18, -0xbf,0x5f,0xe0,0x1, 0x1f,0x1a,0xe0,0x18,0xbf,0x6f,0xe0,0x18,0xbf,0x7f,0xe0,0x3, -0x1f,0x4f,0xe0,0xe, 0xbf,0xf, 0xe0,0x4, 0x1f,0x4f,0xe0,0xe, 0xbf,0x1f,0xe0,0x2, -0x1f,0x7d,0xe0,0xe, 0xbf,0x2f,0xe0,0x4, 0x1f,0x7f,0xe0,0xe, 0xbf,0x3f,0xe0,0xe, -0xbf,0x4f,0xe0,0x2, 0x1f,0x45,0xe0,0xe, 0xbf,0x5f,0xe0,0x2, 0x1f,0x44,0xe0,0xe, -0xbf,0x6f,0xe0,0x0, 0x1f,0x7b,0xe0,0x10,0xbf,0xf, 0xe0,0x4, 0x1f,0x4, 0xe0,0x10, -0xbf,0x2f,0xe0,0x4, 0x1f,0x57,0xe0,0x10,0xbf,0x4f,0x9, 0x61,0x8, 0xb2,0x3f,0x68, -0xe4,0x0, 0xc7,0x13,0xe0,0x4, 0x1f,0xef,0x3f,0x9e,0x89,0x4f,0xe0,0x1, 0xad,0xf, -0xac,0xcf,0xe0,0x4, 0xd3,0x30,0xe0,0x1, 0xd5,0xb3,0xe0,0x1, 0xd6,0x4c,0x3c,0x62, -0x9, 0x61,0x8, 0xb2,0x3f,0x68,0xe4,0x0, 0xc7,0x13,0xe0,0x4, 0x1f,0xef,0x39,0x68, -0x3f,0x9e,0xe0,0xe, 0x34,0xc8,0xaf,0xf, 0xac,0x9f,0xe0,0x4, 0xd3,0x3b,0x3c,0x62, -0xe0,0x1, 0xd5,0xd, 0x9, 0x21,0xe0,0x3d,0x0, 0xb7,0x8, 0xb2,0x3f,0x68,0xe4,0x0, -0xc7,0x13,0xe0,0x4, 0x1f,0xef,0x39,0x68,0x3f,0x9e,0xe0,0xe, 0x34,0xc8,0xaf,0x2f, -0xac,0xbf,0xe0,0x4, 0xd3,0x27,0x3c,0x62,0xe0,0x1, 0xd4,0xf9,0x9, 0x21,0xe0,0x3d, -0x0, 0xa3,0x3f,0x68,0xe4,0x0, 0xc7,0x13,0xe0,0x4, 0x1f,0xef,0x3f,0x9e,0x3f,0x68, -0xe4,0x0, 0xc7,0x12,0xac,0xdf,0xe0,0x5, 0x1f,0x86,0x3f,0x1f,0x3e,0xee,0x17,0x89, -0xe1,0x80,0xac,0x9d,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0xe0,0x1, 0xac,0x8d,0x2f,0xf9, -0x3c,0xe8,0x3c,0x6e,0xe0,0x20,0x0, 0xb8,0x8, 0xb3,0xe0,0x3, 0x19,0x5b,0xe0,0x4, -0x1f,0x6f,0x8f,0x82,0xe0,0x3, 0x1e,0x93,0xe4,0x0, 0xc7,0x93,0xe0,0x3, 0x19,0x9a, -0xc7,0x84,0x3f,0x9e,0x8e,0xf, 0x8f,0x9f,0xae,0xd, 0xaf,0x9d,0x8f,0x82,0xe4,0x0, -0xc7,0x93,0x3f,0x9e,0x8e,0x8f,0x8f,0x9f,0x36,0xa8,0x3f,0xcd,0xe6,0xf5,0xcf,0x8f, -0xe0,0x8, 0xaf,0x83,0x8f,0x82,0xe4,0x0, 0xc7,0x93,0x3f,0x9e,0x8e,0xaf,0x8f,0xbf, -0x36,0xa8,0x3f,0xcd,0xe6,0xf5,0xcf,0x8f,0xe0,0x8, 0xaf,0x93,0x8f,0x82,0xe4,0x0, -0xc7,0x93,0x3f,0x1f,0xe0,0x1, 0x8f,0xe, 0xe0,0x9, 0xaf,0x43,0x8f,0x82,0x3c,0x6f, -0xd8,0x83,0xe0,0x4, 0x1f,0xeb,0xe0,0x0, 0x14,0x4e,0xa4,0x8f,0xe0,0x3, 0xd5,0xfe, -0x89,0x2, 0xe0,0x8, 0xa9,0x43,0x9, 0xe1,0x8, 0xb2,0x39,0x68,0x14,0x1, 0xe0,0x2, -0xda,0x81,0xe0,0x3, 0x1f,0xdb,0xa9,0xf, 0xe0,0x1, 0x1f,0xa0,0x8f,0x8f,0x3c,0x6f, -0xe0,0x2, 0xd7,0xf0,0xdf,0xb2,0x9, 0x21,0xe1,0x2e,0x0, 0xea,0x8, 0xb4,0xe0,0x3, -0x1f,0xdb,0xe0,0x2, 0x19,0x38,0x8f,0x8f,0x39,0xef,0x9f,0x82,0xe6,0xff,0xcf,0xff, -0x27,0x8d,0x9f,0x82,0x3c,0x63,0xe3,0xff,0xc7,0xfe,0xb7,0x82,0xe0,0x3, 0x1f,0x9a, -0xe0,0x8, 0x8f,0x8f,0xe0,0x9, 0x37,0xa3,0xdf,0x55,0x9f,0x82,0xe2,0x0, 0xc7,0x82, -0x27,0x8d,0x9f,0x82,0x3c,0x63,0xe3,0xff,0xc7,0xfd,0xb7,0x82,0xe0,0x3, 0x1f,0x9a, -0xe0,0x8, 0x8f,0x9f,0xe0,0x9, 0x37,0xa3,0xdf,0x59,0x9f,0x82,0xe2,0x0, 0xc7,0x88, -0x27,0x8c,0x9f,0x82,0x3c,0x63,0xe3,0xff,0xc7,0xf7,0xb7,0x82,0xe0,0x3, 0x1f,0x9a, -0xe0,0x8, 0x8f,0xbf,0x3c,0xef,0xdf,0x5e,0x9f,0x82,0xe2,0x0, 0xc7,0x84,0x27,0x8f, -0x9f,0x82,0x3c,0x63,0xe3,0xff,0xc7,0xfb,0xb7,0x82,0xe0,0x3, 0x1f,0x9a,0xe0,0x8, -0x8f,0x2f,0xe0,0x9, 0x8f,0xcf,0x3c,0xee,0x3d,0x6f,0xdf,0x11,0xe0,0x3, 0x1f,0xcb, -0x8f,0xf, 0xe2,0x0, 0xcf,0x1, 0x2, 0x94,0x9f,0x2, 0xe2,0x0, 0xc7,0x10,0x27,0x10, -0x9f,0x2, 0xe3,0xff,0xc7,0x6f,0xb7,0x2, 0x8f,0xf, 0x2f,0x30,0x3f,0xe3,0xe0,0x4, -0x1c,0x72,0xe4,0x0, 0xc7,0xbe,0x3c,0xe3,0x3c,0x1f,0xe0,0x0, 0xdd,0x1d,0x9f,0x82, -0xe2,0x0, 0xc7,0xa0,0x27,0x97,0xe0,0x4, 0x1a,0x34,0x9f,0x82,0x8d,0x44,0xe0,0x4, -0x1c,0xb0,0xe0,0x4, 0x1c,0x28,0xe3,0xff,0xc7,0xdf,0xb7,0x82,0xef,0xfd,0xda,0xfc, -0x8d,0x54,0xe0,0x4, 0x1c,0xae,0xe0,0x4, 0x1c,0x27,0xef,0xfd,0xda,0xf5,0xe0,0x0, -0xd9,0xe4,0x9f,0x82,0xe2,0x80,0xc7,0x80,0x27,0x97,0x9f,0x82,0x3c,0x63,0xe3,0x7f, -0xc7,0xff,0xb7,0x82,0xa, 0x21,0xe0,0x1f,0x0, 0xf7,0x8f,0x8f,0xe2,0x0, 0xcf,0x81, -0x1, 0xd7,0x3f,0xe3,0xe4,0x0, 0xc7,0xbe,0xe0,0x1, 0x1c,0xe, 0x3c,0xe3,0x3c,0x1f, -0xe0,0x0, 0xdd,0x92,0x0, 0xcd,0xa, 0x61,0x8, 0xb4,0xe0,0x0, 0x19,0x77,0x9f,0x82, -0xe6,0xff,0xcf,0xff,0x27,0x87,0x9f,0x82,0xe3,0xff,0xc7,0xfe,0xb7,0x82,0xe0,0x1, -0xd7,0x88,0x9f,0x82,0xe2,0x0, 0xc7,0x82,0x27,0x87,0x9f,0x82,0xe3,0xff,0xc7,0xfd, -0xb7,0x82,0xe0,0x1, 0xd7,0x7f,0x9f,0x82,0xe0,0x4, 0x19,0xb4,0xe2,0x0, 0xc7,0x90, -0x27,0xb3,0x9f,0x82,0xe0,0x3, 0x1a,0x1a,0xe3,0xff,0xc7,0xef,0xb7,0x82,0xe0,0x6, -0x8f,0xa4,0x3c,0x6f,0xe0,0x7, 0xd2,0xd8,0x3f,0x64,0xe0,0x2, 0x24,0x12,0xe0,0x0, -0x1f,0xfd,0xe0,0x6, 0x8e,0x24,0x8e,0x8f,0x3f,0xed,0xe4,0x0, 0xc7,0x8c,0x3f,0x93, -0xe0,0x2, 0xc7,0xa9,0xae,0xf, 0xe0,0x2, 0x1f,0xfc,0x8f,0x8f,0x3e,0xff,0xe0,0x1, -0x1, 0x7c,0xe4,0x0, 0xc7,0x8c,0x3f,0x93,0xe0,0x2, 0xc7,0xa9,0x8f,0x8f,0xe0,0x6, -0xaf,0xa4,0xe0,0x1c,0xaf,0xb3,0xe0,0x6, 0x8f,0x9e,0xe0,0x1c,0xaf,0xc3,0xe0,0x1, -0xdd,0x53,0xe0,0x4, 0xd2,0x2a,0x9f,0x82,0xe2,0x1, 0xc7,0x80,0x27,0x94,0x9f,0x82, -0xe0,0x1f,0x8d,0x23,0xe3,0xfe,0xc7,0xff,0xb7,0x82,0x14,0x0, 0xe0,0x3, 0x1f,0x9a, -0xe0,0x6, 0x8f,0xbf,0x3c,0xef,0xe0,0x4, 0x1f,0xb2,0xe0,0x1f,0xac,0x93,0x8d,0x8f, -0xe0,0x2, 0xd1,0x71,0x9f,0x82,0xe2,0x0, 0xc7,0xc0,0x27,0xab,0x9f,0x82,0xe0,0x3, -0x1f,0x1a,0xe3,0xff,0xc7,0xbf,0xb7,0x82,0x15,0xa, 0xe0,0x3, 0x8f,0xee,0x14,0x81, -0xe0,0x1f,0xaf,0xf3,0xe0,0x4, 0x8f,0xbe,0x3c,0x6f,0xe0,0x4, 0x8f,0xae,0xe0,0x1f, -0xac,0x33,0x3e,0xef,0xe0,0x4, 0x8f,0x9e,0xe0,0x4, 0x8e,0xe, 0xe0,0x4, 0x1f,0x26, -0xe0,0x1f,0xae,0xd3,0xae,0xe, 0xe0,0x4, 0x1f,0x25,0xe0,0x1f,0xaf,0xe3,0xac,0xe, -0xe0,0x4, 0x1f,0x24,0xae,0x8e,0xe0,0x4, 0x1f,0x23,0xaf,0x8e,0xe0,0xa, 0xd5,0x8a, -0x9f,0x82,0xe2,0x20,0xc7,0x80,0x27,0x85,0x9f,0x82,0xe3,0xdf,0xc7,0xff,0xb7,0x82, -0x9f,0x82,0xe2,0x0, 0xc7,0xa0,0xe0,0x0, 0x27,0xca,0x9f,0x82,0xe0,0x3, 0x1a,0x1a, -0xe3,0xff,0xc7,0xdf,0xb7,0x82,0xe0,0x6, 0x8f,0xc4,0xe2,0x0, 0xcf,0xe6,0x5, 0x85, -0xe0,0x0, 0x17,0xe6,0xe0,0x6, 0xaf,0xc4,0x15,0x1, 0xe0,0x6, 0x8f,0x44,0xe0,0x6, -0x8f,0xc4,0x3c,0x6e,0x3c,0xef,0xe5,0xff,0xc4,0xf6,0xe4,0x0, 0xc4,0xa, 0xe0,0x8, -0xc4,0x80,0xe3,0xff,0xc4,0xff,0xe0,0x8, 0xc4,0x0, 0xe0,0xa, 0xd5,0xac,0xe0,0x6, -0x8f,0x44,0xe0,0x6, 0x8f,0xc4,0x3c,0x6e,0x3c,0xef,0xe5,0xff,0xc4,0xf6,0xe4,0x0, -0xc4,0xa, 0xe0,0x8, 0xc4,0x80,0x15,0x1, 0xe3,0xff,0xc4,0xff,0xe0,0x8, 0xc4,0x0, -0xe0,0xa, 0xd5,0xf1,0xe0,0x6, 0x8f,0x44,0xe0,0x6, 0x8f,0xc4,0x3c,0x6e,0x3c,0xef, -0xe5,0xff,0xc4,0xf6,0xe4,0x0, 0xc4,0xa, 0xe0,0x8, 0xc4,0x80,0x15,0x1, 0xe3,0xff, -0xc4,0xff,0xe0,0x8, 0xc4,0x0, 0xe0,0xa, 0xd6,0x36,0x9f,0x82,0xe2,0x0, 0xc7,0x84, -0x27,0x8b,0x9f,0x82,0xe3,0xff,0xc7,0xfb,0xb7,0x82,0xe0,0x3, 0x1f,0xac,0x8f,0x8f, -0x3c,0x6f,0xe0,0x2, 0xd0,0xbe,0x9f,0x82,0xe2,0x0, 0xc7,0x88,0x27,0x8c,0x9f,0x82, -0xe3,0xff,0xc7,0xf7,0xb7,0x82,0xe0,0x3, 0x1f,0x9a,0xe0,0x1, 0x8f,0xaf,0x3c,0x6f, -0xe0,0x7, 0xd2,0xf, 0xe0,0xc, 0x9f,0x93,0xe6,0xf1,0xcf,0xff,0x27,0x95,0xe0,0x3, -0x1f,0xcb,0x8f,0x8f,0xe2,0x0, 0xcf,0x82,0x1, 0x8f,0xe0,0x2, 0x1f,0xb8,0x9f,0xf, -0xe2,0x0, 0xc7,0x10,0x27,0x9, 0x9f,0xf, 0xe0,0x4, 0x1c,0x5e,0xe3,0xff,0xc7,0x6f, -0xb7,0xf, 0xe0,0x1, 0xd6,0x9f,0x97,0x82,0xe2,0x0, 0xcf,0x80,0x3, 0xa, 0x9f,0x82, -0xe6,0xd1,0xcf,0x9f,0xb7,0x82,0xe0,0x3, 0x1f,0x9a,0x8f,0xef,0xe0,0x12,0xaf,0xc3, -0x9f,0x82,0xe2,0x40,0xc7,0x80,0x27,0x92,0x9f,0x82,0xe3,0xbf,0xc7,0xff,0xb7,0x82, -0xa, 0x21,0xe0,0x34,0x0, 0xcf,0xe0,0x6, 0x8f,0xa4,0xe7,0xfe,0x0, 0x8c,0xe0,0x1c, -0x8f,0xb3,0xe0,0x6, 0xaf,0xa4,0xe7,0xfe,0x0, 0x90,0xa, 0x61,0x8, 0xb1,0xde,0x27, -0x8, 0xa1,0xe7,0xfd,0x0, 0xbb,0x8, 0xb2,0xe0,0x3, 0x19,0x1a,0x8f,0xc2,0xe2,0x0, -0xcf,0x84,0x1, 0x9c,0x17,0x81,0xaf,0xc2,0xe0,0x2, 0x1f,0x8c,0xe0,0x2, 0x1f,0xb, -0x8f,0x8f,0x8c,0xe, 0x37,0xa8,0x3c,0x4f,0xe0,0x9, 0xd5,0x61,0xe0,0x9, 0xd5,0x78, -0xe0,0x4, 0x1f,0xb4,0x17,0x17,0xe0,0x12,0xaf,0x5f,0xe0,0x12,0xaf,0x6f,0x14,0x1, -0xe0,0x2, 0xdd,0x8c,0x17,0x82,0xaf,0xc2,0x9, 0x61,0xe2,0x0, 0xcf,0x86,0x1, 0xfd, -0x17,0x81,0xaf,0xc2,0xe0,0x2, 0x1f,0x8c,0xe0,0x2, 0x1f,0xb, 0x8f,0x8f,0x8c,0xe, -0x37,0xa8,0x3c,0x4f,0xe0,0x9, 0xd5,0x43,0xe0,0x2, 0xdb,0xe, 0xe0,0x4, 0x1f,0x34, -0xe0,0x12,0x8f,0xee,0xcf,0x90,0xe0,0x12,0xaf,0xee,0x0, 0xe2,0xe0,0x3, 0x1f,0x9a, -0xe0,0x8, 0x8f,0xcf,0x3c,0x6f,0xe0,0x3, 0x1f,0xdb,0x8f,0x8f,0x3c,0x7f,0x1, 0x3, -0xe7,0xfb,0x0, 0xcc,0x38,0x82,0x8, 0xb4,0xe0,0x5, 0x19,0x18,0x8c,0x2, 0x3f,0xe8, -0xc7,0xff,0xe2,0x0, 0xcf,0x82,0x2, 0x8f,0xe0,0x1, 0x1f,0x97,0x11,0x80,0xe0,0x3, -0x1a,0x53,0xb1,0x8f,0x17,0x81,0xaf,0x84,0xe0,0x9, 0xde,0xa7,0xe7,0xff,0x17,0xaa, -0xa9,0x82,0xaf,0x84,0xa, 0x61,0x8, 0xb5,0xe0,0x3, 0x19,0x50,0x8f,0x82,0xe2,0x0, -0xcf,0x82,0x1, 0xb2,0xe0,0x2, 0x1f,0xc6,0x3a,0xe2,0x9f,0xf, 0x39,0x6f,0xe2,0xd4, -0xcf,0x5c,0x1, 0xa3,0xe0,0x2, 0x1a,0x7e,0xe0,0x4, 0x19,0xd0,0x8d,0x4, 0xe0,0x3, -0x1c,0xfa,0x8c,0x3, 0x15,0x80,0xd5,0xad,0x8d,0x4, 0xe0,0x3, 0x1f,0x7a,0x17,0x80, -0xe1,0xff,0x16,0xff,0x3d,0x7f,0x1, 0x89,0xe0,0x5, 0x1c,0x80,0x8c,0x3, 0x15,0x80, -0xd6,0x26,0x17,0x80,0xb7,0x82,0x0, 0x89,0x9e,0xe, 0x3e,0x7d,0x1, 0x86,0xc7,0x4, -0xe0,0x40,0x9e,0x1e,0x3e,0x7d,0x1, 0x4, 0x17,0x80,0xaf,0x85,0xa, 0xe1,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0x0, 0xe8,0xe2,0x0, 0xcf,0x81,0x1, 0xf9,0xe0,0x2, 0x1f,0xfe, -0xe0,0x5, 0x1c,0x80,0x8d,0xf, 0xe0,0x4, 0x1f,0xd0,0x15,0x80,0x8c,0xf, 0xd5,0x81, -0x17,0x80,0xaf,0x82,0x0, 0xec,0x8, 0xb3,0xe0,0x2, 0x19,0xb8,0xdf,0x55,0xdf,0x9c, -0xdf,0xb3,0xe0,0x0, 0x1f,0xf7,0x99,0x3, 0x9f,0x8f,0x29,0x2, 0x27,0x98,0x14,0x1, -0xe2,0x1, 0xc1,0x0, 0xe0,0x2, 0xd7,0xde,0x21,0x6, 0x9f,0x83,0xe3,0xfe,0xc7,0xff, -0xb7,0x83,0xdf,0x7d,0xdf,0x3c,0xe0,0x4, 0x1f,0xc1,0xe7,0xff,0x17,0x2a,0xaf,0xf, -0xe0,0x2, 0xdc,0xc7,0x2c,0x4, 0x9, 0xa1,0xe0,0x4d,0x0, 0xeb,0x9, 0xe1,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3d,0xe0,0x3, 0x19,0x9a,0xe0,0x3, 0x8f,0xc3,0x39,0x6f,0xe0,0x3, -0x8f,0xd3,0xe0,0x3, 0x8f,0x33,0xe0,0x1, 0x27,0x23,0xe6,0xde,0xc9,0x62,0x39,0x1f, -0xe0,0x1, 0x21,0x1e,0xe0,0x4, 0x1f,0xb4,0xe0,0x2, 0x1c,0x60,0xe0,0x8, 0x9b,0x3f, -0x14,0x80,0xe0,0x5, 0x33,0x21,0x3d,0x65,0xef,0xfd,0xd8,0xde,0xe0,0x2, 0x1c,0x5e, -0xe0,0x3, 0x15,0x7a,0x14,0x80,0xef,0xfd,0xd8,0xd7,0xe0,0x2, 0x1c,0x5d,0xe0,0x2, -0x15,0x74,0x14,0x80,0x12,0x0, 0xf0,0x2, 0x1d,0xea,0xf0,0x2, 0x1e,0x78,0xf0,0x2, -0x1d,0x5e,0xf0,0x2, 0x1c,0xe6,0xef,0xfd,0xd8,0xc7,0xf0,0x13,0x16,0xc4,0x3b,0xe4, -0xf0,0x0, 0x14,0x1, 0xe8,0x40,0x3c,0x6d,0xe0,0x9, 0xd4,0x69,0x3c,0x67,0xe0,0x2, -0xd7,0x89,0xe8,0x40,0x3c,0x68,0xe0,0x5, 0xd0,0x25,0xe0,0x6, 0xd6,0x1c,0xe0,0x6, -0xd5,0xef,0xe8,0x0, 0xa4,0xb, 0x16,0x80,0x3f,0xed,0xe3,0xff,0xc7,0xff,0x3b,0x7f, -0xe0,0x0, 0x2, 0xe1,0xe0,0x2, 0x1f,0xda,0xe0,0x3, 0x8f,0x33,0xe2,0x0, 0xcf,0x1, -0x1, 0x88,0x97,0xf, 0xe0,0x1f,0x96,0xdf,0x3e,0xfe,0x3, 0x3, 0xe0,0x1f,0xb7,0x5f, -0xc7,0x82,0xe8,0x40,0x3f,0xfa,0x1, 0xf1,0xe0,0x2, 0x1f,0xe7,0xe0,0x3, 0x8f,0x33, -0xe2,0x0, 0xcf,0x1, 0x1, 0xa5,0x97,0xf, 0xe0,0x17,0x96,0xaf,0xe0,0x41,0x3f,0x2e, -0xe0,0x43,0x3f,0x1e,0x3e,0xfe,0x3, 0x3, 0xe0,0x17,0xb7,0x2f,0xe0,0x7, 0x97,0x6f, -0xe0,0x1f,0x96,0x8f,0xe0,0x41,0x3f,0x2e,0xe0,0x43,0x3f,0x1e,0x3e,0xfe,0x3, 0x3, -0xe0,0x1f,0xb7,0xf, 0x3e,0xef,0xe0,0xf, 0x97,0x4f,0xe0,0x4, 0xc6,0xec,0xe0,0x41, -0x3f,0x2e,0x96,0xd, 0xe0,0x43,0x3f,0x1e,0x3e,0x7e,0x3, 0x2, 0xb7,0xd, 0xc7,0x82, -0xf0,0x40,0x3c,0xff,0x1, 0xd4,0xc2,0x1, 0xe3,0xff,0xc2,0x7f,0x39,0x74,0xe7,0xff, -0x1, 0xa3,0xe0,0x2, 0x1c,0xe0,0x3d,0x65,0xef,0xfd,0xd8,0x26,0xe0,0x2, 0x1c,0xde, -0xe0,0x2, 0x1c,0x5a,0xe0,0x3, 0x15,0x7a,0xef,0xfd,0xd8,0x1e,0xe0,0x2, 0x1c,0xdd, -0xe0,0x2, 0x1c,0x67,0xe0,0x2, 0x15,0x74,0xef,0xfd,0xd8,0x16,0xf8,0x0, 0xe, 0xa8, -0xb, 0xe1,0xe0,0x3, 0x8f,0xb3,0xe2,0x0, 0xcf,0x81,0x1, 0x92,0xe0,0xf, 0x36,0xa1, -0xe0,0xe, 0x3c,0x1f,0x97,0xe, 0xe0,0x3b,0xc7,0xe4,0xe8,0xf, 0x3f,0x9c,0xe0,0x41, -0x3f,0x2e,0x96,0xf, 0xe0,0x43,0x3f,0x1e,0x3e,0x7e,0x3, 0x2, 0xb7,0xf, 0xc6,0x81, -0xe7,0xff,0x0, 0x84,0x8, 0xb3,0xe0,0x3, 0x1f,0xce,0x17,0x0, 0xe0,0x4, 0xaf,0x5f, -0x16,0x81,0xe0,0x3, 0x1f,0x90,0xe0,0x3, 0x19,0x9a,0x9f,0xf, 0xe0,0x4, 0x19,0x34, -0xe7,0x7, 0xcf,0x1d,0xb7,0xf, 0xe7,0xff,0x17,0x2a,0x8f,0xe3,0xe0,0x12,0xaf,0xc2, -0xe0,0x4, 0x1f,0xc1,0xaf,0xf, 0xe0,0x3, 0xd9,0x30,0xe0,0x4, 0x1f,0x49,0x17,0x80, -0xb7,0x8e,0xe0,0x4, 0x1f,0x59,0xb7,0x8e,0x8f,0xe3,0xe0,0x12,0xaf,0xc2,0xe0,0x2, -0x19,0x6a,0xe0,0x3, 0x1f,0xf6,0xa7,0x2, 0xbf,0xf, 0xe0,0x4, 0x1f,0xe3,0xe0,0x2, -0x1f,0x5d,0xbf,0xf, 0xe0,0x4, 0xd5,0xcf,0xdc,0x8, 0xe0,0x9, 0xd3,0xc1,0xe0,0x2, -0x1f,0xf6,0xa4,0x2, 0xa4,0x8f,0xe0,0x13,0x15,0x58,0xef,0xfd,0xd7,0xbd,0xe0,0x2, -0xdb,0xb8,0x2c,0x4, 0x9, 0xa1,0xe0,0x4b,0x0, 0xdc,0x9, 0xe1,0xe0,0x3, 0x1f,0xa8, -0x14,0x3, 0x8f,0x8f,0xe6,0xfd,0xcf,0x5f,0xe0,0x3, 0x1f,0x9a,0xe0,0x5, 0xaf,0x6f, -0x8f,0x6f,0x8f,0x6f,0xe0,0x4, 0x1f,0xb4,0xe0,0x12,0xaf,0x4f,0x17,0x0, 0xe0,0x3, -0x1f,0xec,0xb7,0xf, 0xe0,0x5, 0x0, 0xf4,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xea,0x1e, -0x7b,0x9, 0xe0,0x3, 0x1a,0x9a,0xe0,0x4, 0x19,0xbf,0xdf,0x9d,0xe7,0xfe,0x13,0xdf, -0xf7,0xff,0x14,0xa0,0xf7,0xff,0x14,0x0, 0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, -0xcf,0x83,0x3a,0x6f,0xe0,0x4, 0x1, 0xde,0xe0,0x4, 0xd0,0xce,0xe0,0x4, 0xd1,0x50, -0x14,0x4, 0xe0,0x6, 0xd8,0xb, 0xde,0x98,0x14,0x1, 0xe0,0x2, 0xdb,0x97,0xe0,0x13, -0x14,0x44,0xe0,0x9, 0xd3,0x5c,0xe0,0x1, 0x8f,0xb5,0xe2,0x0, 0xcf,0x81,0x39,0x6f, -0xe0,0x0, 0x1, 0x44,0x4, 0xa9,0xe2,0x0, 0xcf,0x82,0xe0,0x0, 0x1, 0x5b,0x8f,0x85, -0x37,0xc7,0x27,0x9f,0x14,0x0, 0xe0,0x2, 0xd6,0x6d,0x14,0x1, 0xe0,0x4, 0xdf,0xa, -0xe0,0x4, 0x1f,0xb4,0xe0,0x12,0x8f,0xcf,0xe2,0x0, 0xcf,0x81,0x1, 0x8d,0xe0,0x4, -0xdc,0xbc,0x24,0xa, 0xe0,0x6, 0xd4,0xf7,0xef,0xff,0xd0,0x22,0xe0,0x4, 0xd6,0xf7, -0xe0,0x7, 0xd9,0x3c,0xde,0x8d,0x8f,0x85,0x17,0x0, 0xe7,0x7, 0xcf,0x9e,0xaf,0x85, -0xdf,0x96,0xe7,0xff,0x0, 0xbb,0xea,0x1e,0x7f,0xa, 0x17,0x80,0xaf,0x8e,0xe0,0x2, -0x1f,0x35,0xaf,0x83,0xaf,0x8e,0xe0,0x5, 0x1f,0x15,0xaf,0x8e,0xea,0x1e,0x7f,0xc, -0xaf,0x8e,0xea,0x1e,0x7f,0x9, 0xaf,0x8e,0xea,0x1e,0x7f,0x8, 0xe0,0x1, 0xaa,0x35, -0xaf,0x8e,0xe0,0x1, 0xaf,0xc5,0x0, 0xc4,0xea,0x1e,0x7f,0xa, 0x8e,0x8e,0xe0,0x3, -0x1f,0xa3,0xe2,0x0, 0xce,0x81,0xa7,0x8f,0x1, 0xa, 0xe0,0x1, 0x9e,0xdf,0xa9,0xe, -0x3e,0xd7,0xe0,0x1, 0xb6,0xdf,0x9e,0x9f,0x3e,0xd7,0xb6,0x9f,0xea,0x1e,0x7f,0xc, -0x9f,0xbf,0xe2,0x1, 0xc7,0xff,0xaf,0x8e,0x17,0x3, 0xe0,0x1, 0xaf,0x35,0x0, 0xe2, -0xea,0x1e,0x7f,0x8, 0xfa,0x1e,0x7d,0x8a,0x8f,0x8e,0xe8,0x0, 0x8e,0xb, 0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xce,0x2, 0xaf,0x8e,0xe0,0x1, 0x1, 0x30,0xe0,0x3, -0x1f,0xa3,0xea,0x1e,0x7c,0x0, 0xa2,0xf, 0x15,0x8, 0xe0,0x1, 0x9f,0xd4,0x14,0x80, -0x3f,0xd7,0xe0,0x1, 0xb7,0xd4,0x9f,0x94,0x3f,0xd7,0xb7,0x94,0xef,0xfd,0xd7,0x2c, -0xea,0x1e,0x7f,0xc, 0x17,0x80,0x9e,0xb4,0xaf,0x8e,0xea,0x1d,0x7f,0x7e,0xae,0x8e, -0xe0,0x20,0x14,0xd3,0xe0,0x2, 0x1f,0x35,0xaf,0x83,0x14,0x0, 0xaf,0x8e,0xe0,0x5, -0x1f,0x15,0xe8,0x0, 0xa9,0xb, 0xaf,0x8e,0x17,0x81,0xe0,0x0, 0x1f,0x2d,0xaf,0x86, -0xaf,0x8e,0xe0,0xa, 0xd4,0x7b,0xea,0x1d,0x7f,0xfc,0xb4,0xf, 0xe0,0x20,0x14,0xd4, -0x14,0x0, 0xe0,0xa, 0xd4,0x73,0xea,0x1d,0x7f,0xf8,0xb4,0xf, 0xe0,0x20,0x14,0xd5, -0x14,0x0, 0xe0,0xa, 0xd4,0x6b,0xea,0x1d,0x7f,0xf4,0xb4,0xf, 0xe0,0x20,0x14,0xd6, -0x14,0x0, 0xe0,0xa, 0xd4,0x63,0xea,0x1d,0x7f,0xf0,0xb4,0xf, 0xe0,0x20,0x14,0xe4, -0x14,0x0, 0xe0,0xa, 0xd4,0x5b,0xea,0x1d,0x7f,0xec,0xb4,0xf, 0xe0,0x20,0x14,0xf3, -0x14,0x0, 0xe0,0xa, 0xd4,0x53,0xea,0x1d,0x7f,0xe8,0xb4,0xf, 0xe0,0x20,0x14,0xf5, -0x14,0x0, 0xe0,0xa, 0xd4,0x4b,0xea,0x1d,0x7f,0xe4,0xe0,0x0, 0x19,0x75,0xb4,0xf, -0xe0,0x20,0x14,0xd3,0x14,0x0, 0xe0,0xa, 0xd4,0x41,0xe0,0xa, 0xb4,0x32,0xe0,0x20, -0x14,0xd6,0x14,0x0, 0xe0,0xa, 0xd4,0x3a,0xe0,0xa, 0xb4,0x62,0xe0,0x20,0x14,0xe4, -0x14,0x0, 0xe0,0xa, 0xd4,0x33,0xe0,0xc, 0xb4,0x42,0x17,0x80,0xe0,0xa, 0x9f,0x62, -0xe0,0x20,0x14,0x56,0xe7,0x9, 0xcf,0x1f,0xe0,0xa, 0xb7,0x62,0xe0,0xa, 0x9f,0x32, -0xe7,0xd, 0xcf,0x1f,0xe0,0xa, 0xb7,0x32,0xe0,0xa, 0x9f,0x32,0xe7,0xb, 0xcf,0x1f, -0xe0,0xa, 0xb7,0x32,0x17,0x1, 0xe0,0xc, 0x9f,0xc2,0xe7,0x8, 0xcf,0x9e,0xe0,0xc, -0xb7,0xc2,0xe0,0xc, 0x9f,0xc2,0xe7,0xf, 0xcf,0x9e,0xe0,0xc, 0xb7,0xc2,0xe0,0xa, -0x9c,0xe2,0xe0,0xa, 0xd5,0x7, 0xe0,0xa, 0x9c,0xb2,0xe0,0x20,0x14,0x53,0xe0,0xa, -0xd5,0x1, 0xe0,0xc, 0x9c,0xc2,0xe0,0x20,0x14,0x64,0xe0,0xa, 0xd4,0xfb,0xe0,0xa, -0xd1,0x57,0xef,0xff,0xd2,0x2c,0xe7,0xfd,0x0, 0xec,0x8e,0x86,0xe2,0x0, 0xce,0x81, -0xe0,0x0, 0x1, 0xc7,0xe0,0x2, 0x1e,0xb5,0x8d,0x8d,0xe2,0x0, 0xcd,0x85,0x5, 0xa7, -0x8f,0x83,0xe0,0x5, 0x1e,0x15,0xe8,0xe, 0x3f,0xc8,0x8d,0x8c,0xaf,0x3, 0x8f,0xd, -0xc7,0x7d,0x3f,0x7b,0x5, 0x17,0xe8,0xf, 0x3f,0xc9,0xaf,0x83,0x17,0x80,0xaf,0x8d, -0xaf,0x8c,0x17,0x82,0xaf,0x86,0x17,0x5, 0xe0,0x0, 0x1f,0xf5,0xe0,0x20,0x14,0xf3, -0xe0,0xe, 0xb7,0x3f,0x14,0x0, 0xe0,0xe, 0x9d,0x3f,0xe0,0xa, 0xd4,0x3, 0xe7,0xfd, -0x0, 0xc0,0xe2,0x1, 0xc7,0xdf,0xe8,0xf, 0x3f,0xc8,0x0, 0xe8,0xe2,0x1, 0xcf,0xc8, -0x5, 0x92,0x17,0x80,0xaf,0x8d,0xe0,0x5, 0x1e,0x95,0xaf,0x8e,0xaf,0x8d,0x8f,0x83, -0xae,0x6, 0xe6,0xf9,0xcf,0x1f,0xaf,0x3, 0x8f,0xd, 0x27,0x5e,0xe2,0x0, 0xc7,0xdf, -0xaf,0x83,0x0, 0xda,0x14,0x5, 0xe0,0x3, 0xdd,0x1a,0xe7,0xfd,0x0, 0xa2,0xe2,0x0, -0xce,0x82,0x1, 0xb0,0x8e,0x83,0xe0,0x43,0x3e,0xd, 0xe2,0x0, 0xce,0x0, 0x4, 0xa, -0xe0,0x2, 0x1e,0x35,0x8e,0xc, 0xe2,0x0, 0xce,0x5, 0x5, 0x84,0xe8,0xd, 0x3e,0xc8, -0xae,0x83,0xe0,0x5, 0x1e,0x95,0x8e,0xd, 0xe2,0x0, 0xce,0x5, 0x5, 0x8a,0xe0,0x2, -0x1f,0x35,0x17,0x80,0xaf,0x8e,0xaf,0x8d,0x17,0x83,0xaf,0x86,0xe7,0xfd,0x0, 0x81, -0xe2,0x1, 0xcf,0xc8,0x5, 0xd8,0xe0,0x2, 0x1e,0x35,0x17,0x80,0xaf,0x8c,0xaf,0x8d, -0x16,0x83,0xaf,0x8e,0x8f,0x83,0xae,0x86,0xe2,0x1, 0xc7,0xdf,0xaf,0x83,0xe7,0xfc, -0x0, 0xf0,0xe2,0x0, 0xce,0x83,0xe7,0xfc,0x1, 0xec,0xea,0x1d,0x7f,0xfc,0x9f,0x8f, -0xe0,0x0, 0x19,0x75,0xf0,0x0, 0x15,0x1, 0xe0,0xa, 0xb7,0xb2,0xea,0x1d,0x7f,0xf8, -0x9f,0x8f,0x12,0x0, 0xe0,0xa, 0xb7,0xc2,0xea,0x1d,0x7f,0xf4,0x9f,0x8f,0xe0,0x0, -0x1c,0xf4,0xe0,0xa, 0xb7,0xd2,0xea,0x1d,0x7f,0xf0,0x9f,0x8f,0x15,0x4, 0xe0,0xa, -0xb7,0xe2,0xea,0x1d,0x7f,0xec,0x9f,0x8f,0xe0,0x20,0x14,0x53,0xe0,0xc, 0xb7,0xc2, -0xe0,0xa, 0x9f,0xe2,0xef,0x9, 0xcf,0x9a,0xe0,0xa, 0xb7,0xe2,0xe0,0xa, 0x9f,0xb2, -0xe7,0xd, 0xcf,0x94,0xe0,0xa, 0xb7,0xb2,0xe0,0xa, 0x9f,0xb2,0xef,0xb, 0xcf,0x9a, -0xe0,0xa, 0xb7,0xb2,0xe0,0xc, 0x9f,0xc2,0xef,0x8, 0xcf,0x9a,0xe0,0xc, 0xb7,0xc2, -0xe0,0xc, 0x9f,0xc2,0xef,0xf, 0xcf,0x9a,0xe0,0xc, 0xb7,0xc2,0xe0,0xa, 0xd4,0x44, -0xe0,0x0, 0x1c,0xf3,0xe8,0x40,0x3d,0x6a,0xe0,0x20,0x14,0x64,0xe0,0xa, 0xd4,0x3c, -0xe0,0xa, 0xd0,0x86,0xea,0x1d,0x7f,0xe8,0x9f,0x8f,0x3c,0x64,0xe0,0xe, 0xb7,0xb2, -0xea,0x1d,0x7f,0xe4,0x9f,0x8f,0xe0,0x20,0x14,0xf3,0xe0,0xe, 0xb7,0xd2,0xe0,0xe, -0x9d,0x32,0xe0,0xa, 0xd3,0x4f,0xe0,0xe, 0x9d,0x52,0x3c,0x64,0xe0,0x20,0x14,0xf5, -0xe0,0xa, 0xd3,0x48,0xe0,0x3, 0x1f,0xa3,0xea,0x1d,0x7e,0x7e,0xa7,0x8f,0x9d,0xbf, -0xea,0x1e,0x7f,0xc, 0x8d,0xc, 0xe2,0x1, 0xc5,0xff,0xea,0x1e,0x7f,0x80,0x8e,0x8e, -0x3c,0x64,0x39,0x64,0xf8,0x40,0x3b,0xea,0x12,0x7d,0xe2,0xa, 0x3d,0xca,0xe0,0x9, -0x3c,0x54,0xe2,0x1, 0xc4,0xff,0xe2,0x0, 0xcc,0x85,0x1, 0x17,0x8c,0x8f,0xe2,0x1, -0xcc,0xff,0x1, 0x13,0xe0,0x1, 0x35,0x18,0xe6,0xff,0xc8,0xf1,0x20,0x8e,0x38,0xe9, -0xc0,0x81,0xe2,0x0, 0xcc,0x84,0xa8,0x8f,0x5, 0x88,0xf0,0x9, 0x33,0xb8,0x3e,0xc9, -0xe2,0x1, 0xc6,0xff,0xe8,0x40,0x39,0x6a,0xc4,0x1, 0xe2,0x0, 0xcc,0x8, 0xc7,0x81, -0x1, 0xdf,0x21,0x2, 0xae,0x8e,0x8f,0x83,0x8e,0x8e,0xe8,0xf, 0x3f,0xd9,0x3f,0xcd, -0xaf,0x8e,0x17,0x0, 0xad,0x8c,0xaf,0x6, 0xe8,0x0, 0xaf,0xb, 0xe7,0xfc,0x0, 0x96, -0xe0,0x3, 0x1f,0x4e,0x17,0x80,0xe0,0x2, 0xaf,0xee,0x14,0x1, 0xe0,0x0, 0x1f,0x28, -0xaf,0x8e,0xf8,0x0, 0xd, 0xa8,0xb, 0xa1,0xe0,0x48,0x0, 0xa4,0xe0,0x5, 0x1f,0x9c, -0xe0,0x5, 0x1f,0x1d,0xbf,0xf, 0xe0,0x5, 0x1f,0x9e,0xe0,0x5, 0x1f,0x1f,0xbf,0xf, -0xe0,0x5, 0x1f,0xa0,0xe0,0x5, 0x1f,0x21,0xbf,0xf, 0xe0,0x5, 0x1f,0xa2,0xe0,0x5, -0x1f,0x23,0xbf,0xf, 0x38,0x82,0xe0,0x3, 0x1f,0xa3,0xe0,0x1, 0x16,0xff,0xa7,0x8f, -0xe0,0x2, 0x9f,0x3f,0xe7,0x20,0xcf,0xd, 0xe0,0x2, 0xb7,0x3f,0x38,0x82,0x8, 0xb1, -0xe2,0x0, 0xcc,0x66,0xe0,0x4, 0x1f,0xe9,0x1, 0x1a,0x2, 0x86,0xe2,0x0, 0xcc,0x55, -0x1, 0xc, 0x17,0x1, 0x0, 0x88,0xe2,0x1, 0xcc,0x8, 0x1, 0x24,0xe2,0x1, 0xcc,0x2a, -0x1, 0xf9,0x17,0x5, 0xaf,0xf, 0x0, 0x9d,0x8f,0x8f,0xe2,0x0, 0xcf,0x85,0x1, 0x99, -0x14,0x1, 0xe0,0x3, 0xdb,0xec,0xdf,0xc3,0x8, 0xa1,0x0, 0xd6,0x8f,0x8f,0xe2,0x0, -0xcf,0x85,0x1, 0x8f,0x14,0x1, 0xe0,0x3, 0xdb,0xe2,0xe0,0x3, 0x1f,0xa3,0xe0,0x1, -0x16,0xff,0xa7,0x8f,0xe0,0x2, 0x9f,0x3f,0xe7,0x20,0xcf,0xd, 0xe0,0x2, 0xb7,0x3f, -0x8, 0xe1,0x8f,0x8f,0xe2,0x0, 0xcf,0x85,0x1, 0xfc,0x14,0x1, 0xe0,0x3, 0xdb,0xcf, -0x0, 0xe4,0xe0,0x3, 0x1f,0xec,0xe0,0x1, 0x1f,0x6, 0x8f,0x8f,0x8f,0xe, 0x3f,0x9e, -0xe0,0x3, 0x1f,0x6a,0xaf,0x8e,0xe0,0x0, 0x1f,0x8e,0x8f,0xf, 0xe0,0x0, 0x1f,0x8c, -0xaf,0xf, 0x17,0x0, 0xe0,0x3, 0x1f,0xe8,0xaf,0xf, 0x38,0x82,0xe0,0x3, 0x1f,0x4e, -0xe0,0x5, 0x1f,0x92,0xe0,0x4, 0x8f,0x7e,0xaf,0xf, 0x38,0x82,0x8, 0xb1,0xe0,0x2, -0x1c,0x36,0xe0,0x4, 0xd8,0x73,0xef,0xfe,0xdf,0x32,0x8, 0xa1,0xe7,0xdb,0x0, 0x94, -0x8, 0xb1,0xe0,0x8, 0xd3,0x6, 0xe0,0x3, 0x1f,0x4e,0xe0,0x5, 0x1f,0x92,0xe0,0x4, -0x8f,0x7e,0xaf,0xf, 0x8, 0xe1,0x8, 0xb2,0xe0,0x3, 0x1f,0xce,0x17,0x0, 0xe0,0x4, -0x19,0x34,0xe0,0x4, 0xaf,0x5f,0x17,0x81,0xe0,0x12,0xaf,0xc2,0xe0,0x4, 0xd2,0x8b, -0xd8,0xc4,0xe0,0x1b,0x14,0x2c,0xe0,0x9, 0xd0,0x62,0xe0,0x9, 0xd0,0x79,0x17,0x97, -0xe0,0x12,0xaf,0xd2,0x17,0x0, 0xe0,0x12,0xaf,0xe2,0xe0,0x3, 0x1f,0xff,0xb7,0xf, -0x9, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xe0,0x4, 0x19,0x4d,0xdf,0xdd,0xf0,0x5, -0x1c,0x12,0x17,0x80,0xe0,0x5, 0x1b,0x8b,0xe0,0x3, 0x1a,0x4e,0xf0,0x2, 0x1c,0xee, -0xe8,0x40,0x3b,0x68,0x39,0xef,0xf0,0x0, 0x15,0x1, 0xb7,0x82,0xe8,0x0, 0x8f,0x88, -0xe2,0x0, 0xcf,0x81,0xe0,0x1, 0x1, 0xac,0x9f,0x82,0xe2,0xff,0xcf,0xfe,0x2, 0x83, -0xc7,0x81,0xb7,0x82,0x9f,0x82,0xe2,0x27,0xcf,0x87,0xe0,0x1, 0x2, 0xb5,0xe0,0x1, -0x8f,0xb4,0x27,0x83,0xf0,0x0, 0xad,0x7, 0xe0,0x3, 0xdd,0x8e,0x14,0x0, 0xe0,0x6, -0xd4,0xcd,0x14,0x0, 0xe0,0x3, 0xd3,0x9b,0xe0,0x6, 0xde,0xe8,0x14,0x1, 0xe0,0x2, -0xd8,0x55,0xe0,0x2, 0x1f,0x8a,0xe0,0x2, 0x1f,0x9, 0x8f,0x8f,0x8c,0xe, 0x37,0xa8, -0x3c,0x4f,0xe0,0x9, 0xd0,0x14,0x14,0x0, 0xf0,0x4, 0x1d,0xb4,0xe0,0x4, 0xdb,0xd2, -0xe8,0x1c,0x8c,0x3b,0xe0,0x1, 0x1a,0x82,0xe0,0x6, 0xd6,0xaf,0xe0,0x2, 0x1f,0x88, -0x34,0x21,0x8f,0x8f,0x3c,0x15,0xe0,0xe, 0x37,0xa8,0xe0,0x2, 0x1f,0x87,0x9e,0x88, -0x8f,0x8f,0x3f,0xce,0x3e,0xff,0x5, 0x8b,0xe8,0x1c,0x8c,0x3b,0xe0,0x6, 0xd6,0x9d, -0x34,0x21,0x3a,0x98,0x9c,0x5, 0x14,0x81,0xe0,0x6, 0xd9,0x1, 0xe0,0x4, 0xd9,0x6d, -0xe0,0x0, 0x24,0x52,0xe8,0x0, 0x9f,0x89,0x37,0xcf,0x2f,0x86,0x8f,0x86,0x3c,0x6f, -0xdf,0x68,0xe7,0xff,0x0, 0xa5,0xe0,0x6, 0xd1,0x9e,0xe0,0x0, 0x1f,0x2b,0x9f,0x8e, -0x27,0x85,0xc7,0xff,0xb7,0x8e,0xe7,0xff,0x0, 0x9b,0xe0,0x6, 0xd3,0xb8,0xe0,0x2, -0x1f,0xc3,0xe0,0x4, 0x8c,0x5f,0x2c,0x5, 0xe0,0x6, 0xde,0xc9,0xef,0xfe,0xdc,0xb8, -0xe0,0x4, 0xd3,0x8d,0xe8,0x0, 0x9f,0x89,0x37,0xcf,0x27,0xe1,0xe0,0x7, 0xd5,0x81, -0x14,0x1, 0xe0,0x8, 0xdd,0x4e,0xe0,0x7, 0xd5,0xc9,0xe0,0x4, 0x8f,0xc4,0xe2,0x0, -0xcf,0x81,0x1, 0x88,0xe0,0x3, 0x1f,0x23,0xa7,0xe, 0x9e,0xbe,0xe7,0x6, 0xce,0x9f, -0xb6,0xbe,0xe0,0x4, 0xd6,0x34,0xe0,0x5, 0xd0,0x3, 0x14,0x2, 0xe0,0x8, 0xdd,0x39, -0xe0,0x8, 0xdd,0xc1,0x14,0x3, 0xe0,0x8, 0xdd,0x34,0xe0,0x6, 0xd5,0xcc,0x14,0x4, -0xe0,0x8, 0xdd,0x2f,0xe0,0x6, 0x8f,0x84,0xe0,0x6, 0xd0,0x7f,0xef,0xfe,0xdf,0x4d, -0xe0,0x9, 0xd0,0xc6,0xde,0xf7,0xe0,0x3, 0xd6,0x3b,0xe0,0x4, 0xd9,0x16,0x24,0x2, -0xdf,0xe, 0xe0,0x4, 0x8f,0xf4,0xaf,0x86,0xe7,0xfe,0x0, 0xd2,0x14,0x1, 0xe0,0x2, -0xd2,0xb1,0xe0,0x3, 0x1f,0xce,0xe0,0x4, 0x8f,0xcf,0xe2,0x0, 0xcf,0x81,0x1, 0x88, -0xe0,0x3, 0x1f,0x23,0xa7,0xe, 0x9e,0xbe,0xe7,0x6, 0xce,0x9f,0xb6,0xbe,0xf8,0x0, -0xd, 0xa8,0xb, 0xe1,0xa9,0x87,0xe7,0xfe,0x0, 0xd1,0xe0,0x3, 0x1f,0xce,0x17,0x1, -0xe0,0x4, 0xaf,0x7f,0xe0,0x4, 0x8f,0xff,0xe0,0x5, 0x1f,0x12,0xaf,0x8e,0x17,0x0, -0xe0,0x3, 0x1f,0x9a,0xaf,0xf, 0x17,0x17,0xe0,0x4, 0x1f,0xb4,0xe0,0x12,0xaf,0x5f, -0xe0,0x12,0xaf,0x6f,0x38,0x82,0x8, 0xb2,0xe0,0x5, 0x19,0x12,0xe0,0x8, 0xdf,0x15, -0xe0,0x4, 0xdf,0x2a,0xe0,0x4, 0xd1,0x1d,0xdf,0xe1,0x8f,0x82,0xe2,0x0, 0xcf,0x81, -0x1, 0x6, 0xe2,0x0, 0xcf,0x83,0x1, 0xfa,0xdb,0xd0,0x0, 0xf8,0xde,0xfb,0x0, 0xf6, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3d,0xc0,0x70,0xe0,0x2, 0x1f,0xb4,0x3b,0x68,0xa7,0x8f, -0x39,0xe9,0xf0,0x0, 0x9c,0xdf,0x3b,0xea,0x3a,0xeb,0xf2,0x1, 0xc4,0xff,0x24,0x84, -0xe0,0x1, 0x17,0xff,0xb7,0x89,0xe0,0x1, 0x14,0x7f,0xe0,0x3, 0xda,0x54,0xe0,0x1a, -0x14,0x81,0x3c,0x65,0xe0,0xa, 0xd0,0xf2,0xe0,0x0, 0x1f,0xf2,0xf0,0x0, 0x14,0x1, -0xb4,0xf, 0x39,0x60,0x9f,0xf, 0xe0,0x1a,0x14,0x81,0xef,0x4, 0xcf,0x18,0xb7,0xf, -0x3c,0x65,0x9d,0xf, 0xc1,0x4, 0xe0,0xa, 0xd1,0x15,0x9f,0xa2,0x12,0x0, 0xe7,0x0, -0xcf,0xf4,0xb7,0xa2,0x33,0xa2,0x9f,0xa2,0xe0,0x1c,0x14,0x82,0xef,0xf, 0xcf,0x98, -0xb7,0xa2,0x3c,0x65,0x9d,0x22,0xe6,0xfa,0xcb,0x26,0x3b,0x93,0xf0,0x1c,0x15,0x80, -0xf0,0x1c,0x15,0x3, 0xf0,0x1c,0x16,0x4, 0xf0,0x1c,0x16,0x85,0xe0,0xa, 0xd0,0xfa, -0x39,0xf7,0x1, 0x8a,0xe8,0x40,0x3c,0x69,0xe0,0x3, 0xda,0x1d,0x14,0x1, 0xc0,0x10, -0xf8,0x0, 0xe, 0xa8,0xb, 0xe1,0x9f,0x82,0xe8,0x40,0x3c,0xeb,0xe7,0x0, 0xcf,0xe6, -0xb7,0x82,0x3c,0x65,0x9d,0x2, 0xe0,0xa, 0xd0,0xe5,0x9f,0xb2,0xe8,0x40,0x3c,0xea, -0xef,0x0, 0xcf,0xb8,0xb7,0xb2,0x3c,0x65,0x9d,0x32,0xe0,0xa, 0xd0,0xdb,0xe8,0x40, -0x3c,0xea,0x3c,0x65,0xe0,0xa, 0xd0,0xa2,0xe2,0x1, 0xc4,0x0, 0x2c,0x7, 0xc2,0x1, -0xe3,0xff,0xc2,0x7f,0xe2,0x2, 0xca,0x0, 0x5, 0xf3,0xe8,0x40,0x3c,0xec,0x3c,0x65, -0xe0,0xa, 0xd0,0x94,0xb4,0x3, 0xe8,0x40,0x3c,0xed,0x3c,0x65,0xc3,0x1, 0xe0,0xa, -0xd0,0x8d,0xb4,0x13,0xe6,0xfa,0xcb,0x26,0xc1,0x84,0x0, 0xc3,0x8, 0xb7,0xf8,0x0, -0xc, 0x3e,0xc0,0x70,0x39,0x60,0xc1,0x4, 0x17,0x80,0xb7,0xa2,0xf0,0x40,0x3c,0x6a, -0x9d,0x22,0x3a,0x68,0x3b,0x69,0x3c,0x6b,0xe0,0x1c,0x14,0x82,0x39,0xeb,0xe0,0xa, -0xd0,0xa9,0xe0,0x10,0x17,0x80,0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63, -0xe0,0xa, 0xd0,0xa0,0xe0,0x18,0x17,0x80,0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62, -0x3c,0x63,0xe0,0xa, 0xd0,0x97,0x14,0x7, 0xe0,0x3, 0xd9,0xc5,0xe0,0x1c,0x17,0x80, -0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63,0xe0,0xa, 0xd0,0x8b,0xe0,0x5c, -0x17,0x88,0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63,0xe0,0xa, 0xd0,0x82, -0xe0,0x5c,0x17,0x89,0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63,0xe0,0xa, -0xd0,0x79,0x14,0xa, 0xe0,0x5c,0x13,0xc9,0xe0,0x3, 0xd9,0xa5,0xb3,0xe2,0xe0,0x1c, -0x14,0x86,0x9d,0x62,0x3c,0x63,0xf0,0x18,0x3c,0x14,0x3a,0xe4,0xf0,0x40,0x3f,0x66, -0xf0,0x1c,0x15,0x5, 0xf0,0x1c,0x15,0x84,0xf0,0x1c,0x16,0x0, 0xf0,0x1c,0x16,0x81, -0xf0,0x1c,0x14,0x86,0xe0,0xa, 0xd0,0x5e,0xe8,0x40,0x3a,0xf8,0xe0,0x0, 0x1, 0xc5, -0xe2,0x0, 0x79,0x10,0xe0,0x5e,0x13,0xc9,0xe1,0xc0,0xb3,0xe2,0xe0,0x1c,0x14,0x86, -0x9d,0x62,0x3c,0x63,0xe0,0xa, 0xd0,0x4e,0xf0,0x1c,0x14,0x85,0xf0,0x1c,0x15,0x4, -0xf0,0x1c,0x15,0x80,0xf0,0x1c,0x16,0x1, 0xf0,0x1c,0x14,0x6, 0xf0,0x0, 0x17,0x8, -0x3a,0x75,0xe0,0x0, 0x1, 0xeb,0x14,0x5, 0xe0,0x3, 0xd9,0x6d,0xe2,0x0, 0x79,0x10, -0xe0,0x5c,0x17,0x89,0xe1,0xc0,0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63, -0xe0,0xa, 0xd0,0x30,0x14,0x7, 0xe0,0x3, 0xd9,0x5e,0xe0,0x5c,0x17,0x88,0xb7,0xe2, -0x3c,0x63,0x9d,0x62,0xe0,0x1c,0x14,0x86,0xe0,0xa, 0xd0,0x24,0xe0,0x1c,0x17,0x80, -0xb7,0xe2,0xe0,0x1c,0x14,0x86,0x9d,0x62,0x3c,0x63,0xc0,0x10,0xf8,0x0, 0xf, 0x28, -0xb, 0xa1,0xe1,0x40,0x0, 0x97,0xe8,0x0, 0x9f,0x8e,0xe8,0x40,0x3c,0xea,0xb7,0xc2, -0x3c,0x63,0xe8,0x0, 0x9f,0x9e,0x13,0x80,0xb7,0xd2,0x9d,0x52,0xe0,0xa, 0xd0,0xa, -0x9d,0x42,0xe8,0x40,0x3c,0xeb,0x3c,0x63,0xe0,0xa, 0xd0,0x4, 0xb2,0x82,0xe8,0x40, -0x3c,0xec,0x9d,0x2, 0x3c,0x63,0xe0,0x9, 0xdf,0xfd,0xb3,0x92,0xe8,0x40,0x3c,0xed, -0x9d,0x12,0x3c,0x63,0xe0,0x9, 0xdf,0xf6,0xe0,0x5c,0x17,0xcb,0xb7,0xe2,0xe8,0x40, -0x3c,0xe9,0x9d,0x62,0x3c,0x63,0xe0,0x9, 0xdf,0xed,0x14,0x8, 0xe0,0x3, 0xd9,0x1b, -0xe0,0x5c,0x17,0xc9,0xb7,0xe2,0xe8,0x40,0x3c,0xe9,0x9d,0x62,0x3c,0x63,0xc3,0x81, -0xe0,0x9, 0xdf,0xe0,0xe2,0x0, 0xcb,0xa6,0x1, 0xe1,0xc2,0x81,0xf0,0x0, 0xc7,0x4, -0xe3,0xff,0xc2,0xff,0xe7,0xfe,0x0, 0xfa,0x9f,0x86,0xe8,0x40,0x3c,0xe9,0xb7,0xc2, -0x3c,0x63,0x9f,0x96,0xf0,0x0, 0x16,0x80,0xb7,0xd2,0x9d,0x52,0xe0,0x9, 0xdf,0xca, -0x9d,0x42,0xe8,0x40,0x3c,0xea,0x3c,0x63,0xe0,0x9, 0xdf,0xc4,0xb2,0x2, 0xe8,0x40, -0x3c,0xeb,0x9d,0x2, 0x3c,0x63,0xe0,0x9, 0xdf,0xbd,0xf0,0x0, 0xb6,0x92,0xe8,0x40, -0x3c,0xec,0x9d,0x12,0x3c,0x63,0xe0,0x9, 0xdf,0xb5,0xe0,0x5e,0x17,0xcb,0xb7,0xe2, -0xe8,0x40,0x3c,0xe8,0x9d,0x62,0x3c,0x63,0xe0,0x9, 0xdf,0xac,0xe8,0x40,0x3c,0x6e, -0xe0,0x3, 0xd8,0xd9,0xb3,0xe2,0xe8,0x40,0x3c,0xe8,0x9d,0x62,0x3c,0x63,0xf0,0x0, -0xc6,0x81,0xe0,0x9, 0xdf,0x9f,0xf2,0x0, 0xce,0xa6,0x1, 0xe0,0xc2,0x1, 0xc3,0x4, -0xe3,0xff,0xc2,0x7f,0xe7,0xfe,0x0, 0xd6,0x8, 0xb4,0xe0,0x0, 0x19,0x71,0xe0,0xab, -0x17,0x2a,0xe0,0x0, 0x1f,0xf2,0xb7,0x2, 0xe0,0x5e,0x17,0x7f,0xe0,0x0, 0x1a,0x70, -0xb7,0xf, 0x17,0x80,0xe0,0x0, 0x19,0xef,0xb7,0x84,0xe0,0x30,0x17,0x63,0xb7,0x3, -0x3c,0xe2,0xe0,0x0, 0x1f,0x6e,0xe0,0x3, 0x1c,0x32,0xb7,0x8e,0x15,0xc, 0xe0,0x0, -0x1f,0xed,0xe0,0x82,0x17,0x18,0xb7,0xf, 0xef,0xfd,0xd1,0x9e,0x15,0x2, 0x3c,0xe2, -0xe0,0x1a,0x14,0x0, 0xe0,0xa, 0xd0,0x48,0x14,0x80,0xe0,0x1a,0x14,0x20,0xe0,0xa, -0xd0,0x31,0x9c,0x84,0xe0,0x1a,0x14,0x2, 0xe0,0xa, 0xd0,0x2c,0x15,0x3, 0x3c,0xe3, -0xe0,0x1a,0x14,0x3, 0xe0,0xa, 0xd0,0x38,0xa, 0x21,0xe1,0x3b,0x0, 0xf0,0xe0,0x4, -0x1f,0xb4,0xe0,0x1a,0x8e,0x4f,0xe2,0x0, 0xce,0x1, 0xe0,0x0, 0x5, 0xed,0x8, 0xb2, -0x3f,0xec,0xc7,0xff,0x3f,0x99,0xe0,0x2f,0x3f,0xbc,0x3f,0xbc,0x3f,0xa9,0xe2,0x1, -0xc7,0xff,0xe0,0xe, 0x3f,0x99,0xe2,0x0, 0xcf,0x2a,0x5, 0x5, 0x17,0xaa,0x3f,0xa9, -0xe2,0x1, 0xc7,0xff,0x3e,0x79,0x3d,0xe9,0xe0,0x0, 0x2, 0xc9,0x11,0x2, 0x38,0xeb, -0xe2,0x1, 0xc0,0xff,0xe0,0xe, 0x38,0xa9,0xe2,0x1, 0xc7,0x7f,0x3f,0xfe,0x2, 0x82, -0x9, 0x61,0xe0,0xa, 0x3d,0xac,0xe4,0xe, 0x35,0x4f,0x3f,0x1a,0x37,0x1, 0x37,0x21, -0xe0,0x2a,0x3d,0x42,0xe0,0xd, 0x35,0x81,0x3f,0x18,0x36,0xa1,0x3f,0x1a,0x3e,0x98, -0xe6,0xff,0xc8,0xf1,0x8f,0xe, 0x3e,0x91,0xc5,0x81,0xaf,0xd, 0x0, 0xe1,0xe6,0xf7, -0xce,0xe, 0x36,0x21,0x3e,0x18,0xe6,0xff,0xc9,0x7e,0x3e,0x12,0x8e,0xc, 0x3e,0xfc, -0x1, 0x21,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0x3f,0x71,0x4, 0x72,0xe0,0xe, 0x3c,0x9a, -0x37,0x1, 0x37,0x21,0x3f,0x18,0xe6,0xff,0xce,0x7b,0x3f,0x1c,0xae,0x8e,0x3f,0x6b, -0xc7,0x1, 0x3d,0xee,0xc5,0x1, 0xe2,0x1, 0xc5,0xff,0x3f,0x6a,0xe2,0x1, 0xc7,0x7f, -0x3f,0xfe,0x5, 0xc7,0x16,0x80,0x17,0x0, 0x0, 0xe8,0x15,0x0, 0xe0,0x1, 0x3f,0x99, -0x0, 0xf5,0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0xe2,0x0, 0xce,0x94, -0x1, 0xf3,0x0, 0xe6,0x38,0x82,0x8, 0xb2,0xe0,0x4, 0x19,0x34,0xe0,0x0, 0x1d,0xf5, -0xe0,0x12,0x8e,0x2, 0xe0,0x11,0x8c,0x82,0xe0,0x0, 0xc6,0x46,0x3e,0x12,0x17,0x80, -0x3c,0xff,0x1, 0xa4,0xe0,0x0, 0x1c,0x6c,0xdf,0x7b,0xe0,0x12,0x8e,0x22,0xe0,0x11, -0x8d,0x92,0xe0,0x0, 0xc6,0x5a,0xe0,0x0, 0x1d,0x75,0x3e,0x12,0x17,0x80,0x3d,0xff, -0x1, 0xa4,0xe0,0x0, 0x1d,0x6c,0x15,0x95,0xe0,0x20,0x14,0x82,0x14,0x0, 0xe0,0x9, -0xdf,0x3f,0xe0,0x11,0x8d,0x92,0xe0,0x0, 0x1d,0x6b,0xc5,0x81,0x35,0xc1,0xe0,0x20, -0x14,0x97,0x14,0x0, 0x9, 0x21,0xe1,0x3e,0x0, 0xb3,0xe6,0xf7,0xce,0x8f,0xe0,0xe, -0x36,0xa1,0xe6,0xff,0xcd,0x7f,0x3f,0x1b,0xe0,0x80,0x8e,0x9c,0x3f,0x1a,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xae,0xce,0x0, 0xcd,0xe6,0xf7,0xce,0x8f,0xe0,0xe, 0x36,0xa1, -0xe6,0xff,0xcc,0xff,0x3f,0x1a,0xe0,0x80,0x8e,0x9c,0x3f,0x19,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0xe0,0x5, 0xae,0xee,0x0, 0xcc,0x8, 0xb7,0xe0,0x0, 0x19,0x75,0x17,0x0, -0xe0,0x8, 0x9f,0xa2,0xe6,0xff,0xca,0x78,0xe7,0x1, 0xcf,0xbe,0xe0,0x8, 0xb7,0xa2, -0x13,0x81,0xe0,0x8, 0x9f,0xa2,0xe0,0x3, 0x19,0xb1,0xe7,0x5, 0xcf,0x94,0xe0,0x8, -0xb7,0xa2,0xe0,0x20,0x13,0x42,0xe0,0x8, 0x9f,0xa2,0x3a,0xe9,0xe7,0x0, 0xcf,0x97, -0xe0,0x8, 0xb7,0xa2,0x3c,0x66,0xe0,0x8, 0x9f,0xa2,0x3a,0xd7,0xe0,0x8, 0xb7,0xa3, -0xe0,0x8, 0x9c,0xa2,0xe0,0x9, 0xdf,0x36,0xe0,0x6, 0x9f,0xa2,0xe0,0x20,0x14,0x32, -0xe7,0xb, 0xcf,0x97,0xe0,0x6, 0xb7,0xa2,0xe0,0x6, 0x9f,0xa2,0xe7,0xa, 0xcf,0x97, -0xe0,0x6, 0xb7,0xa2,0xe0,0x6, 0x9f,0xa2,0xe0,0x6, 0xb7,0xa3,0xe0,0x6, 0x9c,0xa2, -0xe0,0x9, 0xdf,0x20,0xe0,0x8, 0x3a,0x35,0xe4,0x0, 0xc4,0x5, 0xe0,0x3, 0xd7,0x87, -0xe0,0x8, 0x9f,0xa2,0x3c,0x66,0xe7,0x4, 0xcf,0x94,0xe0,0x8, 0xb7,0xa2,0xe0,0x8, -0x9f,0xa3,0xe7,0x4, 0xcf,0x94,0xe0,0x8, 0xb7,0xa3,0xe0,0x8, 0x9c,0xa2,0xe0,0x9, -0xdf,0x9, 0xe0,0x8, 0x9f,0xa2,0x17,0x7, 0xe7,0x1, 0xcf,0xbe,0xe0,0x8, 0xb7,0xa2, -0x3c,0x66,0xe0,0x8, 0x9f,0xa3,0xe7,0x1, 0xcf,0xbe,0xe0,0x8, 0xb7,0xa3,0xe0,0x8, -0x9c,0xa2,0xb, 0xa1,0xe1,0x3d,0x0, 0xf6,0x8, 0xb1,0xc0,0x74,0xe0,0x4, 0x1f,0xb4, -0x17,0x0, 0xe0,0x12,0x8e,0x2f,0xe2,0x0, 0x7d,0xc, 0xe0,0x0, 0xc6,0x5a,0xe0,0x11, -0x8c,0x9f,0xe1,0xc0,0xbf,0x2a,0x3e,0x1f,0x14,0x1, 0x7f,0x1, 0x7f,0x2, 0x3c,0xfe, -0x1, 0xaa,0xe0,0x12,0x8f,0xf, 0xe0,0x11,0x8d,0x8f,0xe0,0x0, 0xc7,0x46,0x3f,0x9e, -0x16,0x0, 0x15,0x1, 0x3d,0xfc,0x1, 0xb0,0xe0,0x0, 0x1f,0xf5,0x5e,0x84,0xe0,0x8, -0x9f,0x3f,0x5c,0x82,0xe7,0x20,0xcf,0x2d,0xe0,0x8, 0xb7,0x3f,0x5f,0x3, 0x5e,0x87, -0xe0,0x8, 0xb7,0x4f,0xe0,0x8, 0xb4,0xdf,0xe0,0x8, 0x9f,0x6f,0x5c,0x85,0xe7,0x20, -0xcf,0x1d,0xe0,0x8, 0xb7,0x6f,0x5f,0x6, 0xe0,0x8, 0xb7,0x7f,0xe0,0x9, 0xb4,0x8f, -0xc0,0xc, 0x8, 0xe1,0xe0,0x80,0x8e,0x9c,0xc7,0x1, 0xe0,0xb, 0x36,0xc4,0x35,0xa1, -0x3d,0x9a,0x98,0x8b,0xe6,0xfc,0xce,0xcd,0xe0,0xd, 0x34,0x3d,0x3e,0xc1,0xe2,0x1, -0xc7,0x7f,0xb6,0x8b,0x0, 0xc5,0xe0,0x80,0x8f,0x1f,0xe2,0x0, 0x7c,0x84,0xe0,0xd, -0x37,0x44,0xc6,0x83,0x36,0xa1,0x3e,0x99,0x9c,0x8d,0xe6,0xfc,0xcf,0x4e,0xe0,0xe, -0x35,0x3e,0x3f,0x49,0xb7,0xd, 0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, 0xc6,0x7f, -0xe7,0xff,0x0, 0xba,0xe0,0x0, 0x1f,0xf5,0xe0,0x0, 0x1c,0xea,0xe0,0x7, 0x9f,0x4f, -0x15,0x1, 0xe7,0x8, 0xcf,0x68,0xe0,0x7, 0xb7,0x4f,0xe0,0x20,0x14,0x3c,0xe1,0x3d, -0x0, 0x93,0x8, 0xb1,0x15,0x1, 0x3c,0xea,0x14,0x2, 0xe0,0x2, 0xdb,0x29,0x3f,0xe8, -0xc7,0x81,0x3f,0x6f,0xe0,0x0, 0x1f,0xf5,0xe2,0x1, 0xc7,0x7f,0xe0,0x5, 0x9e,0xef, -0xe6,0xf9,0xce,0x1e,0xe7,0x0, 0xce,0xfc,0xe0,0x5, 0xb6,0xef,0x15,0x2, 0xe0,0x5, -0x9e,0xff,0xe0,0x0, 0x1c,0xe9,0xe7,0x0, 0xce,0xfc,0xe0,0x5, 0xb6,0xff,0xe0,0x20, -0x14,0x2e,0xe0,0x4, 0x1e,0xb4,0xe0,0x19,0x8e,0xbd,0x36,0xa1,0x3f,0x1d,0xe0,0x5, -0x9e,0xef,0xe7,0x8, 0xce,0xfe,0xe0,0x5, 0xb6,0xef,0x8, 0xa1,0xe1,0x3c,0x0, 0xe4, -0x8, 0xb3,0xe0,0x0, 0x1c,0x6c,0xe0,0x1, 0x15,0x78,0x14,0x80,0xe0,0x0, 0x19,0x75, -0xef,0xfc,0xdf,0xe2,0xe0,0x2, 0x17,0x36,0xb7,0x2, 0x11,0x80,0x9f,0x82,0xe0,0x4, -0x1e,0xb4,0xe7,0x9, 0xcf,0x93,0xb7,0x82,0xe0,0x11,0x8f,0x9d,0xe0,0xe, 0x37,0xa8, -0xe0,0x11,0x8f,0x8d,0x3f,0xce,0xb7,0x92,0xe0,0x52,0x17,0x9d,0xe0,0x5, 0xb7,0xe2, -0x17,0x9, 0xe0,0x5, 0xb7,0x72,0xe0,0x2, 0x17,0x81,0xe0,0x6, 0xb7,0x82,0xe0,0x20, -0x17,0x19,0xe0,0x6, 0xb7,0x12,0xe0,0x19,0x17,0xf0,0xe0,0x6, 0xb7,0xa2,0xe0,0x30, -0x17,0x0, 0xe0,0x6, 0xb7,0x32,0x17,0xd0,0xe0,0x6, 0xb1,0xc2,0xe0,0x84,0x17,0x10, -0xe0,0x6, 0xb7,0xd2,0xe7,0x84,0x17,0x90,0xe0,0x6, 0xb7,0x62,0xe7,0x8, 0x17,0x37, -0xe0,0x6, 0xb7,0xf2,0xe0,0x81,0x17,0x99,0xe0,0x7, 0xb7,0x2, 0xe0,0x10,0x17,0x3e, -0xe0,0x7, 0xb7,0x92,0xe0,0xea,0x17,0xd5,0xe0,0x7, 0xb7,0x22,0xe7,0x7e,0x17,0x41, -0xe0,0x7, 0xb7,0xb2,0xe0,0x4, 0x1f,0xef,0xe0,0x7, 0xb7,0x42,0xe0,0x3, 0x8f,0x4f, -0xe0,0x7, 0x9f,0xc2,0xe7,0x1, 0xcf,0xfe,0xe0,0x7, 0xb7,0xc2,0xe0,0x1f,0x17,0xff, -0xe0,0x7, 0xb7,0xd2,0xe0,0x3f,0x17,0x7f,0xe0,0x7, 0xb7,0x62,0xe7,0x87,0x17,0x17, -0xe0,0x7, 0xb7,0xf2,0xe7,0x1, 0x17,0xff,0xe0,0x8, 0xb7,0x82,0xe0,0x8, 0x17,0x9f, -0xe0,0x8, 0xb7,0x12,0xe0,0x8, 0xb7,0xa2,0xe7,0xf8,0x17,0x80,0xe0,0x8, 0x9f,0x22, -0xe0,0x8, 0xb7,0x22,0xe0,0x20,0x17,0x0, 0xe0,0x8, 0xb7,0xb2,0xe0,0x8, 0xb1,0xc2, -0xe0,0x8, 0xb1,0xd2,0xe0,0x8, 0xb7,0x62,0xe0,0x80,0x17,0xa, 0xe0,0x8, 0xb1,0xf2, -0xe0,0x9, 0xb1,0x82,0xe0,0x9, 0xb7,0x92,0xe0,0x7e,0x17,0xe6,0xe0,0x9, 0xb1,0xa2, -0xe0,0x9, 0xb1,0xb2,0xe0,0x9, 0xb1,0xc2,0xe0,0x9, 0xb1,0xd2,0xe0,0x9, 0xb1,0xe2, -0xe0,0x9, 0xb1,0xf2,0xe0,0xa, 0xb7,0x82,0xe0,0xcc,0x17,0xe6,0xe0,0xa, 0xb7,0x92, -0xe0,0xa, 0xb7,0xa2,0xe0,0x8, 0x17,0xb2,0xe0,0xa, 0xb7,0x32,0xe0,0xd3,0x17,0x44, -0xe0,0xa, 0xb7,0xc2,0xe0,0x2, 0x17,0xd0,0xe0,0xa, 0xb7,0x52,0xe0,0x7, 0x17,0x68, -0xe0,0xa, 0xb7,0xe2,0x17,0x8a,0xe0,0xa, 0xb7,0xf2,0xe0,0xb, 0xb7,0x82,0xe7,0x1e, -0x17,0x90,0xe0,0xb, 0xb7,0x12,0xe0,0x4, 0x17,0x0, 0xe0,0xb, 0xb1,0xa2,0xe0,0xb, -0xb1,0xb2,0xe0,0xb, 0xb1,0xc2,0xe0,0xb, 0xb1,0xd2,0xe0,0xb, 0xb1,0xe2,0xe0,0xb, -0xb1,0xf2,0xe0,0xc, 0xb1,0x82,0xe0,0xc, 0xb1,0x92,0xe0,0xc, 0xb1,0xa2,0xe0,0xc, -0xb1,0xb2,0xe0,0xc, 0xb7,0xc2,0x17,0xb2,0xe0,0xc, 0xb1,0xd2,0xe0,0xc, 0xb1,0xe2, -0xe0,0xc, 0xb1,0xf2,0xe0,0xd, 0xb7,0x2, 0xe0,0x1, 0x17,0x16,0xe0,0xd, 0xb7,0x92, -0xe0,0x1, 0x17,0xfa,0xe0,0xd, 0xb7,0x22,0xe0,0x2, 0x17,0x5e,0xe0,0xd, 0xb7,0xb2, -0xe0,0x3, 0x17,0xc2,0xe0,0xd, 0xb7,0x42,0xe0,0x4, 0x17,0x26,0xe0,0xd, 0xb7,0xd2, -0xe0,0x5, 0x17,0x8a,0xe0,0xd, 0xb7,0x62,0xe0,0x5, 0x17,0x6e,0xe0,0xd, 0xb7,0xf2, -0xe0,0x2e,0x17,0xf0,0xe0,0xe, 0xb7,0x2, 0xe0,0x2, 0x17,0x2c,0xe0,0xe, 0xb7,0x92, -0xe0,0x11,0x17,0x98,0xe0,0xe, 0xb1,0xa2,0xe0,0xe, 0xb7,0x32,0xe0,0xe, 0xb1,0xc2, -0xe0,0xe, 0xb7,0xd2,0xe0,0x1, 0x17,0x90,0xe0,0xe, 0xb7,0xe2,0xe0,0xe, 0xb7,0xf2, -0xe0,0xf, 0xb7,0x82,0xe0,0xf, 0xb7,0x92,0xe0,0xf, 0xb7,0xa2,0xe0,0xf, 0xb7,0xb2, -0xe0,0xf, 0xb7,0xc2,0xe0,0xf, 0xb7,0xd2,0xde,0x40,0xe0,0x0, 0x15,0xfe,0x3d,0x62, -0xe0,0x20,0x14,0x80,0x3c,0x63,0x9, 0xa1,0xe1,0x39,0x0, 0xe2,0x8, 0xb1,0xc0,0x7c, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84,0x14,0x32,0xdb,0x1b,0x4f,0x87,0xe2,0x1, -0xcf,0xff,0x1, 0xf, 0xe0,0xd5,0x15,0x45,0xe0,0x1e,0x14,0x88,0x14,0x0, 0xe0,0x9, -0xdc,0x51,0x4d,0x7, 0xe0,0x1e,0x14,0x8a,0x14,0x0, 0xe0,0x9, 0xdc,0x4b,0x0, 0x95, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84,0x14,0x30,0xdb,0x3, 0x4f,0x87,0xe2,0x1, -0xcf,0xff,0x1, 0xe9,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84,0x14,0xd, 0xda,0xf9, -0x4f,0x87,0xe2,0x1, 0xcf,0xff,0x1, 0xdf,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84, -0x14,0x33,0xda,0xef,0x4f,0x87,0xe2,0x1, 0xcf,0xff,0x1, 0xf, 0xe0,0xd5,0x15,0x45, -0xe0,0x1e,0x14,0x88,0x14,0x0, 0xe0,0x9, 0xdc,0x25,0x4d,0x7, 0xe0,0x1e,0x14,0x8b, -0x14,0x0, 0xe0,0x9, 0xdc,0x1f,0x0, 0x95,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84, -0x14,0x31,0xda,0xd7,0x4f,0x87,0xe2,0x1, 0xcf,0xff,0x1, 0xe9,0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x84,0x14,0xe, 0xda,0xcd,0x4f,0x87,0xe2,0x1, 0xcf,0xff,0x1, 0xdf, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x84,0x14,0xf, 0xda,0xc3,0x4f,0x87,0xe2,0x1, -0xcf,0xff,0x1, 0x10,0xe0,0x1a,0x14,0x83,0x14,0x0, 0xe0,0x9, 0xdb,0xc7,0x3d,0x68, -0x4f,0x87,0xe3,0xff,0xc5,0x60,0x3d,0x4f,0xe0,0x1a,0x14,0x83,0x14,0x0, 0xe0,0x9, -0xdb,0xf1,0xc0,0x4, 0x8, 0xe1,0x8, 0xb2,0xc0,0x7c,0xe0,0x1, 0x1c,0x8b,0x15,0x80, -0x15,0x2, 0x14,0x12,0xda,0xa6,0xe2,0x0, 0x7c,0x84,0x15,0x80,0x15,0x1, 0x14,0x14, -0xda,0xa0,0xe0,0x1, 0x19,0xb, 0x4f,0x85,0x15,0x80,0xe0,0x1, 0xaf,0x82,0x15,0x1, -0x4f,0x86,0xe2,0x0, 0x7c,0x84,0xe0,0x1, 0xaf,0x92,0x14,0x11,0x4f,0x87,0xe0,0x1, -0xaf,0xa2,0xda,0x8f,0x4f,0x87,0xe0,0x1, 0xaf,0xb2,0x17,0x81,0xe0,0x1, 0xaf,0xc2, -0xc0,0x4, 0x9, 0x61,0x8, 0xb3,0xe1,0xff,0xc0,0x28,0x3d,0xe0,0xc5,0x88,0x39,0x68, -0x39,0xe9,0x3c,0x6b,0x14,0x80,0xe0,0x0, 0x15,0x54,0xef,0xfc,0xde,0x1d,0xe0,0x4, -0x1f,0xb4,0x3d,0xe8,0xe0,0x12,0x8e,0xaf,0xe0,0x11,0x8c,0x9f,0x3e,0x6d,0xe0,0x0, -0xc6,0x5a,0x3e,0x1f,0x3e,0x92,0x17,0x0, 0x3c,0xfe,0xe0,0x0, 0x1, 0xf4,0xe0,0x12, -0x8e,0x8f,0xe0,0x11,0x8e,0xf, 0x3f,0x6d,0xe0,0x0, 0xc7,0x46,0x3f,0x1f,0x8f,0xdf, -0x3f,0x9d,0x39,0x1f,0x17,0x80,0x3e,0x7f,0xe0,0x0, 0x1, 0xf0,0xe4,0x0, 0xc1,0x93, -0xe0,0x4, 0x1c,0xef,0x15,0x82,0x3c,0x93,0x89,0x69,0xe2,0x0, 0x7d,0x4, 0xe4,0x1, -0xc1,0xc, 0x14,0x0, 0x39,0xe2,0xe0,0x6f,0xc1,0x86,0xe3,0xff,0xc1,0xff,0x3c,0xe3, -0xe0,0x9, 0xdb,0xbc,0x67,0x81,0x4f,0x8, 0x15,0x82,0xe7,0x28,0xcf,0x8e,0x7f,0x81, -0xe2,0x0, 0x7d,0x4, 0x4f,0x9, 0x67,0x81,0x3c,0xe3,0xe7,0x20,0xcf,0x8e,0x14,0x0, -0x7f,0x81,0xe0,0x9, 0xdb,0xf5,0x3c,0xe2,0xe0,0x6f,0xc4,0x88,0x15,0x94,0xe2,0x0, -0x7d,0xa, 0xe3,0xff,0xc4,0xff,0x14,0x0, 0xe0,0x9, 0xdb,0xea,0x3f,0xe2,0xe0,0x6f, -0xc7,0xaa,0xe3,0xff,0xc7,0xff,0xe2,0x71,0xcf,0xc1,0x2, 0xa9,0x39,0xe2,0xe0,0x6f, -0xc1,0xcc,0xe3,0xff,0xc1,0xff,0x15,0x82,0xe2,0x0, 0x7d,0x4, 0x3c,0xe3,0x14,0x0, -0xe0,0x9, 0xdb,0x8c,0x67,0x81,0x4f,0x32,0x15,0x82,0xe7,0x28,0xcf,0x8e,0x7f,0x81, -0xe2,0x0, 0x7d,0x4, 0x67,0x81,0x4f,0x33,0x3c,0xe3,0x14,0x0, 0xe7,0x20,0xcf,0x8e, -0x7f,0x81,0xe0,0x9, 0xdb,0xc5,0x3c,0xe2,0xe0,0x6f,0xc4,0xce,0x3d,0x60,0x15,0x94, -0xc5,0x34,0xe3,0xff,0xc4,0xff,0x14,0x0, 0xe0,0x9, 0xdb,0xba,0xe0,0x0, 0xc0,0x58, -0x9, 0xe1,0xe0,0x80,0x8d,0x1c,0xe1,0x80,0x8c,0x1d,0x3d,0x1b,0xc7,0x1, 0xe2,0x1, -0xc7,0x7f,0xac,0xa, 0xe7,0xff,0x0, 0x82,0xe0,0x80,0x8e,0x9e,0xe1,0x80,0x8d,0x92, -0xe2,0x0, 0x7d,0x8, 0x3e,0x9a,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe0,0x5, 0xad,0xad, -0xe7,0xff,0x0, 0x83,0x8, 0xb7,0xf8,0x0, 0xc, 0x39,0xe1,0xff,0xc0,0x1c,0xf0,0x40, -0x3c,0x60,0xf0,0x0, 0xc4,0x8, 0x3a,0x68,0x15,0xc, 0x39,0x69,0xe8,0x40,0x3c,0x68, -0x14,0x80,0x3a,0xe0,0xef,0xfc,0xdd,0x70,0xc2,0x94,0x15,0xc, 0x14,0x80,0x3c,0x65, -0xef,0xfc,0xdd,0x6a,0x3f,0xe0,0xc7,0xa0,0xe0,0x4, 0x19,0xb4,0x14,0x80,0xe0,0x0, -0x15,0x48,0x3c,0x6f,0xef,0xfc,0xdd,0x60,0xe0,0x12,0x8d,0xa3,0xe0,0x11,0x8b,0x93, -0x3c,0xeb,0xe0,0x0, 0xc4,0xda,0x38,0xe8,0x3c,0x93,0x3d,0x94,0x16,0x0, 0x13,0x5, -0xf0,0x0, 0x13,0x84,0xe8,0x40,0x3c,0x68,0x3b,0xfc,0xe0,0x1, 0x1, 0x87,0xe2,0x0, -0xc9,0x2, 0x1, 0x1f,0x5e,0x6, 0xe0,0x0, 0x1d,0x68,0xe0,0x0, 0x1f,0xe7,0x5f,0x5, -0xb6,0xa, 0x15,0x86,0xb7,0xf, 0xe0,0x24,0x14,0x89,0xe0,0x0, 0x1f,0xe6,0x5e,0x4, -0x5f,0xc, 0xb6,0xf, 0x14,0x0, 0xe0,0x0, 0x1f,0xe5,0x5e,0xb, 0xb7,0xf, 0xe0,0x0, -0x1f,0xe4,0x5f,0xa, 0xb6,0xf, 0xe0,0x0, 0x1f,0xe3,0xb7,0xf, 0xe0,0x9, 0xdb,0x48, -0xe0,0x12,0x8f,0x83,0x8c,0x53,0x3c,0xef,0xe0,0x0, 0xc4,0xc6,0x3c,0x1f,0xe0,0x11, -0x88,0x83,0x3c,0x93,0x3c,0x14,0x15,0x80,0x11,0x85,0x12,0x4, 0x38,0xfb,0xe0,0x1, -0x1, 0x8a,0xe4,0x0, 0xc1,0x13,0xe0,0x4, 0x1f,0xef,0x12,0x0, 0x39,0x1f,0x89,0x62, -0xf0,0x0, 0x14,0x10,0xe4,0x1, 0xc1,0xc, 0x3b,0x64,0xe0,0x6e,0xc1,0x64,0xe3,0xff, -0xc1,0x7f,0x13,0x82,0xf0,0x0, 0x14,0x81,0x39,0xe4,0xe4,0x0, 0xc1,0xa4,0xe2,0x0, -0x7f,0x20,0x3c,0xe2,0x39,0x9e,0x3a,0xe2,0xc4,0x92,0xe8,0x40,0x3d,0xe8,0x3d,0x63, -0xe3,0xff,0xc4,0xff,0x3c,0x66,0xc2,0xa2,0xe0,0x9, 0xdb,0x12,0xe3,0xff,0xc2,0xff, -0x3d,0xe7,0xe2,0x0, 0x7d,0x4, 0x3c,0xe5,0x3c,0x66,0xe0,0x9, 0xda,0xbf,0xe0,0x1, -0xa7,0x83,0x67,0x1, 0xe6,0xe2,0xcf,0xaf,0xe7,0x16,0xcf,0x6f,0x7f,0x1, 0x3d,0xe7, -0xe0,0x1, 0xa7,0x83,0x67,0x1, 0xe6,0xe8,0xcf,0xaf,0xe7,0x10,0xcf,0x6f,0xe2,0x0, -0x7d,0x4, 0x3c,0xe5,0x3c,0x66,0xe0,0x0, 0xc1,0x46,0xe3,0xff,0xc1,0x7f,0x7f,0x1, -0xe0,0x9, 0xda,0xee,0xe2,0x71,0xc9,0x41,0x2, 0x83,0xe0,0x0, 0x22,0x73,0xe0,0x0, -0xc0,0x64,0xf8,0x0, 0xc, 0xa8,0xb, 0xe1,0xe0,0x80,0x8f,0x99,0x3f,0x6f,0xe1,0x2d, -0x3f,0xb6,0xe1,0x36,0x3f,0x46,0xe1,0x80,0x8f,0x9b,0x36,0xa2,0xf8,0x16,0x3b,0xa6, -0x3e,0x91,0xf4,0x0, 0xc3,0x6, 0xf0,0x0, 0xa2,0x8d,0xe6,0xfa,0xcd,0x2f,0xe8,0xa, -0x35,0x36,0xe8,0xa, 0x3d,0x45,0xbd,0xd, 0xe0,0xd, 0x37,0x44,0x36,0xa1,0xe6,0xfc, -0xcf,0x4e,0xe0,0x16,0x3c,0x1d,0xe6,0xf9,0xcd,0x7f,0x3e,0x95,0x37,0xc7,0x35,0x3e, -0x37,0xbe,0x9f,0xd, 0xf8,0x0, 0x9a,0x86,0x3f,0xce,0xb7,0x8d,0x3f,0xec,0xc7,0x81, -0xe8,0xa, 0x3d,0x45,0x3e,0x6f,0xe8,0x0, 0xb5,0x6, 0xe2,0x1, 0xc6,0x7f,0xe7,0xfe, -0x0, 0xc5,0xe0,0x80,0x8f,0x99,0xe1,0x80,0x8f,0x18,0x3e,0xef,0xe1,0x2c,0x3f,0xb3, -0xe1,0x2a,0x3e,0xc3,0xc6,0x9, 0xe2,0x0, 0x7f,0xa0,0x36,0x22,0xe0,0xa, 0x3a,0x2a, -0x3e,0x1f,0xe4,0x0, 0xc5,0x6, 0xa2,0x8c,0x3f,0xee,0xe6,0xfa,0xcf,0x2e,0x37,0x3a, -0x3f,0x45,0xbf,0xc, 0xe0,0xe, 0x36,0xc4,0xc7,0x3, 0x37,0x21,0xe2,0x0, 0x7d,0x8, -0x3d,0x1e,0xe6,0xfc,0xce,0xcd,0xe6,0xf9,0xce,0x7f,0x9a,0x8a,0x36,0x3d,0x3e,0x45, -0xb6,0xa, 0xe2,0x0, 0x7e,0x14,0x3f,0x1c,0x37,0xc7,0x37,0xbd,0x9e,0x8e,0x3f,0xcd, -0xb7,0x8e,0x3f,0xeb,0xc7,0x81,0x3d,0xef,0xe2,0x1, 0xc5,0xff,0xe7,0xfe,0x0, 0xc0, -0xe8,0x40,0x3a,0x69,0xe7,0xfe,0x0, 0xd2,0x8, 0xb7,0xf8,0x0, 0xc, 0x3c,0xc0,0x70, -0xe0,0x4, 0x1f,0xef,0xe4,0x0, 0xc4,0x93,0x12,0x0, 0x3c,0x9f,0x89,0x69,0xf0,0x40, -0x3d,0x68,0xe4,0x1, 0xc1,0xc, 0x3a,0xe4,0xe0,0x6e,0xc1,0x64,0xe3,0xff,0xc1,0x7f, -0x13,0x82,0xf0,0x0, 0x15,0x81,0xe0,0x3, 0x32,0x22,0xe2,0x0, 0x7b,0x4, 0xf0,0x40, -0x3c,0xe2,0x3b,0x13,0xe2,0x0, 0x7f,0x8c,0xf0,0x0, 0xc4,0x8a,0x3f,0x93,0xba,0x86, -0xf3,0xff,0xc4,0xff,0xba,0x8f,0x3d,0xe7,0x3d,0x66,0xe8,0x40,0x3c,0xe9,0x14,0x0, -0xe0,0x9, 0xd9,0xfc,0xa7,0x86,0xe8,0x40,0x3e,0xea,0xeb,0x80,0xc7,0x80,0xbf,0x86, -0xc6,0x89,0x3e,0x64,0x17,0x98,0xf0,0x40,0x3e,0x6c,0xe0,0x0, 0x2a,0x50,0xe0,0x41, -0x8f,0x1d,0x65,0x81,0x37,0x3f,0x3f,0x4b,0x7f,0x1, 0xc7,0xfa,0xe3,0xff,0xcf,0xfa, -0xc6,0x81,0x1, 0xf2,0xf0,0x40,0x3c,0x62,0xe2,0x0, 0x7f,0x8c,0xf0,0x0, 0xc4,0xc, -0x39,0x9f,0xf3,0xff,0xc4,0x7f,0x3d,0xe7,0x3d,0x63,0xe8,0x40,0x3c,0xe8,0x3c,0x65, -0xe0,0x9, 0xd9,0xd4,0xa7,0x83,0xe8,0x40,0x3e,0xea,0xe6,0xf8,0xcf,0x8f,0xbf,0x83, -0xc6,0x8e,0x17,0x9a,0xf0,0x0, 0x2e,0x32,0xe0,0x41,0x8f,0x1d,0x66,0x3, 0x37,0x3f, -0x3f,0x4c,0x7f,0x3, 0xc7,0xfa,0xe2,0x0, 0xcf,0x82,0xc6,0x81,0x1, 0xf4,0x3d,0xe7, -0x3d,0x66,0xe8,0x40,0x3c,0xe9,0x3c,0x65,0xe0,0x9, 0xda,0x2, 0x3d,0xe7,0x3d,0x63, -0xe8,0x40,0x3c,0xe8,0x3c,0x65,0xe0,0x0, 0xc1,0x46,0xe0,0x9, 0xd9,0xf9,0xe3,0xff, -0xc1,0x7f,0xe2,0x71,0xc9,0x41,0x2, 0x82,0x22,0x5, 0xc0,0x10,0xf8,0x0, 0xe, 0x28, -0xb, 0xe1,0xe8,0x40,0x3a,0x6b,0xe7,0xff,0x0, 0x90,0x8f,0xd, 0x65,0x82,0x37,0x3f, -0x3f,0x4b,0x7f,0x2, 0xe7,0xff,0x0, 0xb3,0x8f,0xd, 0x66,0x4, 0x37,0x3f,0x3f,0x4c, -0x7f,0x4, 0x0, 0xd1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xc0,0x78,0xe0,0x4, 0x1f,0xef, -0xe4,0x0, 0xc4,0x93,0x12,0x0, 0x3c,0x9f,0x89,0x69,0x39,0xe8,0xe4,0x1, 0xc1,0xc, -0x3a,0xe4,0xe0,0x6e,0xc1,0x64,0xe3,0xff,0xc1,0x7f,0x13,0x2, 0xf7,0x0, 0x14,0x80, -0xf0,0x0, 0x15,0x1, 0xf0,0x40,0x3c,0x62,0xf0,0x0, 0xc4,0xe, 0xf3,0xff,0xc4,0x7f, -0x7a,0x81,0x3d,0xe6,0xe2,0x0, 0x7d,0x4, 0xe8,0x40,0x3c,0xe8,0x14,0x0, 0x7a,0x82, -0xe0,0x9, 0xd9,0x6c,0x67,0x81,0xe8,0xf, 0x3f,0xd9,0x7f,0x81,0x67,0x1, 0xe0,0x0, -0x22,0x4f,0xe0,0x1, 0x8f,0x93,0x37,0xaa,0x3f,0xce,0x7f,0x81,0xe0,0x1, 0x8f,0xa3, -0x67,0x1, 0x37,0xa5,0x3f,0xce,0x7f,0x81,0x67,0x1, 0xe0,0x1, 0x8f,0xb3,0x3b,0xe2, -0xc3,0x90,0xe3,0xff,0xc3,0xff,0x3f,0xce,0x3d,0xe6,0xe2,0x0, 0x7d,0x8, 0x3c,0xe7, -0x3c,0x65,0x7f,0x81,0xe0,0x9, 0xd9,0x4a,0x67,0x82,0xeb,0x80,0xc7,0x80,0x7f,0x82, -0x2a,0x3b,0x3e,0x63,0xc6,0x3, 0x16,0x99,0xe1,0x80,0x8f,0x1c,0x65,0x82,0xe0,0xf, -0x37,0x3d,0xc6,0xfb,0x3f,0xcb,0xe3,0xff,0xce,0xfb,0x7f,0x82,0x1, 0xf6,0x3d,0xe6, -0xe2,0x0, 0x7d,0x4, 0xe8,0x40,0x3c,0xe8,0x3c,0x65,0xe0,0x9, 0xd9,0x79,0x3d,0xe6, -0xe2,0x0, 0x7d,0x8, 0x3c,0xe7,0x3c,0x65,0xe0,0x0, 0xc1,0x46,0xe0,0x9, 0xd9,0x70, -0xe3,0xff,0xc1,0x7f,0xe2,0x71,0xc9,0x41,0x2, 0x82,0x22,0x5, 0xc0,0x8, 0xf8,0x0, -0xd, 0x28,0xb, 0xe1,0xe8,0x40,0x3a,0x6a,0xe7,0xff,0x0, 0x9e,0x8f,0x83,0x37,0xaa, -0x3f,0xce,0x7f,0x81,0x8f,0x93,0x67,0x1, 0x37,0xa5,0x3f,0xce,0x7f,0x81,0x67,0x1, -0x8f,0xa3,0xe7,0xff,0x0, 0xb6,0x3e,0x63,0xc6,0xc, 0x16,0x99,0xe1,0x80,0x8f,0x1c, -0x65,0x82,0xe0,0xf, 0x37,0x3d,0xc6,0xfb,0x3f,0xcb,0xe3,0xff,0xce,0xfb,0x7f,0x82, -0x1, 0xf6,0x0, 0xc6,0x8, 0xb7,0xc0,0x78,0xe0,0x4, 0x1f,0xef,0xe4,0x0, 0xc4,0x13, -0xe2,0x0, 0x7a,0x4, 0x3c,0x1f,0x8f,0xe8,0xe0,0x1, 0x8a,0x98,0xe4,0x1, 0xc7,0x8c, -0xe0,0x1, 0x8f,0x28,0x39,0x6f,0x39,0xef,0xe0,0x6e,0xc1,0x64,0xe0,0x6f,0xc1,0xf0, -0xe3,0xff,0xc1,0x7f,0xe3,0xff,0xc1,0xff,0x13,0x80,0x13,0x2, 0x6a,0x84,0x6f,0x5, -0x3c,0xe2,0x3d,0xe6,0xe2,0x0, 0x7d,0x8, 0x14,0x0, 0x7b,0x82,0xe0,0x9, 0xd8,0xd6, -0xe1,0x80,0x8f,0x14,0x67,0x82,0x3c,0xe2,0xe7,0xb, 0xcf,0xfe,0x3d,0xe6,0xe2,0x0, -0x7d,0x8, 0x14,0x0, 0xe0,0x0, 0xc1,0x46,0xe3,0xff,0xc1,0x7f,0x7f,0x82,0xe0,0x9, -0xd9,0xf, 0xe2,0x71,0xc9,0x41,0x2, 0x83,0x39,0xf2,0x1, 0xe3,0xe0,0x0, 0x1f,0xf5, -0xe0,0x0, 0x1d,0x6a,0xe0,0x7, 0x9f,0x4f,0x15,0x81,0xe7,0x1, 0xcf,0x75,0xe0,0x20, -0x14,0xbc,0x14,0x0, 0xe0,0x7, 0xb7,0x4f,0xe0,0x9, 0xd8,0xfa,0xc0,0x8, 0xb, 0xe1, -0x8, 0xb7,0xf8,0x0, 0xc, 0x39,0xc0,0x78,0x13,0x0, 0xe1,0x26,0x3c,0x6, 0xe0,0x0, -0x2b,0x4e,0xe0,0x26,0x3d,0x6, 0xe0,0x0, 0x2b,0x4a,0xe0,0x4, 0x1f,0xef,0xe0,0x4, -0x1b,0xb4,0x89,0x6f,0x39,0xe9,0xe4,0x1, 0xc1,0xc, 0x12,0x2, 0xe0,0x6e,0xc1,0x6c, -0xe3,0xff,0xc1,0x7f,0xf0,0x40,0x3c,0x66,0x12,0x83,0xf0,0x0, 0x14,0x81,0x3d,0xe4, -0xe2,0x0, 0x7d,0x8, 0x3c,0xe2,0xe8,0x40,0x3c,0x68,0xe0,0x9, 0xd8,0x87,0xf0,0x0, -0x7c,0x1, 0x67,0x82,0xef,0x34,0xcf,0xa8,0x7f,0x82,0x2b,0x2f,0xe0,0x12,0x8f,0xa7, -0xe0,0x11,0x8d,0x97,0xe0,0x0, 0xc7,0xdb,0x3f,0x97,0xe2,0x0, 0xc9,0x82,0xe0,0x0, -0x5, 0xea,0xc7,0xff,0x16,0x80,0x3e,0xfb,0x1, 0xa8,0x3c,0xe2,0xc4,0xfa,0x3d,0xe4, -0xe2,0x0, 0x7d,0x4, 0xe3,0xff,0xc4,0xff,0xe8,0x40,0x3c,0x68,0xe0,0x9, 0xd8,0xb0, -0x3c,0xe2,0x3d,0xe4,0xe2,0x0, 0x7d,0x8, 0xe8,0x40,0x3c,0x68,0xe0,0x0, 0xc1,0x46, -0xe0,0x9, 0xd8,0xa6,0xe3,0xff,0xc1,0x7f,0x23,0x5, 0xc0,0x8, 0xf8,0x0, 0xc, 0xa8, -0xb, 0xe1,0xe8,0x40,0x3b,0x69,0x0, 0xc4,0xe0,0x12,0x8f,0x87,0xe0,0x11,0x8d,0x87, -0xe0,0x0, 0xc7,0xc7,0x3f,0x97,0x0, 0xd2,0xe0,0x80,0x8f,0x1f,0xe2,0x0, 0xcf,0x1f, -0x2, 0x8c,0x66,0x1, 0xf0,0xe, 0x34,0xbe,0x3f,0x4c,0x7f,0x1, 0x3f,0x6d,0xc7,0x1, -0x3e,0xee,0xe2,0x1, 0xc6,0xff,0x0, 0xc8,0x66,0x2, 0xf0,0xe, 0x34,0xbe,0xe6,0xc2, -0xce,0x6c,0x3f,0x4c,0x66,0x2, 0xe7,0x34,0xce,0x2e,0x7e,0x2, 0x0, 0xf0,0xe1,0x2e, -0x3f,0x45,0x39,0xfe,0x1, 0x8c,0xe0,0xe, 0x3f,0x9c,0x8f,0xe, 0xe2,0x0, 0xcf,0x1f, -0x2, 0x8e,0x66,0x81,0xf0,0xe, 0x34,0xbe,0x3f,0x4d,0x7f,0x1, 0xc6,0x1, 0x3f,0x6c, -0xe2,0x1, 0xc7,0x7f,0x3d,0xfe,0x2, 0xec,0xe7,0xff,0x0, 0xa9,0x66,0x82,0xf0,0xe, -0x34,0xbe,0xe6,0xc2,0xce,0xed,0x3f,0x4d,0x66,0x82,0xe7,0x34,0xce,0xae,0x7e,0x82, -0x0, 0xee,0x16,0x0, 0x0, 0xed,0x8, 0xb2,0xe0,0x4, 0x19,0x34,0xe0,0x2, 0x1c,0x86, -0xe0,0x4, 0x1c,0x22,0xe7,0x28,0x17,0xfc,0x15,0x24,0xe0,0x9, 0xb7,0xe2,0xef,0xfc, -0xd9,0xf3,0x17,0x82,0xe0,0x13,0xaf,0xa2,0xe7,0xff,0x17,0xa0,0xe0,0x13,0xaf,0xb2, -0x9, 0x61,0xe0,0x0, 0x1f,0x75,0xe0,0x0, 0x16,0xf8,0xe0,0x1f,0xb6,0x9e,0xe0,0x2, -0x17,0x80,0xe0,0x1f,0xb7,0xae,0xe0,0x12,0x16,0x80,0xe0,0x1f,0xb7,0xbe,0x15,0xf, -0xe0,0x1f,0xb6,0xce,0x16,0x8a,0xe0,0x1f,0xb7,0xde,0x17,0x80,0xe0,0x1f,0xb7,0xee, -0xe0,0x24,0x14,0x0, 0xe0,0x1f,0xb6,0xfe,0x16,0x83,0xe0,0x0, 0x1f,0x62,0xe0,0x0, -0x1c,0xe1,0xb6,0x8e,0xe0,0x1, 0x16,0x90,0xe0,0x0, 0x1f,0x60,0xb6,0x8e,0xe0,0x0, -0x1f,0x68,0xb7,0x8e,0xe0,0x0, 0x1f,0x67,0xb7,0x8e,0xe0,0x0, 0x1f,0x66,0xb7,0x8e, -0xe0,0x0, 0x1f,0x65,0xb7,0x8e,0xe0,0x0, 0x1f,0x64,0xb7,0x8e,0xe0,0x0, 0x1f,0x63, -0xb7,0x8e,0xe1,0x30,0x0, 0xe1,0x8, 0xb1,0xc0,0x78,0x17,0x0, 0xe2,0x0, 0x7e,0x88, -0xe1,0xc0,0xbf,0x1d,0xe6,0xff,0xcc,0x78,0x7f,0x1, 0xe0,0x4, 0x1f,0xb4,0x24,0x1a, -0xe0,0x12,0x8e,0xf, 0xe0,0x11,0x8d,0xf, 0xe0,0x0, 0xc6,0x46,0x3f,0x9c,0x14,0x1, -0x3d,0x7e,0x1, 0x1a,0xe0,0x80,0x8e,0x1f,0xc7,0x1, 0xe0,0xb, 0x36,0x45,0x35,0xa2, -0x3d,0x9d,0xa0,0x8b,0xe0,0xc, 0x34,0x3c,0x3e,0x41,0xe2,0x1, 0xc7,0x7f,0xbe,0xb, -0x0, 0xf0,0xe0,0x12,0x8f,0x2f,0xe0,0x11,0x8d,0x9f,0xe0,0x0, 0xc7,0x5a,0x3f,0x9e, -0x15,0x1, 0x3d,0xf8,0x1, 0x96,0x67,0x1, 0x67,0x82,0xbf,0x9, 0xe6,0xd6,0xcf,0xef, -0xa6,0xb9,0xe7,0x34,0xce,0xaf,0xbe,0xb9,0xbf,0x19,0xa6,0xb9,0xe7,0x2a,0xce,0xaf, -0xbe,0xb9,0xbf,0x29,0xa7,0x39,0xe7,0x20,0xcf,0x2f,0xbf,0x39,0xc0,0x8, 0x8, 0xe1, -0xe0,0x80,0x8f,0x1f,0xe0,0xc, 0x37,0x45,0x36,0x22,0x3e,0x1d,0xa0,0x8c,0xe0,0xe, -0x35,0x3e,0x3f,0x41,0xbf,0xc, 0x3f,0x68,0xc7,0x1, 0x3c,0x6e,0xe2,0x1, 0xc4,0x7f, -0x0, 0xd9,0xe0,0x4, 0x1f,0xee,0xe4,0x0, 0xc4,0x13,0xe0,0x0, 0x1c,0xe0,0x3c,0x1f, -0x8f,0xa8,0x8f,0x38,0xe6,0xdb,0xcf,0xbf,0x3f,0xce,0x9f,0x9, 0x15,0x1, 0xe7,0x20, -0xcf,0x5f,0xe0,0x24,0x14,0x8, 0xb7,0x9, 0xe1,0x2f,0x0, 0xf6,0xe2,0x1, 0xcc,0x1, -0xe0,0x2, 0x1, 0xc6,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x68,0x8f,0x89,0x3a,0x69, -0x7f,0x83,0x3f,0xe0,0xc7,0x94,0x13,0x80,0x15,0x8, 0x14,0x80,0x3c,0x6f,0xf0,0x40, -0x3d,0xe7,0xf0,0x2, 0x1f,0x5, 0xef,0xfc,0xd9,0x67,0xf0,0x40,0x3e,0xe7,0x67,0x83, -0xf2,0x1, 0xc6,0xff,0xf0,0x40,0x3e,0xff,0xe0,0x1, 0x3, 0xc6,0xf0,0x40,0x3c,0x67, -0xf4,0x0, 0xc4,0x24,0xe2,0x0, 0x7a,0x94,0xf0,0x18,0x3c,0x14,0xf0,0x0, 0xc4,0x8, -0xf0,0x40,0x3e,0x67,0xe8,0x5, 0x3a,0x9b,0xe8,0x40,0x39,0x6b,0xf0,0x0, 0x14,0x80, -0xf4,0x0, 0xc6,0x12,0xf0,0x0, 0x7c,0x4, 0xe0,0x0, 0x0, 0xe8,0xf8,0xf, 0x3e,0x19, -0x37,0xa1,0x3f,0x94,0xe0,0x1, 0x8f,0x3f,0xe0,0x1, 0x8f,0xbf,0xe6,0xfb,0xc9,0xde, -0xe2,0x0, 0xc9,0x85,0xf6,0xfe,0xcd,0x6f,0xe0,0x0, 0x2, 0xcc,0xea,0xf6,0x7f,0xb6, -0xe9,0xff,0xc7,0xfc,0x3f,0x63,0x3f,0x1f,0x8f,0xe, 0x3f,0x1f,0x3f,0x2, 0x6, 0x6, -0x6, 0x82,0xc6,0xc6,0x3c,0x63,0xe0,0x2, 0xd4,0x54,0xf8,0xf, 0x3e,0x19,0xc7,0x84, -0x37,0xa1,0x3f,0x94,0x9f,0x1f,0xe0,0xd, 0x31,0xa2,0xe7,0xb, 0xcf,0x38,0xb7,0x1f, -0xf0,0xe, 0x3e,0xc6,0xe2,0x1, 0xc7,0x7f,0x2f,0x10,0x9c,0x9f,0xf0,0x8, 0x3d,0x1d, -0xe6,0xf2,0xcc,0xd9,0x7f,0x81,0x7e,0x82,0xe0,0x2, 0xd6,0x52,0x67,0x81,0x9f,0x1f, -0xe7,0xb, 0xcf,0x38,0xb7,0x1f,0x66,0x82,0x8f,0x85,0x3f,0xcd,0xf0,0x0, 0x2d,0x37, -0xcf,0x81,0xaf,0x85,0x2b,0x16,0xe8,0x0, 0x8f,0x8e,0xe2,0x0, 0xcf,0x81,0x2, 0x83, -0x14,0x7, 0xd8,0xd1,0x66,0x84,0x9c,0x1d,0xe2,0x1, 0xc4,0x7f,0xe0,0x1, 0xd5,0x57, -0x3c,0xe8,0x3c,0x63,0xdf,0x5f,0x8d,0x54,0x14,0x80,0x35,0x47,0x3c,0x63,0xde,0x11, -0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe2,0x0, 0xc9,0x7, 0xc2,0x81, -0xe0,0x0, 0x2, 0xcc,0xf0,0x0, 0xc4,0x81,0xe8,0x40,0x3b,0x69,0xe8,0x0, 0x8f,0x88, -0xe2,0x1, 0xc3,0x7f,0x3b,0x7f,0xe7,0xff,0x4, 0x93,0xe2,0x0, 0xc9,0x7, 0xc3,0x81, -0x2, 0xbc,0xf0,0x40,0x3d,0xe2,0xe7,0xfe,0x0, 0xea,0xf2,0x0, 0xcd,0x1, 0x1, 0xca, -0xcf,0x82,0x0, 0xc8,0xe0,0x2, 0xd3,0xe9,0xf8,0xf, 0x3e,0x19,0xc7,0x84,0x37,0xa1, -0x3f,0x94,0x9f,0x1f,0xe7,0xb, 0xcf,0x38,0xb7,0x1f,0xf0,0xe, 0x3e,0xc6,0xe2,0x1, -0xc7,0x7f,0x2f,0x10,0x9c,0x9f,0xe0,0x8, 0x31,0xa2,0xe6,0xf2,0xcc,0xd9,0xe8,0x8, -0x3c,0x1a,0x7f,0x81,0xe0,0x2, 0xd4,0xef,0x67,0x81,0x9f,0x1f,0xe7,0xb, 0xcf,0x38, -0xb7,0x1f,0x8f,0x85,0xcf,0x90,0xaf,0x85,0xe8,0x0, 0x8f,0x8e,0xe2,0x0, 0xcf,0x81, -0xe7,0xff,0x2, 0xb8,0xe8,0x40,0x39,0x7b,0xe7,0xff,0x1, 0xb4,0x14,0x3f,0xd8,0x73, -0xe7,0xff,0x0, 0xb0,0xe8,0x40,0x39,0x6b,0xe0,0x0, 0x1f,0xf5,0xe7,0x0, 0x16,0x0, -0xe0,0xc, 0x9f,0x4f,0x3d,0x60,0xe7,0x0, 0xcf,0x42,0xe0,0xc, 0xb7,0x4f,0xc5,0x14, -0xe0,0xc, 0x9e,0xdf,0x3e,0xdc,0xe0,0xc, 0xb6,0xdf,0xe0,0xc, 0x9f,0x6f,0x3f,0x5c, -0xe0,0xc, 0xb7,0x6f,0x16,0x0, 0xe0,0xc, 0x9f,0x7f,0xe3,0xf8,0xc7,0x0, 0xe0,0xc, -0xb7,0x7f,0x3d,0xec,0xe2,0x1, 0xc5,0xff,0x3d,0xf2,0x4, 0x9e,0xe0,0xc, 0x9e,0xcf, -0xe0,0x3, 0x1f,0x31,0xe0,0x0, 0x1c,0xf3,0xe0,0xc, 0xb6,0xce,0x15,0x4, 0xe0,0xc, -0x9e,0xdf,0xe0,0x20,0x14,0x64,0xe0,0xc, 0xb6,0xde,0xe0,0xc, 0x9e,0xef,0xe0,0xc, -0xb6,0xee,0xe0,0xc, 0x9f,0xff,0xe0,0xc, 0xb7,0xfe,0xc0,0x18,0xf8,0x0, 0xf, 0x28, -0xb, 0xa1,0xe1,0x2d,0x0, 0xd1,0xe2,0x0, 0xcd,0x82,0x3e,0xec,0xe1,0x80,0x8f,0x1a, -0xe4,0x0, 0xc6,0x85,0x2, 0x89,0xe0,0xc, 0x9d,0xdf,0x37,0x3d,0x3f,0x4b,0xe0,0xc, -0xb7,0x5f,0xc6,0x1, 0x0, 0xcf,0xe2,0x0, 0xcd,0x85,0x2, 0x89,0xe0,0xc, 0x9d,0xef, -0xc6,0xf1,0x37,0x3d,0x3f,0x4b,0xe0,0xc, 0xb7,0x6f,0x0, 0xf4,0xe0,0xc, 0x9d,0xff, -0xc6,0xe2,0x37,0x3d,0x3f,0x4b,0xe0,0xc, 0xb7,0x7f,0x0, 0xec,0x38,0x82,0x8, 0xb4, -0xe2,0x0, 0xcc,0x9, 0x39,0x68,0xe6,0xfb,0xc9,0xd8,0xe0,0x0, 0x1f,0xf5,0x2, 0xb0, -0x16,0x81,0xe0,0xe, 0x36,0xb8,0x3e,0x6e,0xe2,0x4, 0xc6,0x22,0x2e,0x25,0xe2,0x2, -0xc7,0x11,0x27,0x26,0xe0,0x5, 0x9f,0x5f,0xe7,0x5, 0xcf,0x2d,0xe0,0x5, 0xb7,0x5f, -0x12,0x0, 0xe0,0x5, 0x9f,0x5f,0x14,0x7, 0xe7,0x7, 0xcf,0x23,0xe0,0x5, 0xb7,0x5f, -0xe0,0x5, 0x9f,0x5f,0xe7,0x9, 0xcf,0x14,0xe0,0x5, 0xb7,0x5f,0xef,0xff,0xd7,0xe4, -0x3c,0xe4,0x3c,0x63,0xde,0x77,0xe0,0x2, 0xd3,0x41,0xe0,0x1, 0x14,0xff,0x3c,0x62, -0xa, 0x21,0xe0,0x4a,0x0, 0xc5,0xe0,0x5, 0x9f,0x5f,0x16,0x82,0x0, 0xde,0xe0,0x5, -0x9f,0x5f,0x16,0x80,0x0, 0xda,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x74,0x17,0x80, -0xe2,0x1, 0xcc,0x0, 0x77,0x84,0x6f,0x8a,0x77,0x86,0x6f,0x8e,0xe0,0x1, 0x1, 0xcb, -0x8f,0x9, 0x12,0x0, 0x3a,0xe9,0x39,0x64,0xf0,0x40,0x3d,0xe4,0x7f,0x1, 0xf0,0x40, -0x3c,0x64,0x67,0x81,0xf2,0x1, 0xc4,0x7f,0xf0,0x40,0x3c,0x7f,0xe0,0x1, 0x4, 0xad, -0x14,0x7, 0xef,0xff,0xd7,0xb1,0x4f,0x8e,0x4f,0xa, 0xe6,0xde,0xcf,0xaf,0xe6,0xde, -0xcf,0x4e,0x3f,0xce,0x4f,0xd, 0x16,0x80,0xe6,0xde,0xcf,0x6e,0x3f,0xce,0x4f,0x9, -0xe0,0x0, 0x1c,0xdf,0xe6,0xfe,0xcf,0xe, 0x3f,0xce,0x4f,0xc, 0x15,0x1, 0xe6,0xfe, -0xcf,0x2e,0x3f,0xce,0x4f,0x8, 0xe0,0x20,0x14,0x2c,0xe6,0xfe,0xcf,0x4e,0x3f,0xce, -0xe6,0xfe,0xcf,0x62,0x3f,0xce,0xe0,0x0, 0x1f,0x75,0xe0,0x5, 0xb7,0xce,0xe0,0x5, -0x9f,0xde,0xe7,0x9, 0xcf,0x9d,0xe0,0x5, 0xb7,0xde,0xc0,0xc, 0xf8,0x0, 0xf, 0x28, -0xb, 0xa1,0xe1,0x2c,0x0, 0xa1,0xf8,0x1e,0x3e,0x19,0xf0,0xf, 0x37,0x21,0x3f,0x95, -0xe0,0x1, 0x8f,0x3f,0xe0,0x1, 0x8f,0xbf,0xe6,0xfb,0xc9,0xde,0x3e,0xef,0xe2,0x0, -0x7f,0x8c,0x3f,0x92,0xe2,0x0, 0xc9,0x83,0xa9,0x8f,0xf0,0x40,0x3d,0x62,0xe0,0x0, -0x2, 0xc9,0x3c,0x63,0xe6,0xfe,0xcb,0xed,0xe0,0x2, 0xd2,0xbb,0xe8,0x40,0x3f,0xee, -0xc7,0x84,0x37,0xa1,0x3f,0x95,0x9d,0x1f,0xe7,0xb, 0xcd,0x38,0xb5,0x1f,0x3d,0x62, -0xc5,0x1, 0x39,0x6a,0xf8,0xa, 0x3c,0x49,0xe2,0x1, 0xc5,0x7f,0xe2,0x1, 0xc1,0x7f, -0x2d,0x27,0x9c,0x9f,0xe0,0x8, 0x31,0xa2,0xe6,0xf2,0xcc,0xd9,0x3c,0x17,0xe0,0x2, -0xd4,0xb7,0x8d,0x55,0xe8,0x40,0x3c,0xeb,0x35,0x47,0x3c,0x63,0xdc,0x92,0xe2,0x0, -0xcb,0x81,0x1, 0x2e,0x4, 0x8e,0xe2,0x0, 0xcb,0x82,0x1, 0x30,0xe8,0x0, 0x9c,0x1d, -0xe2,0x1, 0xc4,0x7f,0xe0,0x1, 0xd3,0xc3,0x3c,0xe8,0x3c,0x63,0xdd,0xcb,0x0, 0x91, -0xe2,0x0, 0x7f,0x8, 0xe8,0xe, 0x3f,0x1a,0x17,0x81,0xaf,0x8e,0x0, 0x88,0xe2,0x0, -0xcb,0x81,0x1, 0x16,0x4, 0xf6,0xe2,0x0, 0xcb,0x82,0x1, 0x18,0xf7,0xff,0x24,0xe8, -0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef,0xf2,0x1, 0xc4,0xff,0x8f,0x86, -0xf0,0x40,0x3c,0xff,0xe7,0xff,0x4, 0x99,0xc2,0x1, 0xe7,0xfe,0x0, 0xda,0xe2,0x0, -0x7f,0x8, 0xe8,0xe, 0x3f,0x1a,0x17,0x82,0x0, 0xe1,0xe2,0x0, 0x7f,0x8, 0xe8,0xe, -0x3f,0x1a,0x17,0x80,0x0, 0xdb,0x3b,0x64,0xe4,0x0, 0xc3,0x24,0xf0,0x40,0x3e,0x64, -0x3b,0x15,0xc3,0x8, 0xf0,0x0, 0x14,0x80,0xf4,0x0, 0xc6,0x12,0xf0,0x40,0x3e,0xe6, -0x0, 0xdf,0xc0,0xc, 0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b, -0xc0,0x74,0xe0,0x4, 0x19,0xef,0xe4,0x0, 0xc4,0x13,0xf0,0x0, 0x15,0x80,0x39,0x98, -0x89,0x63,0x3b,0x63,0xe4,0x1, 0xc1,0xc, 0x3b,0xe3,0xe0,0x6e,0xc1,0x64,0xe3,0xff, -0xc1,0x7f,0x12,0x2, 0xe8,0x40,0x3a,0xeb,0xc3,0xa, 0xc3,0x89,0xf0,0x0, 0x14,0x1, -0x3d,0xe4,0xe2,0x0, 0x7d,0xc, 0x3c,0xe2,0x3c,0x65,0xe0,0x9, 0xd4,0xcf,0xf0,0x0, -0x2d,0xec,0x8f,0x7, 0xf0,0x40,0x3d,0x62,0x67,0x83,0xf0,0x0, 0xc5,0x40,0xf3,0xff, -0xc5,0x7f,0xf0,0x40,0x3c,0xe2,0xe7,0xb, 0xcf,0xfe,0x3d,0xe4,0xe2,0x0, 0x7d,0x4, -0xe8,0x40,0x3c,0xea,0x3c,0x65,0xf0,0x0, 0xc4,0xc2,0x7f,0x83,0xf3,0xff,0xc4,0xff, -0xe0,0x9, 0xd4,0xb4,0x3d,0xe4,0xe2,0x0, 0x7d,0x8, 0xe8,0x40,0x3c,0xe9,0x3c,0x65, -0xe0,0x9, 0xd4,0xac,0x8f,0x83,0x8f,0x13,0xe6,0xde,0xcf,0xef,0x3f,0xce,0x67,0x1, -0x3c,0xe2,0xe7,0x33,0xcf,0x2f,0x7f,0x1, 0x3d,0xe4,0x8f,0xa3,0x8f,0x33,0xe6,0xdd, -0xcf,0xdf,0x3f,0xce,0x67,0x2, 0xe2,0x0, 0x7d,0xc, 0xe7,0x2b,0xcf,0x3f,0x7f,0x2, -0x3c,0x65,0x67,0x81,0x67,0x2, 0xe6,0xc3,0xcf,0xff,0xe7,0x36,0xcf,0x2f,0x7f,0x2, -0xe0,0x0, 0xc1,0x46,0x67,0x82,0x67,0x1, 0xe6,0xca,0xcf,0xdf,0xc7,0xe7,0xe7,0x28, -0xcf,0x3f,0x7f,0x1, 0xe0,0x9, 0xd4,0xcc,0x3d,0xe4,0xe2,0x0, 0x7d,0x4, 0xe8,0x40, -0x3c,0xea,0x3c,0x65,0xe0,0x9, 0xd4,0xc4,0x3d,0xe4,0xe2,0x0, 0x7d,0x8, 0xe8,0x40, -0x3c,0xe9,0x3c,0x65,0xe3,0xff,0xc1,0x7f,0xe0,0x9, 0xd4,0xba,0xe2,0x71,0xc9,0x41, -0x2, 0x83,0xf0,0x0, 0x25,0x86,0xc0,0xc, 0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0xf8,0x40, -0x3d,0xe8,0xe7,0xff,0x0, 0x8f,0x8f,0x6, 0xe7,0xff,0x0, 0x96,0x8, 0xb7,0xf8,0x0, -0xc, 0x3d,0xc0,0x70,0xe0,0x4, 0x1a,0xb4,0x39,0x60,0xe0,0x13,0x8f,0xb5,0xc1,0x4, -0xe6,0xff,0xcf,0xff,0x3a,0x6f,0xe0,0x5, 0x1f,0xa5,0xf0,0x4, 0x1c,0x6f,0x7f,0x81, -0xea,0x1, 0xcf,0x80,0xbf,0x92,0xe0,0x65,0x13,0x18,0xe0,0x5, 0x1f,0xa6,0x11,0x80, -0xbf,0xa2,0xe0,0x2, 0x17,0x80,0xf0,0x0, 0x14,0x82,0xf0,0x0, 0x16,0x90,0xe8,0x40, -0x3b,0xe8,0xf0,0x0, 0x15,0x1, 0xf0,0x0, 0x15,0x83,0xf0,0x0, 0x16,0x8, 0xbf,0xb2, -0xa7,0xa2,0xa7,0x2, 0xe6,0xe1,0xcf,0x9f,0xe6,0xf6,0xcf,0x7e,0x27,0x28,0xe9,0x2d, -0x3f,0xed,0xa7,0xa2,0x15,0x93,0xe6,0xe8,0xcd,0xf, 0xe6,0xf7,0xcf,0x83,0x3d,0xbf, -0xe0,0x13,0x8e,0x35,0xf0,0xf, 0x3c,0x1b,0xe0,0x1, 0x8f,0xf, 0xe6,0xf9,0xce,0x7c, -0x37,0x14,0x26,0x18,0xa7,0x92,0xef,0x16,0xcf,0x9a,0xbf,0x92,0xe0,0x2f,0x3f,0x3d, -0xa7,0x22,0x3f,0xaa,0xe3,0xff,0xc7,0xff,0xe7,0x40,0xcf,0xf, 0xbf,0x22,0xe2,0x0, -0xc9,0x84,0xa7,0x82,0x1, 0xa5,0xef,0x1c,0xcf,0xcb,0x0, 0xa5,0xe9,0x2d,0x3f,0xe9, -0x0, 0xd9,0xe0,0x13,0x8f,0xb5,0xe6,0xfc,0xcf,0xef,0xe2,0x0, 0xcf,0x81,0x1, 0x8, -0xe0,0x13,0x8f,0xb5,0xe6,0xfc,0xcf,0xef,0xe2,0x0, 0xcf,0x82,0x1, 0x8d,0xa7,0x92, -0xef,0x16,0xcf,0x9a,0xbf,0x92,0xe0,0xf, 0x3b,0x9b,0x8f,0xcf,0x3f,0xbe,0x37,0xa1, -0xe0,0x2f,0x3f,0xbd,0x0, 0xd6,0xa7,0x92,0xe7,0x16,0xcf,0x9c,0x0, 0xf4,0x22,0x5c, -0xef,0x1c,0xcf,0xc9,0xbf,0x82,0xe0,0xf, 0x3b,0x9b,0xe0,0x2, 0x8f,0xf, 0xa7,0xb2, -0x3c,0x66,0xe7,0x0, 0xcf,0xde,0xbf,0xb2,0xe8,0x40,0x3d,0x6c,0x3c,0xe2,0xe0,0x9, -0xd4,0x7b,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe2,0x0, 0xc9,0x85, -0xc3,0x8, 0xe3,0xff,0xc3,0x7f,0xe7,0xff,0x1, 0x95,0xc0,0x10,0xf8,0x0, 0xe, 0xa8, -0xb, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3c,0xe1,0xfe,0xc0,0x54,0x39,0x60,0xc1,0x24, -0x3c,0x62,0xe0,0x0, 0x15,0x6c,0x14,0x80,0xc4,0x4, 0xef,0xfc,0xd5,0xe5,0xe0,0x5, -0x1f,0xa7,0x12,0x80,0x7f,0x89,0xe0,0x6e,0x13,0x64,0xe0,0x5, 0x1f,0xa8,0xe0,0x4, -0x1b,0xb4,0x7f,0x8e,0xe0,0x7d,0x17,0xef,0x7f,0x8f,0x3a,0x65,0xe0,0x5, 0x1f,0xa9, -0xf0,0x4, 0x1d,0x6f,0x7f,0x90,0xea,0x80,0xcf,0x80,0x7f,0x91,0xf8,0x40,0x3d,0xea, -0xe0,0x5, 0x1f,0xaa,0xf0,0x40,0x3c,0x65,0xe0,0x3, 0xbf,0xc2,0x11,0x81,0xe0,0x3, -0xa7,0xc2,0xf0,0x0, 0x14,0x8e,0xe7,0x4, 0xcf,0x95,0xe0,0x3, 0xbf,0xc2,0xf0,0x0, -0x16,0x6e,0xe0,0x5, 0x1f,0xab,0xe0,0x3, 0xbf,0xd2,0xe0,0x13,0x8f,0xb7,0xe0,0x3, -0xa7,0x52,0xe6,0xfc,0xcf,0xef,0xe7,0x8, 0xcf,0x2f,0xe0,0x5, 0x1f,0xac,0xe0,0x3, -0xbf,0x52,0xe0,0x3, 0xbf,0xe2,0xe0,0x5, 0x1f,0xad,0xe0,0x3, 0xbf,0xf2,0xe0,0x5, -0x1f,0xae,0xe0,0x4, 0xbf,0x82,0xe0,0x5, 0x1f,0xaf,0xe0,0x4, 0xbf,0x92,0xe0,0x5, -0x1f,0xb0,0xe0,0x4, 0xbf,0xa2,0xe6,0xf7,0xcf,0x4, 0xe4,0x0, 0xc7,0x13,0xf0,0xf, -0x3d,0x1e,0x8e,0x8f,0x8e,0x1f,0xe6,0xde,0xce,0xed,0x3e,0xcc,0xe0,0x4, 0xa6,0x2, -0xe7,0x33,0xce,0x2d,0xe0,0x4, 0xbe,0x2, 0x8e,0xaf,0x8e,0x3f,0xe6,0xdd,0xce,0xdd, -0x3e,0xcc,0xe0,0x4, 0xa6,0x12,0xe7,0x2b,0xce,0x3d,0xe0,0x4, 0xbe,0x12,0xe0,0x3, -0xa6,0xc2,0x8e,0x4f,0xe7,0x37,0xce,0x8c,0xe0,0x3, 0xbe,0xc2,0xe0,0x3, 0xa6,0xc2, -0xe0,0x1, 0x8e,0xf, 0xe7,0x11,0xce,0xec,0xe0,0x3, 0xbe,0xc2,0xe0,0x13,0x8e,0xb7, -0xe0,0x3, 0xa6,0x42,0xe6,0xff,0xce,0xfd,0xe7,0x3, 0xce,0x1d,0xe0,0x3, 0xbe,0x42, -0xe6,0xff,0xce,0x74,0xa6,0x82,0xe0,0x2, 0x2e,0x3d,0xe7,0x16,0xce,0x93,0xbe,0x82, -0xa6,0x82,0xe7,0x17,0xce,0x9c,0xbe,0x82,0xe0,0x1, 0x8e,0x9f,0xa7,0x82,0xe7,0xb, -0xcf,0xfd,0xbf,0x82,0xe0,0x12,0x8f,0xa7,0x3f,0x97,0xe0,0xb, 0x8f,0xbf,0xe8,0xe, -0x3f,0x1b,0xe0,0x1, 0x8f,0x5e,0xe0,0xf, 0x31,0xbf,0xe3,0xff,0xc7,0xff,0xe0,0x2, -0x27,0x35,0xa7,0x82,0x17,0xb, 0xef,0x1c,0xcf,0x98,0xbf,0x82,0xa7,0x82,0xef,0x1b, -0xcf,0x98,0xbf,0x82,0xa7,0x82,0xe7,0x1a,0xcf,0x93,0xbf,0x82,0xa7,0x82,0xe7,0x12, -0xcf,0x93,0xbf,0x82,0xa7,0xd2,0xe7,0x1e,0xcf,0x93,0xbf,0xd2,0xa7,0xf2,0xe7,0x1a, -0xcf,0xa3,0xbf,0xf2,0xe0,0x3, 0xa7,0xd2,0xe7,0x7, 0xcf,0x93,0xe0,0x3, 0xbf,0xd2, -0xe0,0x4, 0xa7,0xa2,0xe7,0x9, 0xcf,0xde,0xe0,0x4, 0xbf,0xa2,0x17,0x5, 0xe0,0x4, -0xa7,0xa2,0xe7,0x5, 0xcf,0xce,0xe0,0x4, 0xbf,0xa2,0x17,0xf, 0xe0,0x4, 0xa7,0xa2, -0xe7,0x0, 0xcf,0xde,0xe0,0x4, 0xbf,0xa2,0x17,0x80,0xa7,0x2, 0xe6,0xe3,0xcf,0x7e, -0x2f,0x5, 0xa7,0x2, 0xe6,0xe5,0xcf,0x7e,0x27,0x5, 0xa7,0x72,0xe7,0x1e,0xcf,0x13, -0xbf,0x72,0xa7,0x2, 0xe6,0xe5,0xcf,0x7e,0xe0,0x2, 0x27,0x24,0xe0,0x3, 0xa7,0x72, -0x16,0x87,0xe7,0x19,0xcf,0x7d,0xe0,0x3, 0xbf,0x72,0x16,0x8a,0xe0,0x3, 0xa7,0x72, -0xe7,0x20,0xcf,0xd, 0xe0,0x3, 0xbf,0x72,0x16,0xbe,0xe0,0x4, 0xa7,0x12,0xe7,0x36, -0xcf,0x2d,0xe0,0x4, 0xbf,0x12,0xe0,0x4, 0xa7,0x22,0xef,0x1b,0xcf,0x59,0xe0,0x4, -0xbf,0x22,0xa7,0x52,0xe7,0x1f,0xcf,0x13,0xbf,0x52,0xe6,0xf4,0xce,0xef,0xe0,0x3, -0xa7,0x52,0xe7,0x36,0xcf,0x2f,0xe0,0x3, 0xbf,0x52,0xe6,0xf1,0xcf,0xdf,0xe0,0x3, -0xa7,0x62,0xe7,0x1e,0xcf,0x2d,0xe0,0x3, 0xbf,0x62,0xe0,0x4, 0xa7,0x2, 0xe7,0x1d, -0xcf,0x3f,0xe0,0x4, 0xbf,0x2, 0xa7,0x82,0xef,0x1d,0xcf,0x98,0xbf,0x82,0xa7,0x82, -0xe6,0xe6,0xcf,0xff,0xe0,0x2, 0x2f,0x86,0xe0,0x3, 0xa7,0x42,0xe7,0x9, 0xcf,0x4f, -0xe0,0x3, 0xbf,0x42,0xe0,0xf, 0x31,0xb5,0x3f,0x6f,0xe2,0x0, 0xc7,0x13,0xe0,0x2, -0x2f,0x1, 0xe2,0x0, 0xc7,0x8c,0xe0,0x2, 0x2f,0xa6,0xe0,0x4, 0xa7,0x82,0xe0,0x4, -0xa7,0x12,0xe6,0xc3,0xcf,0xff,0xe7,0x36,0xcf,0x2f,0xe0,0x4, 0xbf,0x12,0x3c,0x64, -0xe0,0x4, 0xa7,0x92,0xe0,0x4, 0xa7,0x2, 0xe6,0xca,0xcf,0xdf,0xc7,0xe7,0xe7,0x28, -0xcf,0x3f,0xe0,0x4, 0xbf,0x2, 0xe2,0x0, 0x7d,0x14,0xe0,0x4, 0xa7,0x92,0xe0,0x3, -0xa7,0x72,0xe6,0xca,0xcf,0xdf,0xe6,0xc7,0xcf,0x6e,0xc7,0x83,0x3f,0xae,0xe0,0x3, -0xa7,0x62,0xe2,0x0, 0x7c,0x84,0xe7,0x29,0xcf,0x3f,0xe0,0x3, 0xbf,0x62,0x3f,0xe4, -0xe0,0x3, 0xa7,0x52,0xe0,0x0, 0xc7,0xc2,0xe2,0x1, 0xc7,0xff,0xe7,0x2d,0xcf,0xf, -0xe0,0x3, 0xbf,0x52,0xda,0x91,0x67,0x81,0x3c,0x66,0xbf,0x92,0x15,0x12,0x67,0x82, -0x3c,0xe2,0xbf,0xa2,0xc2,0x81,0x67,0x83,0xbf,0xb2,0x67,0x84,0xbf,0xc2,0xe0,0x9, -0xd2,0xe3,0x3c,0x66,0xc4,0x38,0x3c,0xe0,0xe8,0x40,0x3d,0x69,0xe0,0x1, 0xc4,0x94, -0xe3,0xff,0xc4,0x7f,0xe0,0x9, 0xd2,0xd8,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, -0xc2,0x7f,0xe2,0x0, 0xca,0x5, 0xe0,0x0, 0xc3,0x46,0xe3,0xff,0xc3,0x7f,0xe7,0xfd, -0x1, 0xbc,0xe0,0x5, 0x1c,0x6, 0x14,0x80,0xd8,0x8e,0xe0,0x0, 0x1c,0x35,0x14,0x80, -0xef,0xff,0xd7,0xf4,0xe0,0x1, 0x1c,0xe, 0x14,0x80,0xef,0xff,0xd6,0xc5,0xe0,0x5, -0x1c,0x5, 0x14,0x81,0xd8,0x80,0xe0,0x0, 0x1c,0x34,0x14,0x81,0xef,0xff,0xd7,0xe6, -0xe0,0x1, 0x1c,0xd, 0x14,0x81,0xef,0xff,0xd6,0xb7,0xe0,0x5, 0x1c,0x4, 0x14,0x82, -0xd8,0x72,0xe0,0x0, 0x1c,0x33,0x14,0x82,0xef,0xff,0xd7,0xd8,0xe0,0x1, 0x1c,0xc, -0x14,0x82,0xef,0xff,0xd6,0xa9,0xe0,0x1, 0xc0,0x2c,0xf8,0x0, 0xe, 0x28,0xb, 0xe1, -0xef,0x16,0xce,0x98,0xbe,0x82,0xa6,0x82,0xe7,0x17,0xce,0x93,0xbe,0x82,0xe0,0x1, -0x8e,0xaf,0xa7,0x82,0xe7,0xb, 0xcf,0xfd,0xbf,0x82,0xe0,0x12,0x8f,0x87,0x3f,0x97, -0xe0,0x8, 0x8f,0xff,0xe7,0xfd,0x0, 0xc5,0xa6,0x82,0xe7,0x1c,0xce,0x93,0xbe,0x82, -0xa6,0x82,0xe7,0x1b,0xce,0x9e,0xbe,0x82,0xa6,0x82,0xe7,0x1a,0xce,0x9e,0xbe,0x82, -0xa6,0x82,0xe7,0x12,0xce,0x9e,0xbe,0x82,0xa6,0xd2,0xe7,0x1e,0xce,0x9e,0xbe,0xd2, -0xa6,0xf2,0xe7,0x1a,0xce,0xae,0xbe,0xf2,0xe0,0x3, 0xa6,0xd2,0xe7,0x7, 0xce,0x9e, -0xe0,0x3, 0xbe,0xd2,0x16,0x83,0xe0,0x4, 0xa7,0x22,0xe7,0x9, 0xcf,0x53,0xe0,0x4, -0xbf,0x22,0xe0,0x4, 0xa7,0x22,0xe7,0x5, 0xcf,0x4d,0xe0,0x4, 0xbf,0x22,0x16,0x9d, -0xe0,0x4, 0xa7,0x22,0xe7,0x0, 0xcf,0x5d,0xe0,0x4, 0xbf,0x22,0xe7,0xfd,0x0, 0xcf, -0xe0,0x3, 0xa6,0xf2,0x16,0x1e,0xef,0x19,0xce,0xf9,0xe0,0x3, 0xbe,0xf2,0xe0,0x3, -0xa6,0xf2,0xef,0x20,0xce,0x8c,0xe0,0x3, 0xbe,0xf2,0xe0,0x4, 0xa6,0x92,0xe7,0x36, -0xce,0xac,0xe0,0x4, 0xbe,0x92,0x16,0x6, 0xe0,0x4, 0xa6,0xa2,0xe7,0x1b,0xce,0xdc, -0xe0,0x4, 0xbe,0xa2,0xa6,0xd2,0xe7,0x1f,0xce,0x9e,0xbe,0xd2,0xe7,0xfd,0x0, 0xdf, -0xe0,0x3, 0xa7,0xc2,0xe7,0x9, 0xcf,0xc3,0xe0,0x3, 0xbf,0xc2,0xe7,0xfd,0x0, 0xfc, -0xa7,0x82,0xe2,0x0, 0xca,0x4, 0xe7,0x1f,0xcf,0x93,0xbf,0x82,0xa7,0x82,0xef,0x1e, -0xcf,0x98,0xbf,0x82,0xa7,0x82,0xe8,0x0, 0xcf,0xb8,0xbf,0x82,0xe7,0xfd,0x1, 0xf7, -0xa7,0x82,0x17,0xf, 0xe7,0x1d,0xcf,0x93,0xbf,0x82,0xe0,0x3, 0xa7,0xc2,0xef,0x3, -0xcf,0x98,0xe0,0x3, 0xbf,0xc2,0xe0,0x3, 0xa7,0xc2,0xef,0x2, 0xcf,0x98,0xe0,0x3, -0xbf,0xc2,0xe0,0x4, 0xa7,0xa2,0xe7,0x9, 0xcf,0xde,0xe0,0x4, 0xbf,0xa2,0xe7,0xfd, -0x0, 0xde,0xa7,0x82,0xe7,0x1f,0xcf,0x93,0xbf,0x82,0xa7,0x82,0xe7,0x1e,0xcf,0x9e, -0xbf,0x82,0xa7,0x82,0xe8,0x0, 0xcf,0xb8,0xbf,0x82,0xe7,0xfd,0x0, 0xd0,0x38,0x82, -0xe0,0x4, 0x1d,0xb3,0xe0,0x0, 0x1f,0x75,0x17,0x8a,0xe1,0x80,0x8e,0x1b,0xe0,0x18, -0x9d,0x3e,0xe0,0xd, 0x36,0x3f,0x3e,0xca,0xe0,0x18,0xb6,0xbe,0x8e,0xab,0xe0,0x18, -0x9e,0x4e,0x36,0xbf,0x3e,0xcc,0xe0,0x18,0xb6,0xce,0x8e,0xdb,0xe0,0x18,0x9e,0x5e, -0x36,0xbf,0xc7,0xfb,0x3e,0xcc,0xe3,0xff,0xcf,0xfb,0xe0,0x18,0xb6,0xde,0x1, 0xe6, -0xe0,0x0, 0x1d,0x5e,0x15,0x83,0xe0,0x22,0x14,0xc5,0x14,0x0, 0xe1,0x22,0x0, 0xf0, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xc0,0x54,0xf0,0x40,0x3c,0xe0,0xe0,0x4, 0x1a,0xb4, -0xf0,0x0, 0xc4,0x84,0x3a,0x68,0x15,0x2a,0x14,0x80,0xe8,0x40,0x3c,0x69,0xf0,0x0, -0x8c,0x45,0x89,0xd5,0xef,0xfc,0xd3,0x40,0xe0,0x1a,0x8f,0xc5,0xe0,0x19,0x8f,0x45, -0xe0,0x11,0x8e,0x85,0x3f,0x3f,0x13,0x80,0x3f,0x2d,0x3b,0x6e,0xe0,0x19,0x8f,0x55, -0xe2,0x1, 0xc3,0x7f,0x3f,0xbe,0xe0,0x11,0x8f,0x25,0xf0,0x18,0x3c,0x16,0x3f,0xae, -0xe2,0x1, 0xc7,0xff,0xe8,0xf, 0x3f,0x98,0x17,0x34,0xe0,0x2f,0x3f,0xde,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0xf0,0x0, 0x15,0x1c,0xf0,0x40,0x3d,0xe7,0x3c,0xe7,0xe2,0x1, -0xc4,0xff,0x3c,0xf2,0x4, 0x85,0xc0,0x2c,0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0xe0,0x11, -0x8e,0x85,0xe0,0x1a,0x8f,0x45,0x3e,0xf9,0xe0,0xf, 0x3e,0x96,0x2, 0xae,0x3b,0xff, -0x3, 0x2e,0xe0,0xf, 0x3c,0xae,0xe2,0x1, 0xc7,0xff,0xe1,0x2d,0x3c,0xce,0x26,0x85, -0x3f,0x19,0x3c,0xee,0xe2,0x1, 0xc4,0xff,0xe0,0x12,0x8f,0x25,0xe0,0x11,0x8d,0x95, -0x3e,0xee,0xc7,0x7f,0xe0,0xae,0x3f,0x83,0xe0,0x0, 0xc6,0xda,0xe0,0xf, 0x3a,0x1e, -0x3e,0x95,0x17,0x0, 0x3d,0xfe,0x1, 0x9f,0xe4,0x0, 0xc4,0x9c,0xe8,0x40,0x3d,0xea, -0xe0,0x74,0xc4,0x82,0xe8,0x40,0x3d,0x69,0xe3,0xff,0xc4,0xff,0xe8,0x40,0x3c,0x6b, -0xe0,0x9, 0xd0,0xfe,0xc3,0x81,0x0, 0xc3,0x3b,0xff,0x4, 0x4, 0xe0,0xf, 0x3c,0xa6, -0x0, 0xd3,0xf0,0x40,0x3c,0x77,0x2, 0x5, 0xe0,0xf, 0x3c,0xa6,0x3f,0xae,0x0, 0xcc, -0x3f,0xe9,0x0, 0xcc,0xe0,0x80,0x8e,0x1d,0xe0,0x80,0x8d,0x1f,0xe8,0xc, 0x3e,0x19, -0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xad,0xc, 0x0, 0xd6,0x38,0x82,0xc0,0x74,0xe0,0x4, -0x1f,0xb4,0x17,0x0, 0xe0,0x12,0x8e,0xaf,0xe0,0x11,0x8d,0x9f,0xe0,0x0, 0xc6,0xda, -0x3e,0x9f,0x15,0x1, 0x7f,0x1, 0x77,0x4, 0x3d,0xfe,0x1, 0xa8,0xe0,0x0, 0x1f,0xf5, -0x5f,0x4, 0xe0,0x19,0x9e,0x8f,0xe6,0xd6,0xcf,0x6e,0x5e,0x3, 0xe7,0x20,0xce,0xae, -0xe0,0x19,0xb6,0x8f,0x5e,0x82,0xe0,0x19,0xb6,0x1f,0xe0,0x19,0xb6,0xaf,0xe0,0x19, -0x9d,0xbf,0xe7,0x20,0xcd,0xae,0xe0,0x19,0xb5,0xbf,0xe0,0x19,0xb6,0x4f,0xe0,0x19, -0xb6,0xdf,0xe0,0x1a,0x9d,0xcf,0xe7,0x20,0xcd,0xae,0xe0,0x1a,0xb5,0xcf,0xe0,0x1a, -0xb6,0x5f,0xe0,0x1a,0xb6,0xef,0xc0,0xc, 0x38,0x82,0xe0,0x80,0x8f,0x9d,0xe2,0x0, -0x7c,0x84,0xe0,0xc, 0x37,0xc4,0x36,0x21,0x3e,0x19,0x9c,0x8c,0xe6,0xfc,0xcf,0xcf, -0xe0,0xf, 0x35,0x3f,0x3f,0xc9,0xb7,0x8c,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, -0xc7,0x7f,0x0, 0xc3,0xe0,0x4, 0x1d,0xb4,0xe0,0x19,0x8e,0xfb,0x3f,0x6b,0x3e,0xf8, -0xe0,0x1, 0x2, 0x93,0xe0,0x19,0x8e,0x4b,0xe0,0x19,0x8f,0xdb,0x3f,0x9c,0xe2,0x1, -0xc7,0xff,0x3f,0x9d,0x3c,0x7f,0xe0,0x1, 0x3, 0x8, 0xe0,0x1a,0x8f,0xcb,0xe2,0x0, -0xcf,0x81,0x1, 0xb3,0x8, 0xb1,0x3e,0x6d,0xe0,0x11,0x8d,0xb, 0xc6,0x1, 0x3e,0x28, -0x15,0x84,0xe0,0x1, 0x3c,0x2d,0xe1,0x2b,0x3d,0x5b,0xe3,0xff,0xc6,0x7f,0xe0,0x8, -0x3e,0xa8,0x3d,0x7f,0x2, 0x8d,0x17,0x80,0xe0,0x12,0x8e,0x8e,0x3f,0x1f,0x3f,0x1d, -0xe0,0x8, 0x8f,0x7e,0xa7,0xa9,0xe7,0x0, 0xcf,0xee,0xbf,0xa9,0x8, 0xe1,0xe0,0x43, -0x3e,0x9c,0xe2,0x0, 0xce,0x80,0x5, 0xe, 0xe0,0xd, 0x3f,0x98,0xe2,0x1, 0xc6,0xff, -0x3d,0xfd,0xc6,0x1, 0xe3,0xff,0xc6,0x7f,0x5, 0xe8,0xc7,0x81,0xe2,0x1, 0xc7,0xff, -0x0, 0xe1,0xe0,0xd, 0x38,0xaf,0x0, 0xf3,0x3e,0xf8,0x1, 0xbd,0xe2,0x0, 0xce,0x2, -0x5, 0x8b,0x3c,0x6c,0xc4,0x7f,0xe0,0x28,0x3c,0x4c,0xe0,0x0, 0x1f,0x6c,0xe0,0xae, -0x3c,0xf, 0x8f,0xe, 0x0, 0xab,0xe2,0x0, 0xce,0x1, 0xe0,0x11,0x8f,0xb, 0x1, 0xa2, -0xc7,0x7f,0x3f,0x1f,0xe0,0x2e,0x3f,0x3f,0xe0,0x0, 0x1e,0x6c,0x3f,0x3f,0x17,0x80, -0x16,0x80,0x0, 0x89,0xe0,0xb, 0x3e,0x1d,0x8d,0x8b,0x3d,0xff,0x1, 0xc, 0xc6,0x81, -0xe2,0x1, 0xc6,0xff,0x3e,0xfe,0x4, 0x77,0x1, 0x86,0xa7,0x29,0xe7,0x0, 0xcf,0x6f, -0xbf,0x29,0x38,0x82,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0xa9,0x1, 0xe9, -0x38,0x82,0xe0,0x0, 0x1f,0xdd,0x3f,0x1f,0x8f,0xe, 0xa7,0xa9,0xe7,0x0, 0xcf,0xee, -0xbf,0xa9,0x38,0x82,0xe0,0xe, 0x3e,0x9c,0x3c,0x7e,0x4, 0xa, 0xe0,0x11,0x8f,0x8b, -0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1f,0xf5,0x5, 0x93,0x8f,0x5f,0x0, 0xef,0x3c,0x2d, -0xc4,0x7f,0xe7,0xff,0x0, 0xba,0xe0,0x1a,0x8e,0x8e,0x3e,0xf8,0x2, 0xe2,0xe0,0x19, -0x8f,0xee,0x3f,0x9d,0x3c,0x7f,0x3, 0x5d,0xe0,0x11,0x8f,0x8e,0x0, 0xea,0x8f,0x4f, -0x0, 0xdd,0x8, 0xb2,0xe0,0x0, 0x1f,0xf5,0x16,0x81,0xe0,0x5, 0x9f,0x5f,0x39,0x68, -0xe7,0x9, 0xcf,0x1d,0x14,0x3f,0xe0,0x5, 0xb7,0x5f,0xef,0xff,0xd1,0x9d,0xe0,0x1, -0x14,0xff,0x3c,0x62,0x9, 0x21,0xe0,0x3b,0x0, 0xfe,0x8, 0xb5,0xe0,0x4, 0x1e,0x34, -0x8f,0x89,0x89,0x8, 0xe0,0x0, 0x1e,0xf5,0x3f,0x6f,0x15,0x8a,0xe0,0x4, 0x39,0x2f, -0x11,0x81,0xe0,0x1a,0xaf,0x8c,0xe0,0x1a,0xaf,0xac,0xe0,0x1, 0x3f,0x14,0xe2,0x1, -0xc0,0xff,0x38,0x9a,0xe2,0x0, 0xcf,0xf, 0xad,0x81,0x2, 0xa4,0xe0,0x14,0x98,0xfd, -0xe0,0x14,0xb0,0xfd,0xe0,0x1, 0x31,0xbe,0xe0,0x1e,0x9a,0xfd,0x38,0xc5,0xe0,0x1e, -0xb0,0xfd,0xc5,0x81,0xe2,0x1, 0xc5,0xff,0xe2,0x0, 0xcd,0x8d,0xc7,0x1, 0xe2,0x1, -0xc7,0x7f,0x1, 0xe4,0xe0,0x1a,0x8f,0xc, 0xc7,0x83,0xe2,0x1, 0xc7,0xff,0xe0,0xe, -0x3f,0xae,0xe0,0x19,0xaf,0x6c,0xc1,0x3, 0xe0,0x1a,0xaf,0x9c,0xaf,0x89,0xa9,0x8, -0xa, 0xe1,0xe0,0x14,0x98,0xed,0xe0,0x14,0xb0,0xed,0x38,0xee,0xe0,0x1f,0x9a,0x8d, -0xc0,0xf0,0xe0,0x1, 0x31,0xb1,0x38,0xc5,0xe0,0x1f,0xb0,0x8d,0x0, 0xdb,0x8, 0xb5, -0xc0,0x5c,0xe0,0x4, 0x1a,0x34,0xe0,0x1a,0x8a,0xc4,0x2a,0x82,0x12,0x81,0x15,0x20, -0x14,0x80,0xe2,0x0, 0x7c,0x8, 0xef,0xfc,0xd1,0x67,0xe0,0x0, 0x19,0x75,0x17,0x80, -0xe0,0x13,0xb7,0x92,0x17,0x0, 0xe0,0x13,0xb7,0xa2,0xe2,0x0, 0x79,0x88,0xe0,0x13, -0xb7,0xb2,0x16,0x80,0xe0,0x13,0xb7,0xc2,0x38,0xe3,0xe0,0x14,0xb7,0xe2,0x3c,0x6d, -0xe0,0x14,0xb7,0xf2,0x14,0x81,0xe0,0x1e,0xb7,0xf2,0x3e,0x6e,0xe0,0x1f,0xb7,0x82, -0xe0,0x19,0xaf,0xf4,0x8f,0xc4,0xe0,0x3, 0x1d,0x31,0x3f,0x95,0xc7,0xff,0xe0,0x2f, -0x3f,0xb5,0x6f,0x7, 0x3d,0xef,0xe2,0x1, 0xc5,0xff,0xe0,0x19,0xaf,0x54,0xe6,0xf8, -0xcf,0x8f,0x6d,0x86,0xe0,0x19,0xad,0xc4,0x3f,0x6d,0xe2,0x1, 0xc7,0x7f,0x3d,0xfe, -0x2, 0xbe,0x24,0x2, 0x6d,0x87,0x3d,0x60,0x3c,0xe0,0x3c,0x60,0xc5,0x8, 0xc4,0x86, -0xc4,0x7, 0xdf,0x6c,0x4f,0x86,0xe0,0x19,0xaf,0xb4,0xe0,0x1a,0xaf,0xb4,0xe0,0x13, -0x9f,0x2, 0xe7,0x0, 0xcf,0x6f,0xe0,0x13,0xb7,0x2, 0x17,0x0, 0xe0,0x13,0x9f,0x82, -0xe7,0x6, 0xcf,0xd5,0xe0,0x13,0xb7,0x82,0x3f,0xee,0xe0,0x1, 0xc7,0x9e,0x37,0xa1, -0x3f,0x92,0x9e,0x8f,0x8e,0x3, 0xc7,0x1, 0xe7,0xc, 0xce,0xcc,0xb6,0x8f,0xe2,0x0, -0xcf,0x8, 0x9e,0x8f,0x8e,0x13,0xc1,0x84,0xe7,0x8, 0xce,0xcc,0xb6,0x8f,0x9e,0x8f, -0xe0,0x40,0x8e,0x23,0xe7,0x4, 0xce,0xcc,0xb6,0x8f,0xe0,0x40,0x8e,0x13,0x9e,0x8f, -0xe7,0x0, 0xce,0xcc,0xb6,0x8f,0x1, 0xe1,0xc0,0x24,0xa, 0xe1,0xe2,0x0, 0xcf,0xf, -0x2, 0xa4,0xe2,0x0, 0xca,0x81,0xe0,0xe, 0x34,0xbd,0xe0,0x43,0x3f,0x1e,0x5, 0x86, -0xe0,0x13,0x9c,0x12,0x3c,0x4e,0xe0,0x13,0xb4,0x12,0x3f,0xfd,0x5, 0x10,0xe0,0x13, -0x9c,0x32,0x3f,0x48,0xe0,0x13,0xb7,0x32,0xe0,0x14,0x9f,0x72,0xe0,0x14,0xb7,0x72, -0xc6,0x81,0xe1,0x80,0xae,0x11,0x3c,0x69,0xe7,0xff,0x0, 0xa0,0xe0,0x13,0x9c,0x3a, -0x3f,0x48,0xe0,0x13,0xb7,0x3a,0x0, 0xf1,0x3f,0x6d,0xc7,0x70,0xe2,0x0, 0xca,0x81, -0xe0,0xe, 0x34,0xbe,0xe0,0x43,0x3f,0x1e,0x5, 0x86,0xe0,0x13,0x9c,0x22,0x3c,0x4e, -0xe0,0x13,0xb4,0x22,0x3f,0xfd,0x5, 0xb, 0xe0,0x13,0x9c,0x42,0x3f,0x48,0xe0,0x13, -0xb7,0x42,0xe0,0x14,0x9f,0x62,0xe0,0x14,0xb7,0x62,0x0, 0xdb,0xe0,0x13,0x9c,0x4a, -0x3f,0x48,0xe0,0x13,0xb7,0x4a,0x0, 0xf6,0x8, 0xb2,0xe0,0x0, 0x1f,0xf5,0x34,0x26, -0xe0,0xf, 0x99,0x6f,0xe0,0xf, 0x9f,0x6f,0x34,0xa7,0xe3,0xfe,0xc7,0x3f,0xe0,0xf, -0xb7,0x6f,0x15,0x1, 0xe0,0xf, 0x9f,0x6f,0x3c,0x4e,0x3c,0x49,0xe0,0x0, 0x1c,0xdc, -0xe0,0xf, 0xb4,0x6f,0xe0,0x22,0x14,0x0, 0xe0,0x8, 0xdf,0xe, 0x3c,0x62,0x9, 0x61, -0x8, 0xb1,0xe0,0x0, 0x1c,0x5b,0xe0,0x1, 0x15,0x4a,0x14,0x80,0xef,0xfc,0xd0,0x8c, -0xe0,0x0, 0x1f,0xf5,0x14,0xaa,0xe0,0xf, 0xb4,0xef,0x15,0x86,0xe0,0xf, 0xb5,0xff, -0x17,0x0, 0xe0,0x10,0xb7,0xf, 0xe0,0x2, 0x16,0x80,0xe0,0x10,0xb7,0x1f,0xe0,0xa, -0x14,0x98,0xe0,0x10,0xb7,0x2f,0xe0,0x4, 0x15,0x58,0xe0,0x10,0xb6,0xbf,0x16,0x81, -0xe0,0x10,0xb7,0x4f,0xe0,0x3, 0x15,0x90,0xe0,0x10,0xb7,0x5f,0xe0,0x0, 0x16,0x64, -0xe0,0x10,0xb7,0x6f,0xe0,0x10,0xb7,0x7f,0xe0,0x1c,0xb4,0x9f,0xe0,0xf, 0x14,0x84, -0xe0,0x1c,0xb7,0x2f,0xe0,0x1c,0xb6,0xbf,0xe0,0x1c,0xb6,0xcf,0xe0,0x1c,0xb5,0x5f, -0xe0,0x1c,0xb5,0xef,0xe0,0x1c,0xb6,0x7f,0xe0,0x1b,0xb4,0xaf,0xe0,0x1b,0xb7,0x3f, -0xe0,0x1b,0xb6,0xcf,0xe0,0x1b,0xb6,0xdf,0xe0,0x1b,0xb5,0x6f,0xe0,0x1b,0xb5,0xff, -0xe0,0x1c,0xb6,0xf, 0xe0,0x11,0xb4,0x8f,0xe0,0x0, 0x14,0xfc,0xe0,0x11,0xb4,0x9f, -0xe0,0x11,0xb6,0xaf,0xe0,0x11,0xb6,0xbf,0xe0,0x8, 0x16,0x80,0xe0,0x11,0xb5,0x4f, -0xe0,0x11,0xb5,0xdf,0xe0,0x16,0x15,0x80,0xe0,0x11,0xb6,0x6f,0xe0,0xf, 0x16,0x7f, -0xe0,0x1e,0xb6,0x3f,0xe0,0x1e,0xb7,0x4f,0xe0,0x1e,0xb6,0xdf,0xe0,0x1e,0xb6,0xef, -0xe0,0x1d,0xb6,0x7f,0xe0,0x1e,0xb7,0xf, 0xe0,0x1e,0xb6,0x9f,0xe0,0x1e,0xb6,0xaf, -0xe0,0x1d,0xb6,0x3f,0xeb,0x6c,0x7e,0x3c,0xe0,0x1d,0xb7,0x4f,0xe9,0xff,0xc6,0x7e, -0xe0,0x1d,0xb6,0xdf,0xe0,0x1d,0xb6,0xef,0x16,0x83,0xe0,0x11,0xb7,0x7f,0xe0,0x12, -0xb7,0xf, 0xe0,0x12,0xb7,0x1f,0xe0,0x12,0xb7,0x2f,0xe0,0x12,0xb5,0xbf,0xe0,0x12, -0xb7,0x6f,0xe0,0x12,0xb6,0xff,0xe0,0x13,0xb7,0x5f,0xe0,0x14,0xb7,0x6f,0xe0,0x14, -0xb7,0x7f,0xe7,0xf5,0x17,0x3f,0xe0,0x15,0xb6,0x8f,0xe7,0xc7,0x16,0xee,0xe0,0x15, -0xb6,0x9f,0x16,0x80,0xe0,0x15,0xb7,0x2f,0x3f,0x6d,0xe0,0x1, 0xc7,0x2a,0x37,0x21, -0xe1,0x80,0x9c,0x9c,0xc6,0x81,0x3f,0x1f,0xe2,0x0, 0xce,0x94,0xb4,0x9e,0x1, 0xf5, -0xe0,0x7e,0x17,0x3f,0xe0,0x17,0xb7,0x7f,0xe0,0x18,0xb7,0xf, 0xe0,0x18,0xb7,0x1f, -0xe0,0x4, 0x1d,0xb3,0xe0,0x18,0xb7,0x2f,0x17,0xa, 0xe1,0x80,0x8e,0x1b,0xe0,0x18, -0x9d,0x3f,0xe0,0xd, 0x36,0x3e,0x3e,0xca,0xe0,0x18,0xb6,0xbf,0x8e,0xab,0xe0,0x18, -0x9e,0x4f,0x36,0xbe,0x3e,0xcc,0xe0,0x18,0xb6,0xcf,0x8e,0xdb,0xe0,0x18,0x9e,0x5f, -0x36,0xbe,0xc7,0x7b,0x3e,0xcc,0xe3,0xff,0xcf,0x7b,0xe0,0x18,0xb6,0xdf,0x1, 0xe6, -0xe7,0x7c,0x15,0xfd,0xe0,0x18,0xb5,0xef,0xe0,0x72,0x16,0x9f,0xe0,0x18,0xb6,0xff, -0xe0,0x8, 0x17,0x0, 0xe0,0x19,0xb7,0xf, 0x17,0x0, 0xe0,0x19,0xb7,0x1f,0x14,0xff, -0xe0,0x19,0xb7,0x2f,0xe0,0x3f,0x15,0xff,0xe0,0x19,0xb7,0x3f,0xe0,0x19,0xb7,0x4f, -0xe0,0x19,0xb7,0x5f,0xe0,0x19,0xb7,0x6f,0xe0,0x19,0xb7,0x7f,0xe0,0x1a,0xb7,0xf, -0xe0,0x1a,0xb7,0x1f,0xe0,0x1a,0xb7,0x2f,0xe0,0x1a,0xb7,0x3f,0xe0,0x1a,0xb4,0xff, -0xe0,0x1b,0xb7,0xf, 0xe0,0x1b,0xb5,0x9f,0xdc,0xd2,0xde,0x22,0xe0,0x0, 0x1d,0x5c, -0xe0,0x0, 0x15,0xfb,0xe0,0x22,0x14,0x80,0x14,0x0, 0x8, 0xa1,0xe1,0x1b,0x0, 0xa8, -0x8, 0xb7,0xc0,0x60,0xe0,0x5, 0x1f,0xb1,0x17,0x0, 0x7f,0x81,0xe0,0x5, 0x1f,0xb2, -0x7f,0x82,0xe0,0x5, 0x1f,0xb3,0x7f,0x83,0xe0,0x4, 0x1f,0xb4,0x7f,0x4, 0xe0,0x1a, -0x8f,0xcf,0xe2,0x0, 0xcf,0x8e,0x67,0x83,0x5, 0xb5,0xe7,0x1d,0xcf,0x9e,0x7f,0x83, -0x3c,0xe0,0xe0,0x4, 0x1f,0xb1,0xc4,0x84,0x8f,0xf, 0xa7,0xa9,0x3d,0x60,0xe7,0x26, -0xcf,0x8e,0xbf,0xa9,0xc5,0x14,0x67,0x81,0x11,0x80,0x7f,0x85,0xe0,0x72,0x12,0x82, -0xa7,0x99,0x3a,0x6a,0xbf,0x9a,0x39,0x69,0xa7,0xa9,0x13,0x88,0xbf,0xaa,0x3b,0x63, -0xa7,0xb9,0xbf,0xba,0x3c,0x63,0x3d,0x64,0x3c,0xe2,0xdc,0xdd,0x3c,0xe5,0x3d,0xe7, -0x3d,0x62,0x3c,0x66,0xe0,0x8, 0xdd,0x6c,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, -0xc1,0xff,0xe2,0x0, 0xc9,0xa0,0xc2,0x88,0xe3,0xff,0xc2,0xff,0x1, 0xec,0xc0,0x20, -0xb, 0xe1,0x17,0x1, 0x0, 0xcb,0xe0,0x4, 0x1e,0x34,0xe4,0x0, 0xc4,0xc, 0xe0,0xf, -0x3e,0x18,0x3f,0x6f,0xe0,0x2, 0xc7,0x30,0x8d,0xe, 0x3f,0x6f,0xe0,0x2, 0xc7,0x32, -0x8d,0x8e,0xe0,0x1a,0x8f,0x4c,0xe2,0x0, 0xcf,0x1, 0xe0,0xc, 0x9f,0x1c,0xe6,0xf1, -0xcf,0x7e,0x5, 0xb0,0x27,0x2b,0xe0,0xc, 0x9e,0x9c,0x3f,0x6f,0xe0,0x2, 0xc7,0x34, -0xe6,0xf2,0xce,0xfd,0x8f,0xe, 0x2e,0x87,0xe0,0x2, 0xc7,0xaf,0x8f,0x8f,0x3f,0x3f, -0xe2,0x1, 0xc7,0x7f,0x3f,0x3a,0xe0,0x1a,0x8e,0xfc,0xe0,0x2f,0x3f,0x3b,0xe0,0xe, -0x3e,0x99,0x3f,0xfe,0x1, 0x5, 0xe0,0x9, 0x3f,0xad,0xe3,0xff,0xc4,0xff,0xe0,0xc, -0x9f,0x1c,0xe6,0xf1,0xcf,0x7e,0x2f,0x8, 0x3f,0xbb,0x3c,0x1c,0xe0,0x2f,0x3f,0xba, -0xe0,0x2, 0xc4,0x2f,0xaf,0x88,0x3c,0x69,0x38,0x82,0xe0,0x2, 0xc7,0xaf,0x8f,0xf, -0x0, 0xe2,0x27,0x20,0xe0,0xc, 0x9e,0x9c,0x3f,0x6f,0xe0,0x2, 0xc7,0x34,0xe6,0xf2, -0xce,0xfd,0x8f,0xe, 0x2e,0x89,0xe0,0x2, 0xc7,0xae,0x8f,0x8f,0xe0,0xd, 0x3f,0x3f, -0x3f,0x6d,0xe2,0x1, 0xc7,0x7f,0x3f,0x3a,0xe0,0x2f,0x3f,0x3b,0xe0,0x1a,0x8f,0x7c, -0xe0,0xd, 0x3f,0x19,0x3f,0xfd,0x1, 0x60,0xe0,0x9, 0x3f,0xae,0xe3,0xff,0xc4,0xff, -0x0, 0xdb,0xe0,0x2, 0xc7,0xae,0x8f,0xf, 0x0, 0xef,0xe0,0x4, 0x1e,0xb4,0xe4,0x0, -0xc4,0xc, 0x3c,0x1d,0x3f,0xe8,0xe0,0x2, 0xc7,0xae,0x8f,0xf, 0x3f,0xe8,0xe0,0x2, -0xc7,0xb1,0x8f,0x8f,0xe0,0x2, 0xc4,0x33,0x3f,0x3f,0x8f,0x88,0xe0,0x2f,0x3f,0x3f, -0xe0,0x1b,0x8f,0xd, 0xe0,0xd, 0x3f,0x19,0x3f,0xfd,0x1, 0x5, 0xe0,0x9, 0x3f,0xae, -0xe3,0xff,0xc4,0xff,0x3c,0x69,0x38,0x82,0x8, 0xb3,0xe0,0x2, 0x1c,0x84,0xe0,0x4, -0x1c,0x21,0xe0,0x0, 0x15,0x46,0xef,0xfb,0xde,0x77,0xe0,0x2, 0x1c,0x83,0xe0,0x4, -0x1c,0x20,0xe0,0x0, 0x15,0x48,0xef,0xfb,0xde,0x6f,0xe0,0x4, 0x19,0x34,0xe0,0x28, -0x17,0xec,0xe0,0xc, 0xb7,0x92,0x17,0x80,0xe0,0x19,0xaf,0xa2,0x17,0x91,0xe0,0x1a, -0xaf,0xc2,0xe0,0xc, 0x9f,0x92,0xe6,0xf1,0xcf,0xff,0x2f,0x87,0xe0,0xc, 0x9f,0x12, -0xe7,0xd, 0xcf,0x1f,0xe0,0xc, 0xb7,0x12,0xe0,0xc, 0x9f,0x92,0xe6,0xfb,0xcf,0xff, -0x27,0x88,0xe0,0xc, 0x9f,0x92,0x17,0x0, 0xe7,0xb, 0xcf,0x9e,0xe0,0xc, 0xb7,0x92, -0x17,0x1, 0xe0,0xc, 0x9f,0x92,0xe0,0xc, 0xb7,0xa2,0xe0,0xc, 0x9f,0xa2,0xe7,0x4, -0xcf,0x9e,0xe0,0xc, 0xb7,0xa2,0xe0,0xc, 0x9f,0xa2,0xe6,0xfb,0xcf,0xff,0x27,0x88, -0xe0,0xc, 0x9f,0xa2,0x17,0x0, 0xe7,0xb, 0xcf,0x9e,0xe0,0xc, 0xb7,0xa2,0xe0,0xc, -0x9f,0x92,0xe6,0xf1,0xcf,0xff,0x27,0x8e,0xe0,0xc, 0x9f,0x92,0x17,0x0, 0xe7,0x4, -0xcf,0x9e,0xe0,0xc, 0xb7,0x92,0xe0,0xc, 0x9f,0xa2,0xe7,0x4, 0xcf,0x9e,0xe0,0xc, -0xb7,0xa2,0xe0,0xc, 0x9f,0x92,0xe6,0xf1,0xcf,0xff,0x27,0xb8,0xe0,0xc, 0x9f,0x12, -0xe0,0x4, 0x1f,0x9f,0xe6,0xf2,0xcf,0x7e,0xe0,0x0, 0x27,0x75,0x17,0x1, 0xaf,0xf, -0xe0,0x4, 0x1f,0x9e,0xaf,0xf, 0xe0,0x4, 0x1f,0x9d,0xaf,0xf, 0xe0,0x4, 0x1f,0x9c, -0xaf,0xf, 0xe0,0x4, 0x1f,0x9b,0xaf,0xf, 0xe0,0x4, 0x1f,0x9a,0xaf,0xf, 0xe0,0x4, -0x1f,0x99,0xaf,0xf, 0xe0,0xc, 0x9f,0x92,0xe6,0xf5,0xcf,0xff,0x2f,0x97,0xe0,0x4, -0x1f,0x18,0x17,0x82,0xaf,0x8e,0xe0,0x4, 0x1f,0x17,0xaf,0x8e,0xe0,0x4, 0x1f,0x16, -0xaf,0x8e,0xe0,0x4, 0x1f,0x15,0xaf,0x8e,0xe0,0x4, 0x1f,0x14,0xaf,0x8e,0xe0,0x4, -0x1f,0x13,0xaf,0x8e,0xe0,0x4, 0x1f,0x12,0xaf,0x8e,0x17,0x81,0x14,0xa0,0x14,0x0, -0xe0,0x1a,0xaf,0xf2,0x11,0x80,0xe0,0x1b,0xaf,0x82,0xde,0xd6,0xe0,0x4, 0x1f,0x91, -0xe6,0xc8,0xcf,0x8, 0xac,0x1f,0x14,0xa0,0x3c,0x63,0xaf,0xf, 0xdf,0x37,0xe0,0x4, -0x1f,0x90,0xe6,0xc8,0xcf,0x8, 0xaf,0xf, 0x17,0x2, 0xac,0x1f,0xe0,0x4, 0x1f,0x8f, -0xe0,0x1a,0xa9,0xd2,0xa9,0x8f,0xa9,0x9f,0xe0,0x4, 0x1f,0x8e,0xa9,0x8f,0xaf,0x1f, -0xe0,0x4, 0x1f,0x8d,0xa9,0x8f,0xaf,0x1f,0xe0,0x1a,0x8f,0xc2,0xe2,0x0, 0xcf,0x81, -0x1, 0x8b,0x8f,0xc2,0xe2,0x0, 0xcf,0x9f,0x5, 0x87,0xe0,0x19,0x8f,0xa2,0x2f,0x84, -0x17,0x87,0xe0,0x1a,0xaf,0xc2,0xe0,0x1a,0x8f,0xc2,0xe2,0x0, 0xcf,0x87,0x1, 0x22, -0x2, 0x99,0xe2,0x0, 0xcf,0x81,0x1, 0x1d,0xe2,0x0, 0xcf,0x84,0x1, 0x1e,0x17,0x88, -0x0, 0x99,0xe0,0x4, 0x1e,0xc, 0x17,0x1, 0x16,0x82,0xaf,0x4f,0xe1,0x81,0xae,0xcf, -0x3f,0xfc,0x1, 0xfc,0xe0,0x4, 0x1f,0x99,0xae,0x8f,0xe0,0x4, 0x1f,0xb2,0xe7,0xff, -0x0, 0x92,0x3f,0x6f,0xc7,0x72,0xe2,0x0, 0xcf,0x6, 0x2, 0xea,0xc7,0xfa,0x0, 0x82, -0x17,0x85,0xe0,0x1a,0xaf,0xe2,0x9, 0xe1,0x17,0x86,0x0, 0xfc,0x3f,0xe8,0x3f,0x68, -0xc7,0x81,0xe0,0x4, 0x1e,0xb4,0xe4,0x0, 0xc7,0xc, 0xe4,0x0, 0xc7,0x8c,0x3f,0x1d, -0x3f,0x9d,0xe0,0x13,0x8e,0x2f,0xe0,0x14,0x8f,0x3e,0xe0,0x13,0x8f,0xcf,0x3f,0x3c, -0xe0,0x1b,0x8c,0xd, 0xe0,0x2f,0x3f,0x3f,0xe0,0xe, 0x3c,0x19,0x3f,0xfe,0x1, 0x5, -0xe0,0x9, 0x3f,0xa8,0xe3,0xff,0xc4,0xff,0x3c,0x69,0x38,0x82,0x8f,0xd9,0xaf,0x98, -0x8f,0xf9,0xaf,0xa8,0xe0,0x1, 0x8f,0x89,0xaf,0xb8,0xe0,0x1, 0x8f,0x99,0xaf,0xc8, -0xe0,0x1, 0x8f,0xa9,0xaf,0xd8,0xe0,0x1, 0x8f,0xb9,0xe0,0x1, 0xad,0x8, 0xaf,0xe8, -0xe0,0xf, 0x35,0x48,0xaf,0xf8,0x38,0x82,0x8f,0x99,0xaf,0xd8,0x8f,0xa9,0xaf,0xf8, -0x8f,0xb9,0xe0,0x1, 0xaf,0x88,0x8f,0xc9,0xe0,0x1, 0xaf,0x98,0x8f,0xd9,0xe0,0x1, -0xaf,0xa8,0x8f,0xe9,0xe0,0x1, 0xaf,0xb8,0x8f,0xf9,0xe0,0x1, 0x8c,0x9, 0x37,0xa8, -0x3c,0x4f,0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xe1,0xfe,0xc0,0x5c,0xe0,0x4, -0x19,0x34,0xe0,0x4, 0x19,0x9f,0x17,0x80,0x3a,0xe0,0xc2,0x94,0x12,0x0, 0x3b,0x63, -0xe0,0x19,0xaf,0x82,0x3d,0x63,0x8c,0x83,0xe0,0x40,0x8c,0x73,0xe0,0x2, 0xd4,0xa0, -0xe0,0x40,0x8f,0xf3,0xe0,0x19,0x8f,0x2, 0xe1,0x80,0xb4,0x15,0x3f,0x7f,0x3, 0x85, -0xe0,0x19,0xaf,0x82,0xe0,0x19,0xaa,0x12,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, -0xc2,0x7f,0xe2,0x0, 0xca,0x6, 0xc1,0x8c,0x1, 0xe6,0xe0,0x3, 0x1f,0x9a,0x8b,0x6, -0xe0,0x4, 0x1d,0xb, 0xe0,0x14,0x8c,0xd2,0xe0,0x13,0x8c,0x62,0xe0,0x6, 0xab,0x5f, -0xe0,0x2, 0xd4,0x7e,0xe0,0x4, 0x1d,0xa, 0xe0,0x16,0x8c,0x92,0x74,0x6, 0x13,0x0, -0xe0,0x15,0x8c,0x22,0xe0,0x4, 0x1a,0x34,0xe0,0x2, 0xd4,0x72,0x74,0x7, 0x3a,0xe4, -0xe0,0x4, 0x1d,0x9, 0xe0,0x17,0x8c,0xd2,0xe0,0x16,0x8c,0x62,0xf0,0x5, 0x1c,0xb4, -0xe0,0x2, 0xd4,0x66,0xf0,0x5, 0x1e,0x35,0xf0,0x5, 0x1e,0xb6,0xf0,0x5, 0x1c,0x24, -0xe0,0x69,0x13,0xd0,0xf1,0x0, 0x15,0x1, 0x39,0xe6,0x74,0x8, 0x17,0x0, 0xf0,0x0, -0x7c,0x92,0xf0,0x0, 0x17,0x1, 0x67,0x92,0xe2,0x0, 0xc9,0x89,0xe7,0x1e,0xcf,0x9e, -0x7f,0x92,0x3f,0xe3,0xf0,0x0, 0x7d,0x10,0xc7,0xb2,0xf0,0x0, 0x7e,0x11,0xe2,0x1, -0xc7,0xff,0xf0,0x0, 0x7f,0x13,0xf0,0x0, 0x7e,0x94,0xf0,0x0, 0x65,0x91,0x66,0x90, -0xfe,0xe3,0xcd,0xbb,0xe7,0x38,0xce,0x8f,0x7e,0x90,0x3f,0xe3,0x66,0x90,0xe0,0x0, -0xc7,0xf9,0xe2,0x1, 0xc7,0xff,0xe7,0x30,0xce,0x8f,0xf0,0x0, 0x7d,0x82,0x7e,0x90, -0xe0,0x3, 0x2, 0xaf,0xe2,0x0, 0xc9,0x82,0xe0,0x2, 0x2, 0xfe,0x3f,0xe5,0xe0,0x2, -0xc7,0xb0,0x8f,0xf, 0xe0,0xc, 0x9f,0x92,0x66,0x90,0xe6,0xfb,0xcf,0xff,0xe7,0xe, -0xce,0x9f,0x3f,0xe5,0x7e,0x90,0xe0,0x2, 0xc7,0xaf,0x8e,0x8f,0x67,0x93,0x3c,0xee, -0xe7,0x40,0xcf,0x8d,0x7f,0x93,0xe2,0x0, 0x7e,0x94,0xe8,0xf, 0x33,0x3e,0x3f,0x9d, -0x9c,0xf, 0xe8,0x40,0x3d,0x68,0xe4,0x0, 0xc4,0x64,0x7f,0x1, 0xe0,0x8, 0xd7,0xa0, -0x67,0x1, 0xf0,0x40,0x3d,0xe8,0x3c,0xee,0xe0,0x8, 0xd7,0xa6,0x67,0x91,0xe7,0x40, -0xcf,0x88,0x7f,0x91,0x67,0x94,0xef,0x20,0xcf,0xbb,0x7f,0x94,0x67,0x92,0xef,0x1f, -0xcf,0x9e,0x7f,0x92,0x3c,0x67,0x15,0xa, 0xe2,0x0, 0x7c,0xc0,0xe0,0x8, 0xdb,0x24, -0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe2,0x0, 0xc9,0x90,0xc3,0x8a, -0xc3,0x1, 0xe3,0xff,0xc3,0xff,0xc2,0x8c,0xe7,0xff,0x1, 0x8a,0xe0,0x5, 0x1f,0xb7, -0xe0,0x1a,0x8f,0x62,0x7f,0x88,0x16,0x81,0x67,0x88,0xf0,0x5, 0x1c,0x38,0xe7,0x1c, -0xcf,0xce,0x7f,0x88,0xf0,0x0, 0x14,0x80,0xe0,0x5, 0x1f,0x39,0x7e,0x89,0xe0,0x64, -0x13,0x98,0x7f,0xa, 0xe8,0x40,0x3a,0xe9,0x67,0x8a,0xe0,0x1a,0x8f,0x72,0xe0,0x4, -0x19,0xb4,0xe7,0x30,0xcf,0x8e,0x7f,0x8a,0xf0,0x0, 0x16,0x5, 0x67,0x82,0xe0,0x5, -0x1b,0x3a,0xf0,0x0, 0x15,0x20,0xf0,0x0, 0x17,0x6, 0xf0,0x0, 0x7c,0xb, 0x6f,0x8b, -0xe2,0x0, 0xca,0x89,0xe0,0x3, 0x2, 0xff,0xe2,0x0, 0xca,0x82,0xe0,0x3, 0x2, 0xab, -0x3f,0xe3,0xe0,0x2, 0xc7,0xb0,0xf0,0x0, 0x8e,0x8f,0xe8,0x40,0x3c,0x6d,0xe0,0x8, -0xd7,0x64,0x67,0x9, 0x3c,0x56,0xe7,0x40,0xcf,0x68,0x7f,0x9, 0xe8,0x40,0x3c,0xea, -0x67,0x8, 0xe0,0x1a,0x8e,0xe2,0x3c,0x65,0xe7,0x1c,0xcf,0x4d,0x7f,0x8, 0xe0,0xc, -0x9f,0x12,0x66,0x88,0xe6,0xf4,0xcf,0x7e,0xe7,0x1a,0xce,0x9e,0x3f,0x63,0x7e,0x88, -0xe0,0x2, 0xc7,0x2a,0x8e,0x8e,0x67,0xb, 0xe7,0x0, 0xcf,0x5d,0x7f,0xb, 0xe0,0xc, -0x9f,0x12,0x66,0x89,0xe6,0xf1,0xcf,0x7e,0xe7,0x17,0xce,0x9e,0x7e,0x89,0xe0,0xc, -0x9f,0x12,0x66,0x89,0xe6,0xf2,0xcf,0x7e,0xe7,0x16,0xce,0x9e,0x7e,0x89,0xdc,0xf4, -0x67,0xa, 0xe7,0x40,0xcf,0x8, 0x7f,0xa, 0x3f,0x63,0xe0,0x2, 0xc7,0x32,0x8e,0x8e, -0x67,0xa, 0xe7,0x18,0xcf,0x7d,0x7f,0xa, 0xe0,0xc, 0x9f,0x12,0x66,0x88,0xe6,0xf6, -0xcf,0x7e,0xe7,0x8, 0xce,0x9e,0x7e,0x88,0x3c,0x67,0x4e,0x8b,0x67,0x8, 0xf0,0xf, -0x3e,0xbd,0x15,0x8, 0xe7,0x10,0xcf,0x6f,0xe2,0x0, 0x7c,0xa0,0xf0,0x40,0x3d,0xed, -0x7f,0x8, 0xe0,0x8, 0xda,0x89,0x3f,0xe5,0xc7,0x81,0x3a,0xef,0xe2,0x1, 0xc2,0xff, -0xe2,0x0, 0xca,0x90,0xc3,0x88,0xf0,0x0, 0xc4,0x81,0xe3,0xff,0xc3,0xff,0xc1,0x8c, -0xe7,0xff,0x1, 0x90,0xe0,0x5, 0x1f,0x3b,0xe0,0x5, 0x1e,0xbc,0x7f,0xc, 0xe0,0x1, -0x13,0xf6,0x67,0x8c,0xe0,0x1a,0x8f,0x62,0xf0,0x5, 0x1e,0xa4,0xe7,0x1c,0xcf,0xce, -0x7f,0x8c,0x17,0x81,0x7f,0x8d,0x12,0x80,0x7e,0x8e,0xf0,0x0, 0x15,0x5, 0x67,0x8e, -0xe0,0x1a,0x8f,0x72,0xf0,0x0, 0x14,0xa0,0xe7,0x30,0xcf,0x8e,0x7f,0x8e,0xf0,0x0, -0x17,0x3, 0xf0,0x0, 0x7c,0xf, 0xf0,0x68,0x14,0x50,0xe2,0x0, 0xca,0x89,0xe0,0x3, -0x2, 0xf6,0xe8,0x2d,0x3a,0xce,0x3f,0xed,0xe4,0x0, 0xc7,0x8c,0xe0,0x1c,0x39,0x1f, -0xe8,0x40,0x3f,0x6c,0xe0,0x2, 0xc7,0x30,0x89,0x8e,0x7e,0x81,0x3c,0x63,0xe0,0x8, -0xd6,0xcc,0x67,0xd, 0x3c,0x56,0xe7,0x40,0xcf,0x68,0x7f,0xd, 0xe8,0x40,0x3c,0xe9, -0x67,0xc, 0xe0,0x1a,0x8e,0x62,0x66,0x81,0xe7,0x1c,0xcf,0x4c,0x7f,0xc, 0x3c,0x6d, -0xe0,0xc, 0x9f,0x12,0x66,0xc, 0xe6,0xfb,0xcf,0x7e,0xe7,0x1b,0xce,0x1e,0x7e,0xc, -0xe2,0x1, 0xc4,0x7f,0xe0,0xc, 0x9f,0x12,0x66,0xc, 0xe6,0xf4,0xcf,0x7e,0xe7,0x1a, -0xce,0x1e,0xe8,0x40,0x3f,0x6c,0x7e,0xc, 0xe0,0x2, 0xc7,0x2a,0x8e,0xe, 0x67,0xf, -0xe7,0x0, 0xcf,0x5c,0x7f,0xf, 0xdc,0x60,0x67,0xe, 0xe8,0x40,0x3f,0xec,0xe7,0x40, -0xcf,0x8, 0x7f,0xe, 0xe0,0x2, 0xc7,0xb2,0x8f,0xf, 0x67,0x8e,0xe7,0x18,0xcf,0xfe, -0x7f,0x8e,0xe0,0xc, 0x9f,0x92,0x67,0xc, 0xe6,0xf6,0xcf,0xff,0xe7,0x8, 0xcf,0x1f, -0x7f,0xc, 0xe8,0x3, 0x39,0xbb,0x67,0x8c,0xe8,0x40,0x3c,0x68,0xe7,0x10,0xcf,0xe3, -0x15,0x8, 0xe2,0x0, 0x7c,0xb0,0x7f,0x8c,0xe0,0x8, 0xd9,0xf6,0x3f,0xe7,0xc2,0x81, -0xc7,0x81,0xe2,0x0, 0xca,0x90,0xf0,0x0, 0xc4,0x8, 0x3b,0xef,0xf3,0xff,0xc4,0x7f, -0xc2,0xc, 0xe2,0x1, 0xc3,0xff,0xe7,0xff,0x1, 0x92,0xe0,0x1, 0xc0,0x24,0xf8,0x0, -0xf, 0x28,0xb, 0xe1,0x17,0x86,0xe0,0x2f,0x3b,0x4f,0xe8,0x40,0x3d,0x68,0x3f,0x6f, -0xe4,0x0, 0xc7,0xc, 0x37,0xa1,0x3f,0x12,0x3e,0xee,0xe0,0x2, 0xc6,0xb0,0x8e,0xd, -0xe0,0xc, 0x9e,0x92,0x65,0x90,0xe6,0xfb,0xce,0xfd,0xe7,0xe, 0xcd,0x9d,0x7d,0x90, -0xe0,0x2, 0xc7,0x2f,0x8e,0x8e,0x67,0x13,0x3c,0xec,0xe7,0x40,0xcf,0xd, 0x7f,0x13, -0xe2,0x0, 0x7f,0x14,0x3f,0x9e,0x9c,0xf, 0x7e,0x1, 0xe4,0x0, 0xc4,0x64,0xe0,0x8, -0xd6,0x1f,0x66,0x1, 0xf0,0x40,0x3d,0xe8,0x3c,0xec,0xe7,0xfc,0x0, 0xff,0xf0,0x40, -0x3f,0x66,0xf4,0x0, 0xc7,0x9, 0x3f,0xe0,0xc7,0xfa,0xf0,0x1e,0x3f,0x1f,0x3f,0xe3, -0xc7,0xf6,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x82,0xe0,0xf, 0x33,0x21,0x2, 0xba, -0xe0,0xc, 0x9e,0xa2,0x65,0x90,0xe6,0xfb,0xce,0xfd,0xe7,0xe, 0xcd,0x9d,0xe0,0x17, -0x8e,0x15,0x7d,0x90,0xe8,0x40,0x3d,0x68,0xe0,0x16,0x8d,0xe5,0x66,0x93,0x3c,0xec, -0xe7,0x40,0xce,0x8b,0x7e,0x93,0x66,0x92,0xe7,0x1f,0xce,0x9e,0x7e,0x92,0xe2,0x0, -0x7e,0x94,0x3f,0x9d,0xe0,0x41,0x9c,0x2f,0x7e,0x1, 0xe4,0x0, 0xc4,0x64,0xe0,0x8, -0xd5,0xe7,0x66,0x1, 0xf0,0x40,0x3d,0xe8,0x3c,0xec,0xe0,0x8, 0xd5,0xed,0x67,0x91, -0xe8,0x40,0x3d,0x6b,0xe7,0x40,0xcf,0x88,0x7f,0x91,0xe0,0x1, 0x14,0xb1,0x67,0x94, -0xef,0x20,0xcf,0xbb,0x7f,0x94,0x3c,0x95,0xe8,0x40,0x3c,0x6e,0xdd,0x58,0xe7,0xfc, -0x0, 0xc3,0xe0,0x9, 0x9e,0xe2,0x65,0x90,0xe6,0xfb,0xce,0xfd,0xe7,0xe, 0xcd,0x9d, -0xf0,0x1, 0x8d,0xa5,0x7d,0x90,0xe8,0x40,0x3d,0x68,0x8d,0xf5,0x66,0x93,0xe8,0x40, -0x3c,0xeb,0xe7,0x40,0xce,0x8b,0x7e,0x93,0x66,0x92,0xe7,0x1f,0xce,0x9e,0xe2,0x0, -0x7f,0xc, 0x3f,0x9e,0x7e,0x92,0xe0,0x41,0x9c,0x5f,0xe4,0x0, 0xc4,0x64,0xe0,0x8, -0xd5,0xaf,0xe8,0x40,0x3c,0xeb,0x7c,0x1, 0xe0,0x8, 0xd5,0xb6,0x67,0x91,0x65,0x1, -0xe7,0x40,0xcf,0x88,0x7f,0x91,0x14,0x82,0x67,0x94,0xe7,0x20,0xcf,0xba,0x7f,0x94, -0x0, 0xcb,0xf8,0x2d,0x3c,0xce,0xf0,0x40,0x3d,0xed,0xf4,0x0, 0xc5,0x8c,0xf0,0x1b, -0x3d,0x92,0xe8,0x40,0x3f,0xeb,0xe0,0x2, 0xc7,0xb0,0xf0,0x0, 0x8e,0x8f,0x7e,0x81, -0xe8,0x40,0x3c,0x6d,0xe0,0x8, 0xd5,0xb1,0x67,0x9, 0x3c,0x56,0xe7,0x40,0xcf,0x68, -0x7f,0x9, 0xe8,0x40,0x3c,0xea,0x67,0x8, 0xe0,0x1a,0x8e,0x62,0x66,0x81,0xe7,0x1c, -0xcf,0x4c,0x7f,0x8, 0x3c,0x6d,0xe0,0xc, 0x9f,0x12,0x66,0x8, 0xe6,0xf4,0xcf,0x7e, -0xe7,0x1a,0xce,0x1e,0xe8,0x40,0x3f,0x6b,0x7e,0x8, 0xe0,0x2, 0xc7,0x2a,0x8e,0xe, -0x67,0xb, 0xe2,0x1, 0xc4,0x7f,0xe7,0x0, 0xcf,0x5c,0x7f,0xb, 0xf0,0x2, 0xc5,0xb2, -0xe0,0xc, 0x9f,0x12,0x66,0x9, 0xe6,0xf1,0xcf,0x7e,0xe7,0x17,0xce,0x1e,0x7e,0x9, -0xe0,0xc, 0x9f,0x12,0x66,0x9, 0xe6,0xf2,0xcf,0x7e,0xe7,0x16,0xce,0x1e,0x7e,0x9, -0xdb,0x3b,0x67,0xa, 0xe7,0x40,0xcf,0x8, 0x7f,0xa, 0xe8,0x0, 0x8e,0x8b,0xe7,0xfc, -0x0, 0xc9,0x3f,0xe5,0xc7,0xf6,0xf0,0x40,0x3d,0xef,0xf2,0x1, 0xc5,0xff,0xf2,0x0, -0xcd,0x82,0xe0,0x0, 0x2, 0xc2,0xf0,0x17,0x8e,0x93,0xe8,0x40,0x3c,0x6d,0xe0,0x8, -0xd5,0x64,0x67,0x9, 0x3c,0x56,0xe7,0x40,0xcf,0x68,0x7f,0x9, 0xe8,0x40,0x3c,0xea, -0x67,0x8, 0xe8,0x40,0x3c,0x6b,0xef,0x1c,0xcf,0x4c,0x7f,0x8, 0xe0,0xc, 0x9f,0x22, -0x66,0x88,0xe6,0xf4,0xcf,0x7e,0xe7,0x1a,0xce,0x9e,0x7e,0x88,0x67,0xb, 0xe0,0x16, -0x8e,0xb3,0xe7,0x0, 0xcf,0x5d,0x7f,0xb, 0xe0,0xc, 0x9f,0x22,0x66,0x89,0xe6,0xf1, -0xcf,0x7e,0xe7,0x17,0xce,0x9e,0x7e,0x89,0xe0,0xc, 0x9f,0x22,0x66,0x89,0xe6,0xf2, -0xcf,0x7e,0xe7,0x16,0xce,0x9e,0x7e,0x89,0xdb,0x61,0x67,0xa, 0xe7,0x40,0xcf,0x8, -0x7f,0xa, 0x67,0xa, 0xe0,0x17,0x8e,0xb3,0xe7,0x18,0xcf,0x7d,0x7f,0xa, 0xe0,0xc, -0x9f,0x22,0xe7,0xfc,0x0, 0x85,0xf0,0x1, 0x8e,0xa3,0xe8,0x40,0x3c,0x6d,0xe0,0x8, -0xd5,0x24,0x67,0x9, 0x3c,0x56,0xe7,0x40,0xcf,0x68,0x7f,0x9, 0xe8,0x40,0x3c,0xea, -0x67,0x8, 0xef,0x1c,0xcf,0x4c,0x7f,0x8, 0xe0,0x9, 0x9f,0x62,0x66,0x88,0xe6,0xf4, -0xcf,0x7e,0xe7,0x1a,0xce,0x9e,0x7e,0x88,0x67,0xb, 0x8e,0xc3,0xe7,0x0, 0xcf,0x5d, -0x7f,0xb, 0xe0,0x9, 0x9f,0x62,0x66,0x89,0xe6,0xf1,0xcf,0x7e,0xe7,0x17,0xce,0x9e, -0x7e,0x89,0xe0,0x9, 0x9f,0x62,0x66,0x89,0xe6,0xf2,0xcf,0x7e,0xe7,0x16,0xce,0x9e, -0x3f,0x65,0xc7,0x73,0x3c,0x6e,0xe2,0x1, 0xc4,0x7f,0x7e,0x89,0xdc,0x38,0x67,0xa, -0xe7,0x40,0xcf,0x8, 0x7f,0xa, 0x67,0xa, 0xe0,0x1, 0x8e,0xc3,0xe7,0x18,0xcf,0x7d, -0x7f,0xa, 0xe0,0x9, 0x9f,0x62,0xe7,0xfb,0x0, 0xc3,0xe2,0x0, 0xcb,0x82,0xe0,0x0, -0x2, 0xce,0x3c,0xe5,0xe4,0x0, 0xc4,0x89,0x3f,0x60,0xc7,0x7a,0x3c,0x64,0x3c,0x9e, -0xc4,0x26,0xdc,0x53,0xe2,0x0, 0x7e,0x8c,0xe0,0xf, 0x32,0xa1,0x3f,0x9d,0xe0,0x41, -0x9f,0xaf,0x3d,0x68,0xe0,0x5, 0x89,0xe4,0x3c,0x6f,0xe4,0x0, 0xc4,0x64,0xe8,0x40, -0x3d,0xed,0x3c,0xe3,0xe0,0x8, 0xd4,0xb5,0x67,0x8d,0x3c,0x56,0xe7,0x40,0xcf,0xe8, -0x7f,0x8d,0xe8,0x40,0x3c,0xe9,0x67,0x8c,0x3c,0x67,0xef,0x1c,0xcf,0xca,0x7f,0x8c, -0xe0,0x9, 0x9f,0xe2,0x67,0xc, 0xe6,0xfb,0xcf,0xff,0xe7,0x1b,0xcf,0x1f,0x7f,0xc, -0xe0,0x9, 0x9f,0xe2,0x67,0xc, 0xe6,0xf4,0xcf,0xff,0xe7,0x1a,0xcf,0x1f,0x7f,0xc, -0x67,0x8f,0xe0,0x5, 0x8f,0x4, 0xe7,0x0, 0xcf,0xde,0x7f,0x8f,0xdb,0xe8,0x67,0x8e, -0xe7,0x40,0xcf,0x88,0x7f,0x8e,0x67,0x8e,0xe0,0x6, 0x8f,0x4, 0xe7,0x18,0xcf,0xfe, -0x7f,0x8e,0xe0,0x9, 0x9f,0xe2,0xe7,0xfc,0x0, 0x88,0xe0,0x12,0x89,0xd4,0x3c,0x63, -0xe0,0x8, 0xd4,0x93,0x67,0x8d,0x3c,0x56,0xe7,0x40,0xcf,0xe8,0x7f,0x8d,0xe8,0x40, -0x3c,0xe9,0x67,0x8c,0xef,0x1c,0xcf,0xca,0x7f,0x8c,0xe0,0xc, 0x9f,0xa2,0x67,0xc, -0xe6,0xfb,0xcf,0xff,0xe7,0x1b,0xcf,0x1f,0x7f,0xc, 0xe0,0xc, 0x9f,0xa2,0x67,0xc, -0xe6,0xf4,0xcf,0xff,0xe7,0x1a,0xcf,0x1f,0x7f,0xc, 0x67,0x8f,0xe0,0x11,0x8f,0x74, -0xe7,0x0, 0xcf,0xde,0x7f,0x8f,0x3f,0xe7,0xc7,0xfd,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f, -0xda,0x95,0x67,0x8e,0xe7,0x40,0xcf,0x88,0x7f,0x8e,0x67,0x8e,0xe0,0x12,0x8f,0x74, -0xe7,0x18,0xcf,0xfe,0x7f,0x8e,0xe0,0xc, 0x9f,0xa2,0xe7,0xfb,0x0, 0xce,0xe0,0x4, -0x1f,0x34,0xe6,0xff,0xce,0xf8,0xe0,0xc, 0x9f,0x9e,0xe4,0x0, 0xc4,0x5, 0xe7,0x9, -0xcf,0x9d,0xe0,0xc, 0xb7,0x9e,0xc4,0x2, 0xe0,0xc, 0x9f,0xae,0xe7,0x9, 0xcf,0x9d, -0xe0,0xc, 0xb7,0xae,0x3f,0xe8,0xe2,0x1, 0xc7,0xff,0xe0,0x1a,0xaf,0xfe,0xe0,0x1b, -0xaf,0x8e,0xe0,0x9, 0x9f,0xee,0xe7,0x9, 0xcf,0x9d,0xe0,0x9, 0xb7,0xee,0xe7,0xf7, -0x0, 0xcb,0x8, 0xb2,0xe0,0x4, 0x1f,0x32,0xe0,0x4, 0x1f,0xb4,0xad,0x8e,0x3f,0x68, -0xe4,0x0, 0xc7,0xc, 0xe2,0x1, 0xc4,0xff,0xe0,0x1f,0xad,0x2f,0x39,0x68,0xe0,0x1f, -0xac,0x9f,0x3f,0x9e,0x3f,0x6f,0xe0,0x2, 0xc7,0x2e,0xac,0x8e,0x3f,0x6f,0xe0,0x2, -0xc7,0x2f,0xe0,0x2, 0xc7,0xb4,0xad,0xe, 0x14,0xa0,0xad,0x8f,0xd9,0xdd,0xe0,0x4, -0x1f,0x91,0xe6,0xc8,0xcf,0x8, 0xac,0x1f,0x14,0xa0,0x3c,0x62,0xaf,0xf, 0xda,0x3e, -0xe0,0x4, 0x1f,0x90,0xe6,0xc8,0xcf,0x8, 0xaf,0xf, 0xac,0x1f,0x9, 0x21,0xe7,0xf7, -0x0, 0x9b,0xeb,0x6c,0x7c,0xe4,0xe0,0x0, 0x15,0x60,0xe9,0xff,0xc4,0xfe,0xe0,0x60, -0x14,0x28,0xe1,0xe, 0x0, 0xf9,0x8, 0xb3,0xc0,0x7c,0x11,0x80,0x15,0x81,0xe2,0x0, -0x7d,0x4, 0xe0,0x22,0x14,0x81,0x39,0x68,0x71,0x82,0xe0,0x8, 0xd6,0xc7,0x5f,0x82, -0xe6,0xff,0xcf,0xff,0x27,0x95,0xe0,0x4, 0x1f,0xb7,0x8f,0xf, 0xa9,0x8f,0xe2,0x1, -0xcf,0x7f,0x1, 0xb9,0x5f,0x82,0x17,0x0, 0xcf,0x84,0x77,0x82,0x5f,0x82,0xe7,0x0, -0xcf,0x9e,0x77,0x82,0xea,0x1e,0x7f,0x9e,0x9f,0xf, 0xcf,0x2, 0xb7,0xf, 0x5f,0x82, -0xe6,0xfb,0xcf,0xff,0x27,0x89,0x5f,0x82,0xcf,0x90,0x77,0x82,0xea,0x1e,0x7f,0x9e, -0x9f,0xf, 0xcf,0x2, 0xb7,0xf, 0x5f,0x82,0x27,0x89,0x15,0x81,0xe2,0x0, 0x7d,0x4, -0xe0,0x22,0x14,0x81,0x3c,0x62,0xe0,0x8, 0xd6,0xe3,0xe0,0x22,0x14,0x99,0x3c,0x62, -0xe0,0x8, 0xd6,0x2c,0x3d,0x68,0xe6,0xff,0xcc,0x78,0x24,0xb, 0x17,0x81,0xe7,0x0, -0xcd,0x1f,0xe3,0xff,0xc5,0x7f,0xe0,0x22,0x14,0x99,0x3c,0x62,0xe0,0x8, 0xd6,0x52, -0xc0,0x4, 0x9, 0xe1,0xd6,0xef,0x0, 0xc7,0x8, 0xb3,0xc0,0x7c,0x11,0x0, 0x15,0x81, -0xe2,0x0, 0x7d,0x4, 0xe0,0x24,0x14,0x80,0x39,0xe8,0x71,0x2, 0xe0,0x8, 0xd6,0x76, -0x5f,0x82,0xe6,0xfe,0xcf,0xff,0x27,0x91,0xe0,0x2, 0x1f,0xc0,0x17,0x0, 0xa9,0xf, -0x5f,0x82,0xcf,0x88,0x77,0x82,0x5f,0x82,0xe7,0x1, 0xcf,0x9e,0x77,0x82,0xea,0x1e, -0x7f,0x9e,0x9f,0xf, 0xcf,0x1, 0xb7,0xf, 0x5f,0x82,0x27,0x89,0x15,0x81,0xe2,0x0, -0x7d,0x4, 0xe0,0x24,0x14,0x80,0x3c,0x63,0xe0,0x8, 0xd6,0xa2,0xc0,0x4, 0x9, 0xe1, -0x8, 0xb3,0xc0,0x78,0xe0,0xb, 0x9f,0x88,0x39,0x68,0xe6,0xf6,0xcf,0xff,0x39,0xe9, -0x27,0xaa,0x15,0x81,0xe2,0x0, 0x7d,0x4, 0xe0,0x20,0x14,0xd8,0x3c,0x63,0xe0,0x8, -0xd6,0x45,0x5f,0x82,0xe6,0xf5,0xcf,0xff,0x27,0x9e,0x15,0x81,0xe2,0x0, 0x7d,0x8, -0xe0,0x20,0x14,0xd7,0x3c,0x63,0xe0,0x8, 0xd6,0x39,0x5f,0x84,0x17,0x0, 0xe7,0xe, -0xcf,0x9e,0x15,0x81,0xe2,0x0, 0x7d,0x8, 0xe0,0x20,0x14,0xd7,0x3c,0x63,0x77,0x84, -0xe0,0x8, 0xd6,0x76,0x15,0x81,0xe2,0x0, 0x7d,0x4, 0xe0,0x20,0x14,0xd8,0x3c,0x63, -0xe0,0x8, 0xd6,0x24,0xe0,0xa, 0x9f,0xb2,0xe6,0xf2,0xcf,0xff,0x2f,0x86,0xe0,0xa, -0x9f,0xb2,0xe6,0xf4,0xcf,0xff,0x27,0xad,0xe0,0x20,0x14,0xd3,0x3c,0x63,0xe0,0x8, -0xd5,0xad,0xe0,0xa, 0xb4,0x32,0xe0,0xa, 0x9f,0xb2,0xe6,0xf5,0xcf,0xff,0xe0,0x0, -0x27,0xe5,0xe0,0xa, 0x9f,0xb2,0xe6,0xf4,0xcf,0xff,0x27,0x9b,0xe0,0xa, 0x9f,0x32, -0x17,0x81,0xe7,0xd, 0xcf,0x1f,0xe0,0xa, 0xb7,0x32,0x16,0x80,0xe0,0xa, 0x9f,0x32, -0xe7,0xb, 0xcf,0x1d,0xe0,0xa, 0xb7,0x32,0xe0,0x20,0x14,0xd3,0xe0,0x3, 0x1f,0x5a, -0x3c,0x63,0xaf,0x8e,0xe0,0xa, 0x9d,0x32,0xe0,0x8, 0xd5,0xbc,0xe0,0x8, 0xd2,0xe0, -0xe0,0xc, 0x9f,0xc2,0xe6,0xf1,0xcf,0xff,0x2f,0x86,0xe0,0xc, 0x9f,0xc2,0xe6,0xf6, -0xcf,0xff,0x27,0xb9,0xe0,0x20,0x14,0xe4,0x3c,0x63,0xe0,0x8, 0xd5,0x77,0xe0,0xc, -0xb4,0x42,0xe0,0xc, 0x9f,0xc2,0xe6,0xf2,0xcf,0xff,0x27,0x91,0xe0,0xc, 0x9f,0xc2, -0x17,0x1, 0xe7,0xf, 0xcf,0x9e,0xe0,0xc, 0xb7,0xc2,0xe0,0x2, 0x1f,0xb5,0x8f,0xf, -0xe2,0x0, 0xcf,0x9, 0x2, 0x84,0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0xe0,0xc, 0x9f,0xc2, -0xe6,0xf8,0xcf,0xff,0x27,0x91,0xe0,0xc, 0x9f,0xc2,0x17,0x1, 0xe7,0x8, 0xcf,0x9e, -0xe0,0xc, 0xb7,0xc2,0xe0,0x5, 0x1f,0x95,0x8f,0xf, 0xe2,0x0, 0xcf,0x9, 0x2, 0x84, -0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0xe0,0x20,0x14,0xe4,0xe0,0xc, 0x9d,0x42,0x3c,0x63, -0xe0,0x8, 0xd5,0x78,0xc0,0x8, 0x9, 0xe1,0xe0,0xa, 0x9f,0x32,0xe6,0xf2,0xcf,0x7e, -0xe7,0xff,0x27,0x38,0xe0,0xa, 0x9f,0x32,0x16,0x81,0xe7,0xd, 0xcf,0x1f,0xe0,0xa, -0xb7,0x32,0xe0,0xa, 0x9f,0x32,0xe7,0xff,0x0, 0x9d,0x8, 0xb2,0xea,0x1e,0x7f,0x9e, -0xe0,0x0, 0x1c,0x75,0x17,0x0, 0x14,0x80,0xe0,0x0, 0x19,0x75,0xb7,0xf, 0xdf,0x39, -0xe0,0x1f,0x9f,0x92,0xe6,0xfa,0xcf,0xff,0x2f,0x86,0xe0,0x1f,0x9f,0x92,0xe6,0xf9, -0xcf,0xff,0x27,0x83,0x14,0x0, 0xdf,0x1, 0xe0,0xf, 0x9f,0xf2,0xe6,0xfe,0xcf,0xff, -0x2f,0x86,0xe0,0xf, 0x9f,0xf2,0xe6,0xfa,0xcf,0xff,0x27,0x85,0x14,0x0, 0x9, 0x21, -0xe7,0xfd,0x0, 0xa3,0x9, 0x61,0x38,0x82,0x38,0x82,0xe4,0x0, 0xc4,0x12,0x3c,0x19, -0xc4,0x4, 0xe0,0x3, 0x1c,0xb6,0x34,0x21,0x3c,0x19,0x9f,0x18,0xe2,0x1, 0xc7,0x7f, -0xe0,0xf, 0x37,0x45,0xe6,0xfb,0xcf,0x5e,0x2f,0x20,0x17,0x2, 0xe1,0x2e,0x3f,0x2f, -0x27,0x1c,0x9c,0x98,0xe0,0x2, 0x1f,0x31,0xe6,0xf2,0xcc,0xd9,0xe4,0x2, 0xc4,0xf4, -0xe4,0x0, 0xc7,0xfc,0x3c,0x69,0xe0,0x11,0xc4,0x38,0xe0,0xe, 0x8d,0x4e,0xe0,0xe, -0x8f,0x5e,0x3f,0x98,0xe0,0x2, 0x1c,0x78,0x3d,0x1e,0xe0,0xb, 0xc4,0xd0,0x3c,0x98, -0x35,0x21,0x3c,0x1f,0xe7,0x6e,0x0, 0xb8,0x38,0x82,0xe4,0x0, 0xc4,0x12,0x3c,0x19, -0xc4,0x4, 0xe0,0x3, 0x1c,0xb6,0x34,0x21,0x3c,0x19,0x9f,0x98,0xe6,0xfb,0xcf,0xdf, -0xe2,0x0, 0xcf,0x85,0x2, 0xb6,0x8, 0xb1,0xeb,0x3d,0x7f,0x60,0xe9,0xff,0xc7,0x7d, -0x3f,0x9e,0x8f,0x8f,0x3f,0x9e,0x3f,0x82,0x6, 0x1c,0x30,0x1a,0x44,0x44,0xe0,0x3, -0x1c,0x27,0xe0,0x8, 0xd3,0x21,0xe0,0x3, 0x1f,0xa8,0x8f,0xf, 0xe7,0x3, 0xcf,0x18, -0xaf,0xf, 0x8, 0xe1,0xe0,0x3, 0x1c,0x26,0xe0,0x8, 0xd3,0x16,0xe0,0x3, 0x1f,0xa8, -0x8f,0xf, 0xe7,0x4, 0xcf,0x18,0x0, 0xf5,0xe0,0x3, 0x1c,0x25,0xe0,0x8, 0xd3,0xc, -0xe0,0x3, 0x1f,0xa8,0x8f,0xf, 0xe7,0x5, 0xcf,0x18,0x0, 0xeb,0xe0,0x3, 0x1c,0x24, -0xe0,0x8, 0xd2,0xaa,0xe0,0x3, 0x1f,0xa8,0x8f,0xf, 0xe7,0x0, 0xcf,0x18,0x0, 0xe1, -0x38,0x82,0x8, 0xb5,0x3a,0xe8,0xe0,0x3, 0x1c,0xb6,0xe4,0x0, 0xc2,0xa4,0x39,0xe9, -0xe0,0x4, 0x3c,0x95,0x8f,0xe4,0xe2,0x0, 0xcf,0x8a,0x39,0x6f,0x2, 0xad,0xe2,0x0, -0xcf,0x88,0x3, 0x88,0xe2,0x0, 0xcf,0x82,0x5, 0x85,0xc7,0xfc,0xe2,0x0, 0xcf,0x82, -0x2, 0xaa,0x8f,0xd3,0xe0,0x8, 0x31,0x42,0xe6,0xfa,0xcf,0xff,0x3c,0xef,0x27,0xb2, -0xe0,0xf, 0x39,0x95,0x9c,0xdf,0x8d,0x53,0xe6,0xf8,0xcc,0xd9,0x35,0x47,0xef,0xfe, -0xdc,0x29,0x3c,0x62,0xef,0xfe,0xde,0xcd,0x39,0x95,0x3f,0xe3,0xc7,0x88,0x9f,0x1f, -0xe7,0xb, 0xcf,0x38,0xb7,0x1f,0x17,0x81,0xaf,0xf3,0x14,0x94,0x14,0x0, 0xe0,0x8, -0xd3,0x27,0x14,0x1, 0xa, 0xe1,0xe2,0x0, 0xcf,0x94,0x1, 0x17,0x2, 0x86,0xe2,0x0, -0xcf,0x90,0x1, 0x13,0x14,0x0, 0x0, 0xf7,0xe2,0x1, 0xcf,0x80,0x1, 0x1c,0xe2,0x1, -0xcf,0x81,0x1, 0xf9,0x3c,0x6f,0xef,0xfe,0xdd,0x63,0x17,0x81,0x14,0x9e,0xaf,0xf4, -0x0, 0xe6,0x8d,0x53,0x35,0x47,0x0, 0xd4,0x3c,0x62,0xef,0xff,0xd5,0x4, 0x39,0x95, -0x3f,0xe3,0xc7,0x88,0x9f,0x1f,0x14,0x8a,0xe7,0xb, 0xcf,0x38,0xb7,0x1f,0x17,0x81, -0xaf,0xf3,0x0, 0xd5,0x3c,0x6f,0xef,0xfe,0xde,0xd0,0x17,0x81,0xaf,0xf4,0x0, 0xce, -0x8, 0xb2,0xe0,0x4, 0x1f,0xce,0xe0,0x1, 0x11,0x66,0xe0,0x3, 0x1c,0x36,0x3d,0x62, -0x14,0x80,0xbc,0xf, 0xef,0xfb,0xd6,0xb8,0xe0,0x4, 0x1c,0x62,0x3d,0x62,0x14,0x80, -0x9, 0x21,0xe7,0x6d,0x0, 0xb1,0x8, 0xb1,0xe0,0x3, 0x1f,0xb6,0x17,0x0, 0xaf,0xf, -0x16,0x80,0xaf,0x1f,0xe7,0xff,0x14,0x2, 0xaf,0x2f,0x3d,0x6d,0xaf,0x3f,0x3c,0xed, -0xaf,0x4f,0xaf,0x5f,0x3f,0x6d,0xe4,0x0, 0xc7,0x24,0x38,0xed,0x3f,0x1f,0xac,0x6e, -0xe4,0x0, 0xc0,0x92,0xad,0x7e,0x15,0x80,0xe0,0x1, 0xad,0xe, 0xe0,0x1, 0xad,0x1e, -0xe0,0xe, 0x38,0x9b,0x3e,0x6e,0xc6,0x4, 0x36,0x21,0xc7,0xc, 0x3e,0x1f,0x37,0x21, -0xc5,0x81,0x3f,0x1f,0xb4,0x9c,0xe2,0x0, 0xcd,0x88,0xb4,0x9e,0x1, 0xf2,0xc6,0x81, -0xe2,0x0, 0xce,0x85,0x1, 0xe0,0xe0,0x3, 0x1c,0x35,0x15,0x2b,0x14,0x80,0x8, 0xa1, -0xe7,0x6c,0x0, 0xfa,0xe0,0x3, 0x1f,0xb6,0x8f,0xf, 0xe2,0x0, 0xcf,0x4, 0x2, 0xb1, -0x3e,0xee,0xe4,0x0, 0xc6,0xa4,0x8c,0x88,0x3e,0x9f,0xac,0xed,0x8e,0x28,0xe0,0x1, -0xae,0xd, 0x8e,0x28,0x8e,0xbf,0x3e,0x9c,0x3e,0x6e,0xe4,0x0, 0xc6,0x12,0xae,0xbf, -0x16,0x80,0x8f,0x28,0x3e,0xfe,0x4, 0x86,0x8f,0xf, 0x14,0x1, 0xc7,0x1, 0xaf,0xf, -0x38,0x82,0xe0,0xe, 0x3e,0x1d,0xe0,0xa, 0x36,0xa1,0x3d,0xee,0x3d,0x18,0xc5,0x8c, -0xe0,0x1, 0x9c,0xaa,0x35,0xa1,0x3d,0x9f,0xb4,0x9b,0xc7,0x4, 0x37,0x21,0x9d,0x2a, -0x3f,0x1f,0xb5,0x1e,0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0x0, 0xe2, -0x14,0x0, 0x0, 0xe7,0xe0,0x2, 0x1f,0xc2,0xac,0xf, 0x38,0x82,0x3f,0xe8,0xe2,0x1, -0xc7,0x82,0xe2,0x1, 0xcf,0x80,0x1, 0x88,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f,0xe6,0xf8, -0xcf,0xff,0xe0,0x2, 0x27,0xc2,0x8, 0xb7,0xf8,0x0, 0xc, 0x39,0xc0,0x5c,0x3f,0xe0, -0xc7,0x84,0x3a,0x68,0x15,0x24,0x3c,0x6f,0x14,0x80,0xef,0xfb,0xd6,0x25,0xe6,0xff, -0xc9,0xf4,0x3f,0xe8,0xe0,0x4, 0x19,0x6f,0xe0,0x0, 0x21,0xd1,0xe0,0x4, 0x19,0xe7, -0x8f,0x3, 0x3e,0xee,0xe4,0x0, 0xc6,0x93,0x3e,0x92,0x8e,0xfd,0xe2,0x0, 0xce,0x83, -0x2, 0xb9,0xe6,0xfa,0xcf,0xe, 0xaf,0x8, 0x17,0x1, 0xaf,0x28,0x8e,0x88,0x9f,0x28, -0xe7,0x20,0xcf,0xd, 0xb7,0x28,0xdf,0x8f,0x8f,0x83,0x27,0x8f,0x17,0x4, 0xe2,0x0, -0xcf,0x81,0xe0,0x2, 0xaf,0x22,0x1, 0xc, 0x17,0x4, 0xe2,0x0, 0xcf,0x82,0xe0,0x4, -0xaf,0x52,0x1, 0xa, 0x17,0x84,0x0, 0x89,0xe0,0x2, 0xaf,0xa2,0x0, 0xf6,0x17,0x80, -0xe0,0x4, 0xaf,0xd2,0x0, 0xf8,0x17,0x80,0xe0,0x7, 0xaf,0x82,0x11,0x80,0xe0,0x3, -0x19,0x36,0x8f,0xd2,0xe7,0x7, 0xcf,0x93,0xaf,0xd2,0xe0,0x2, 0xd3,0xc8,0x8f,0xd2, -0x24,0xd, 0x17,0x1, 0xe7,0x4, 0xcf,0x9e,0xaf,0xd2,0x8f,0xd2,0xe7,0x3, 0xcf,0x93, -0xaf,0xd2,0xc0,0x24,0xf8,0x0, 0xc, 0xa8,0xb, 0xe1,0xe7,0x4, 0xcf,0x98,0xaf,0xd2, -0x17,0x1, 0x8f,0xd2,0xe7,0x3, 0xcf,0x9e,0x0, 0xf4,0xe0,0x43,0x3a,0x4, 0xe2,0x0, -0xca,0x0, 0x3, 0x2f,0xe7,0xff,0x17,0x0, 0xaf,0x8, 0x8e,0xf2,0xe2,0x0, 0xce,0x83, -0x2, 0x90,0x8f,0x2f,0xe0,0xc, 0x3e,0x93,0xc7,0x2, 0x37,0x21,0x3f,0x1f,0x9d,0x8e, -0xe2,0x1, 0xc6,0x7f,0xe7,0x20,0xcd,0x8c,0xb5,0x8e,0x8f,0x2f,0xc7,0x1, 0xaf,0x2f, -0x3f,0x63,0xc7,0x4, 0x39,0xee,0xe2,0x1, 0xc1,0xff,0xe2,0x0, 0xc9,0x8c,0xe0,0x2, -0xae,0xa2,0xc1,0x13,0x1, 0xe3,0x4f,0x86,0x27,0xcd,0xe0,0x3, 0x1f,0xb6,0x16,0x81, -0x8f,0x5f,0xe2,0x0, 0x7c,0x4, 0xe7,0x7, 0xcf,0x1d,0xaf,0x5f,0xdf,0x24,0x0, 0xc2, -0xe0,0x3, 0x1f,0xce,0xe0,0x4, 0x8f,0xdf,0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1, 0x56, -0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1, 0xcf,0x8a,0x72, -0xe0,0x2, 0x1f,0xc2,0x17,0x4, 0xe2,0x0, 0xca,0x3, 0xe0,0x2, 0xaf,0x22,0x8f,0x8f, -0x2, 0x84,0xe2,0x0, 0xcf,0x82,0x5, 0xbd,0xe0,0x3, 0x8a,0x22,0xe0,0x4, 0xaf,0x52, -0xe2,0x0, 0xca,0x3, 0x2, 0x84,0xe2,0x0, 0xcf,0x82,0x2, 0xb5,0xe0,0x5, 0x8a,0x52, -0x17,0x4, 0xe2,0x0, 0xca,0x3, 0xe0,0x7, 0xaf,0x2, 0xe7,0xff,0x2, 0x94,0xe2,0x0, -0xcf,0x82,0xe7,0xff,0x5, 0x90,0x17,0x2, 0x39,0xee,0x37,0x22,0x3f,0x14,0x6f,0x4, -0x17,0x1, 0x6f,0x6, 0x37,0xa5,0x4f,0x4, 0xe2,0x0, 0x7c,0x4, 0x3f,0x9e,0x5f,0x4, -0xe2,0x1, 0xc7,0xff,0xe7,0x20,0xcf,0xf, 0x77,0x4, 0xde,0xdd,0xe0,0x3, 0x1f,0xb6, -0x16,0x81,0x8f,0x5f,0xe4,0x0, 0xc1,0x93,0xe7,0x5, 0xcf,0x1d,0xaf,0x5f,0x39,0x13, -0x8f,0x5f,0xe0,0x2, 0xaa,0x22,0xe7,0x7, 0xcf,0x1d,0xaf,0x5f,0xe7,0xfe,0x0, 0xeb, -0x3f,0x63,0x0, 0xdb,0x17,0x1, 0x0, 0xd9,0x12,0x81,0xf0,0x4, 0x1c,0x6f,0xf0,0x3, -0x1c,0xb6,0x11,0x0, 0x3b,0x65,0xe8,0x0, 0x8b,0xf8,0xe2,0x0, 0xcb,0x83,0x2, 0xa4, -0x29,0x31,0x3a,0x63,0x6b,0x84,0xe2,0x0, 0x7c,0x4, 0x6b,0x6, 0x4f,0x84,0x5f,0x4, -0x3f,0x94,0xe2,0x1, 0xc7,0xff,0xe7,0x20,0xcf,0xf, 0x77,0x4, 0xde,0xac,0x3f,0xe4, -0xc7,0xa0,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x0, 0xca,0x60,0x1, 0xec,0xe8,0x0, -0x8f,0xd9,0xe7,0x5, 0xcf,0x95,0xe8,0x0, 0xaf,0xd9,0xe8,0x0, 0x8f,0xd9,0xe7,0x7, -0xcf,0x95,0xe8,0x0, 0xaf,0xd9,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe2,0x0, 0xc9,0x3, 0xe8,0x2, 0xab,0xa8,0xf0,0x0, 0xc4,0x13,0x1, 0xcd,0xe7,0xfe, -0x0, 0xaa,0xe0,0xf, 0x31,0x22,0x3f,0x97,0x6f,0x84,0xe2,0x0, 0x7c,0x4, 0x6b,0x6, -0x4f,0x84,0x5f,0x4, 0xe0,0x0, 0xc7,0xe0,0xe2,0x1, 0xc7,0xff,0xe7,0x20,0xcf,0xf, -0x77,0x4, 0xde,0x79,0x0, 0xdb,0x38,0x82,0x3f,0xe8,0xe2,0x1, 0xc7,0x82,0xe2,0x1, -0xcf,0x80,0x1, 0x88,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f,0xe6,0xf8,0xcf,0xff,0xe0,0x1, -0x27,0xe6,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xc0,0x5c,0x39,0x60,0x3a,0xe8,0xc1,0x4, -0x15,0x24,0x14,0x80,0x3c,0x62,0xe6,0xff,0xca,0x75,0xef,0xfb,0xd4,0xd5,0xe0,0x4, -0x19,0xef,0xe0,0x0, 0x22,0x52,0xe0,0x4, 0x1a,0x67,0x8f,0x84,0x3f,0x6f,0xe4,0x0, -0xc7,0x13,0x3f,0x13,0x8f,0x7e,0xe2,0x0, 0xcf,0x3, 0x2, 0xba,0xe6,0xfa,0xcf,0x8f, -0xaf,0x82,0x17,0x81,0xaf,0xa2,0x3c,0x62,0x8f,0x2, 0x9f,0xa2,0xe7,0x20,0xcf,0x8e, -0xb7,0xa2,0xde,0x41,0x8f,0x84,0x27,0x8f,0x17,0x4, 0xe2,0x0, 0xcf,0x81,0xe0,0x2, -0xaf,0x23,0x1, 0xc, 0x17,0x4, 0xe2,0x0, 0xcf,0x82,0xe0,0x4, 0xaf,0x53,0x1, 0xa, -0x17,0x84,0x0, 0x89,0xe0,0x2, 0xaf,0xa3,0x0, 0xf6,0x17,0x80,0xe0,0x4, 0xaf,0xd3, -0x0, 0xf8,0x17,0x80,0xe0,0x3, 0x19,0x36,0xe0,0x7, 0xaf,0x83,0x11,0x80,0x8f,0xd2, -0xe7,0x7, 0xcf,0x93,0xaf,0xd2,0xe0,0x2, 0xd2,0x7a,0x8f,0xd2,0x24,0xd, 0x17,0x1, -0xe7,0x4, 0xcf,0x9e,0xaf,0xd2,0x8f,0xd2,0xe7,0x3, 0xcf,0x93,0xaf,0xd2,0xc0,0x24, -0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0xe7,0x4, 0xcf,0x98,0xaf,0xd2,0x17,0x1, 0x8f,0xd2, -0xe7,0x3, 0xcf,0x9e,0x0, 0xf4,0xe0,0x43,0x3a,0x85,0xe2,0x0, 0xca,0x80,0x3, 0x2f, -0xe7,0xff,0x17,0x80,0xaf,0x82,0x8f,0x73,0xe2,0x0, 0xcf,0x3, 0x2, 0x90,0x8f,0xa2, -0xe0,0xd, 0x3a,0x1e,0xc7,0x82,0x37,0xa1,0x3f,0x92,0x9e,0xf, 0xe2,0x1, 0xc6,0xff, -0xe7,0x20,0xce,0xd, 0xb6,0xf, 0x8f,0xa2,0xc7,0x81,0xaf,0xa2,0x3f,0xe4,0xc7,0x84, -0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x0, 0xca,0xc, 0xe0,0x2, 0xaf,0x23,0xc1,0x93, -0x1, 0xe3,0x4f,0x86,0x27,0xcd,0xe0,0x3, 0x1f,0xb6,0x16,0x81,0x8f,0x5f,0xe2,0x0, -0x7c,0x4, 0xe7,0x7, 0xcf,0x1d,0xaf,0x5f,0xdd,0xd6,0x0, 0xc2,0x13,0x81,0xf0,0x3, -0x1d,0x36,0x3a,0xe4,0xf0,0x40,0x3c,0x67,0xf0,0x0, 0x8c,0xf3,0xf2,0x0, 0xcc,0x83, -0x2, 0xa5,0x2a,0xb1,0x3b,0x64,0xf0,0x0, 0xac,0x82,0x3c,0x62,0xf0,0x0, 0xac,0x22, -0x8f,0x82,0x9f,0x22,0x3f,0x96,0xe2,0x1, 0xc7,0xff,0xe7,0x20,0xcf,0xf, 0xb7,0x22, -0xdd,0xba,0x3f,0xe6,0xc7,0xa0,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe2,0x0, 0xcb,0x60, -0x1, 0xeb,0xe8,0x0, 0x8f,0xda,0xe7,0x5, 0xcf,0x97,0xe8,0x0, 0xaf,0xda,0xe8,0x0, -0x8f,0xda,0xe7,0x7, 0xcf,0x97,0xe8,0x0, 0xaf,0xda,0x3f,0xe5,0xc7,0x81,0x3a,0xef, -0xe2,0x1, 0xc2,0xff,0xe2,0x0, 0xca,0x83,0xf0,0x2, 0xac,0xa3,0xc1,0x93,0x1, 0xcd, -0xe7,0xff,0x0, 0x87,0xe0,0xf, 0x32,0xa2,0xe8,0xf, 0x3f,0x99,0xaf,0x82,0x3c,0x62, -0xf0,0x0, 0xac,0x22,0x8f,0x82,0x9f,0x22,0xe0,0x0, 0xc7,0xe0,0xe2,0x1, 0xc7,0xff, -0xe7,0x20,0xcf,0xf, 0xb7,0x22,0xdd,0x87,0x0, 0xdb,0x38,0x82,0xe7,0xfe,0x0, 0x8e, -0x8, 0xb2,0xc0,0x5c,0x39,0x68,0x3c,0x60,0x15,0x24,0x14,0x80,0xc4,0x4, 0xef,0xfb, -0xd3,0xf3,0xe6,0xff,0xcf,0xf2,0x2f,0x98,0xe2,0x1, 0xc1,0x2, 0xe2,0x1, 0xc9,0x0, -0x1, 0x87,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f,0xe6,0xf8,0xcf,0xff,0x27,0x8d,0x17,0x90, -0x6f,0x84,0x17,0x81,0x6f,0x86,0x17,0x10,0x5f,0x84,0xe2,0x0, 0x7c,0x4, 0xe7,0x20, -0xcf,0x8e,0x77,0x84,0xdd,0x60,0xc0,0x24,0x9, 0x61,0xe0,0x4, 0x1f,0xb4,0xe0,0xc, -0x9f,0x9f,0xe6,0xf1,0xcf,0xff,0x27,0x82,0x0, 0xd4,0x38,0x82,0x8, 0xb2,0x39,0x68, -0xdd,0x1b,0x3c,0x62,0xdf,0xf3,0x3c,0x62,0x9, 0x21,0xe7,0xfd,0x0, 0xd7,0x8, 0xb2, -0x39,0x68,0xdd,0x12,0x3c,0x62,0xdf,0xc5,0x3c,0x62,0x9, 0x21,0xe7,0xfd,0x0, 0xce, -0x8, 0xb2,0x39,0x68,0xdd,0x9, 0x3c,0x62,0xdf,0xbc,0x3c,0x62,0x9, 0x21,0xe7,0xfa, -0x0, 0xf7,0xe0,0x3, 0x1f,0xb6,0x8f,0xdf,0xe6,0xfa,0xcf,0xff,0x27,0x8e,0xe0,0x2, -0x1f,0x42,0x8f,0x8e,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x83,0x2, 0x83, -0xaf,0x8e,0x0, 0xe7,0x17,0x80,0x0, 0xfd,0x38,0x82,0xe0,0x3, 0x1d,0x36,0x16,0x80, -0x8f,0x8a,0x3d,0xed,0x3e,0xff,0x3c,0xea,0x4, 0xa3,0x3c,0x6d,0x38,0x82,0x3f,0x92, -0xc7,0x84,0x37,0xa1,0x3f,0x99,0x9f,0x9f,0xe2,0x1, 0xc7,0xff,0x3f,0xf8,0x1, 0x16, -0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xe0,0xf, 0x3f,0x2b,0x88,0x8c, -0xe2,0x1, 0xc7,0xff,0x3f,0xf1,0x4, 0xec,0x3f,0xed,0xc7,0x81,0x3e,0xef,0x8f,0x8a, -0xe2,0x1, 0xc6,0xff,0x3e,0xff,0x3d,0xee,0x4, 0x84,0x3c,0x6e,0x9, 0x61,0x8, 0xb2, -0x3e,0x6d,0xe4,0x0, 0xc6,0x24,0x39,0x6d,0x3e,0x19,0x3f,0x6b,0xc6,0x8, 0xe4,0x0, -0xc1,0x12,0x0, 0xe4,0x8, 0xb3,0x24,0x83,0x17,0x80,0xaf,0x89,0x25,0x3, 0x17,0x80, -0xaf,0x8a,0x16,0x0, 0xe0,0x3, 0x18,0xb6,0x3f,0xec,0x39,0x61,0x8f,0x1, 0x3f,0xfe, -0x3, 0x8e,0x3e,0xef,0xe4,0x0, 0xc6,0xa4,0x3f,0x6c,0x3e,0x92,0xc6,0x88,0x0, 0x8b, -0x3f,0x78,0x1, 0x86,0x24,0x82,0xaf,0x89,0x25,0x2, 0xad,0x8a,0x9, 0xe1,0xc7,0x1, -0xe2,0x1, 0xc7,0x7f,0xe0,0xb, 0x3f,0x2c,0x89,0x8d,0xe2,0x1, 0xc5,0xff,0x3d,0xf3, -0x4, 0xf0,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x3e,0x6e,0x0, 0xe1,0x8, 0xb2,0x24,0x83, -0x17,0x80,0xaf,0x89,0x25,0x3, 0x17,0x80,0xaf,0x8a,0x16,0x0, 0xe0,0x4, 0x1f,0xce, -0xa0,0x8f,0x3f,0xec,0x8f,0x1, 0x3f,0xfe,0x3, 0x8e,0x3e,0xef,0xe4,0x0, 0xc6,0xa4, -0x3f,0x6c,0x3e,0x91,0xc6,0x88,0x0, 0x8b,0x3f,0x78,0x1, 0x86,0x24,0x82,0xaf,0x89, -0x25,0x2, 0xad,0x8a,0x9, 0x61,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xe0,0xb, 0x3f,0x2c, -0x89,0xd, 0xe2,0x1, 0xc5,0xff,0x3d,0xf2,0x4, 0xf0,0xc7,0x81,0xe2,0x1, 0xc7,0xff, -0x3e,0x6e,0x0, 0xe1,0x8, 0xb1,0xc0,0x7c,0x17,0x80,0xe2,0x0, 0x7d,0x4, 0x3c,0xe0, -0xe0,0x80,0xaf,0xba,0xc4,0x86,0x6f,0x86,0xdf,0x9e,0x4f,0x86,0x4f,0x7, 0xe4,0x0, -0xc7,0x92,0x3f,0x9e,0xc7,0x84,0xe0,0x3, 0x1f,0x36,0x37,0xa1,0x3f,0x9e,0x9c,0x1f, -0xe6,0xf2,0xcc,0x58,0xc0,0x4, 0x8, 0xe1,0x8, 0xb2,0xc0,0x7c,0x17,0x80,0xe2,0x0, -0x79,0x4, 0xe0,0x80,0xaf,0xb2,0x6f,0x86,0xdf,0x51,0x3c,0xe0,0x3d,0x62,0xc4,0x86, -0xdf,0x82,0x4f,0x86,0x4f,0x7, 0xe4,0x0, 0xc7,0x92,0x3f,0x9e,0xc7,0x84,0xe0,0x3, -0x1f,0x36,0x37,0xa1,0x3f,0x9e,0x9c,0x1f,0xe6,0xf2,0xcc,0x58,0xc0,0x4, 0x9, 0x61, -0x8, 0xb1,0xc0,0x7c,0x17,0x80,0xe2,0x0, 0x7d,0x4, 0x3c,0xe0,0xe0,0x80,0xaf,0xba, -0xc4,0x86,0x6f,0x86,0xdf,0x68,0x4f,0x86,0x4f,0x7, 0xe4,0x0, 0xc7,0x92,0x3f,0x9e, -0xc7,0x84,0xe0,0x3, 0x1f,0x36,0x37,0xa1,0x3f,0x9e,0x9c,0x1f,0xe2,0x1, 0xc4,0x7f, -0xc0,0x4, 0x8, 0xe1,0xe0,0x61,0x3c,0x2, 0xe0,0x61,0x3f,0x82,0xe7,0xbf,0x17,0x7f, -0x3f,0xde,0xe0,0x61,0x3f,0x92,0x38,0x82,0x8, 0xb2,0x39,0x68,0xdf,0xf4,0xe0,0x3, -0x1f,0xb6,0xe0,0x17,0x8f,0x2f,0xe2,0x0, 0xcf,0x27,0x2, 0x96,0x3f,0x1f,0xe0,0x17, -0xa9,0x5e,0xe0,0x17,0x8f,0x4f,0xc7,0x1, 0xe0,0x17,0xaf,0x4f,0xe0,0x17,0x8f,0x2f, -0xc7,0x1, 0xe0,0x17,0xaf,0x2f,0xe0,0x17,0x8f,0x2f,0xe2,0x0, 0xcf,0x27,0x5, 0x84, -0x17,0x0, 0xe0,0x17,0xaf,0x2f,0xe0,0x61,0x3c,0x12,0x9, 0x61,0x8, 0xb3,0xe0,0x3, -0x19,0x36,0x8f,0xb2,0x39,0xef,0xdf,0xcf,0xe0,0x17,0x8f,0xc2,0x27,0x99,0xe0,0x17, -0x8f,0xb2,0x3f,0x92,0xe0,0x17,0x8f,0xdf,0x39,0xef,0xe0,0x17,0x8f,0xc2,0xc7,0xff, -0xe0,0x17,0xaf,0xc2,0xe0,0x17,0x8f,0xb2,0xc7,0x81,0xe0,0x17,0xaf,0xb2,0xe0,0x17, -0x8f,0xb2,0xe2,0x0, 0xcf,0xa7,0x5, 0x84,0x17,0x80,0xe0,0x17,0xaf,0xb2,0xe0,0x61, -0x3c,0x12,0x3c,0x63,0x9, 0xe1,0x8, 0xb3,0xe0,0x4, 0x19,0xce,0xa7,0x83,0x8f,0xbf, -0x39,0x6f,0xdf,0xa9,0xa7,0x83,0xe0,0x17,0x8f,0x4f,0x27,0x19,0xe0,0x17,0x8f,0x3f, -0x3f,0x1f,0xe0,0x17,0x8f,0x5e,0x39,0x6e,0xe0,0x17,0x8f,0x4f,0xc7,0x7f,0xe0,0x17, -0xaf,0x4f,0xe0,0x17,0x8f,0x3f,0xc7,0x1, 0xe0,0x17,0xaf,0x3f,0xe0,0x17,0x8f,0x3f, -0xe2,0x0, 0xcf,0x27,0x5, 0x84,0x17,0x0, 0xe0,0x17,0xaf,0x3f,0xe0,0x61,0x3c,0x12, -0x3c,0x62,0x9, 0xe1,0x8, 0xb2,0xe0,0x3, 0x1d,0x36,0x17,0x80,0x3d,0xef,0x3c,0xea, -0x10,0x81,0x8f,0xa, 0x3f,0xfe,0x4, 0x99,0x3c,0x6b,0x9, 0x61,0xe0,0xe, 0x39,0x1d, -0xc7,0x4, 0x37,0x21,0x3f,0x19,0x9f,0x1e,0xe6,0xfb,0xcf,0x5e,0x3f,0x78,0x1, 0x17, -0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0x8f,0xc, 0x3e,0xfe,0x4, 0xef, -0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xe6,0x3e,0x6f,0xe4,0x0, 0xc6,0x24,0x39,0x6f, -0x3e,0x19,0x16,0x80,0xc6,0x8, 0xe4,0x0, 0xc1,0x12,0x0, 0xf0,0x3d,0xe1,0x0, 0xf1, -0xe0,0x3, 0x1f,0xb6,0x14,0x0, 0x8f,0x8f,0xe0,0x28,0x3c,0xf, 0x38,0x82,0x8, 0xb3, -0xe0,0x1, 0x1f,0x95,0xe0,0x3, 0x19,0x36,0x8c,0x8f,0x39,0xef,0x2c,0x89,0xe0,0x4, -0x1f,0xce,0xe0,0x4, 0x1c,0x61,0x15,0x2b,0xb9,0xf, 0xef,0xfb,0xd2,0x5, 0x17,0x80, -0xaf,0x92,0x14,0x80,0xe0,0x3, 0x1c,0x35,0xaf,0xa2,0x15,0x2b,0xaf,0xc2,0xaf,0x83, -0xef,0xfb,0xd1,0xfa,0x17,0x80,0x3d,0xef,0x3c,0xef,0x8f,0x2, 0x3f,0xfe,0x4, 0x8d, -0x8f,0x82,0x27,0x8a,0x8f,0x92,0x3c,0x6f,0xda,0xc5,0x24,0x2a,0xe0,0x4, 0x1f,0x48, -0x17,0x81,0xaf,0x8e,0xaf,0xa2,0x9, 0xe1,0x3f,0x6f,0xe4,0x0, 0xc7,0x24,0x3c,0x6f, -0x3f,0x12,0x3e,0xee,0xad,0xfe,0xe4,0x0, 0xc4,0x12,0x16,0x0, 0xc6,0x88,0xe0,0x1, -0xad,0x9e,0x8f,0xd, 0x3e,0x7e,0x4, 0x85,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xde, -0xe0,0xe, 0x3c,0x1c,0xc7,0x4, 0x37,0x21,0x3f,0x12,0x9d,0x1e,0xe7,0xe, 0xcd,0x29, -0xb5,0x1e,0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, 0xc6,0x7f,0x0, 0xeb,0x17,0x83, -0x0, 0xda,0x8, 0xb6,0xe0,0x3, 0x19,0xb6,0x8f,0x93,0x39,0x6f,0x8f,0xa3,0xe2,0x0, -0xcf,0x81,0xe0,0x0, 0x1, 0xed,0x3a,0x62,0xe4,0x0, 0xc2,0x24,0x3c,0x62,0xe0,0x5, -0x39,0x94,0xe0,0x1, 0x8f,0x95,0x3c,0xef,0xda,0x41,0xe0,0x1, 0x8f,0x95,0xc7,0x81, -0xe0,0x1, 0xaf,0x95,0xe0,0x1, 0x8f,0x95,0xe0,0x1, 0x8f,0x5, 0x3f,0x7f,0x2, 0x96, -0x17,0x82,0xaf,0xf5,0x3a,0x13,0x8f,0xf4,0xe2,0x0, 0xcf,0x82,0xe0,0x0, 0x1, 0xd0, -0x8f,0x93,0xc7,0x81,0xaf,0x93,0x8f,0x93,0x8f,0x3, 0x3f,0x7f,0xe0,0x0, 0x5, 0xc8, -0x8f,0x93,0x3c,0x6f,0xb, 0x21,0xe7,0xf4,0x0, 0xe6,0x3f,0xe2,0xe0,0x1, 0x8f,0x15, -0xe4,0x0, 0xc7,0x92,0x3f,0x1f,0xc7,0x4, 0x37,0x21,0x3f,0x13,0x9b,0x1e,0xe0,0x1, -0x8f,0x15,0xe6,0xf2,0xcb,0x56,0x3f,0x9e,0xc7,0x84,0x37,0xa1,0x3f,0x93,0x9c,0x1f, -0xe2,0x1, 0xc4,0x7f,0xe6,0xfb,0xc9,0x58,0xe2,0x0, 0xc9,0x2, 0xe6,0xfb,0xca,0xb8, -0x2, 0x9f,0xdd,0xd4,0x3c,0xe8,0x3c,0x62,0xef,0xfe,0xd7,0xdd,0x3c,0xe6,0x3c,0x65, -0xe0,0x0, 0xde,0xae,0x8d,0x53,0x14,0x80,0x35,0x47,0x3c,0x62,0xef,0xfe,0xd6,0x8a, -0xe0,0x2, 0x1f,0x85,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0xe7,0xff,0x2, 0xbd,0xe2,0x0, -0xc9,0x2, 0x2, 0x8b,0x14,0x7, 0xef,0xfe,0xd1,0x2f,0xe7,0xff,0x0, 0xb5,0x3c,0xe6, -0x3c,0x65,0xe0,0x0, 0xdd,0x90,0x0, 0xed,0x14,0x3f,0x0, 0xf6,0xb, 0x61,0xe0,0x3, -0x1f,0x90,0x9f,0x8f,0xe6,0xff,0xcf,0xff,0x2f,0x91,0xe0,0x3, 0x1f,0xa9,0x9f,0xf, -0xe6,0xff,0xcf,0x7e,0x2f,0xb, 0x9f,0xf, 0xe6,0xfb,0xcf,0x6e,0xe2,0x0, 0xcf,0x1, -0x1, 0x87,0x9f,0x8f,0xe6,0xf8,0xcf,0xff,0x2f,0x83,0xe0,0x2f,0x0, 0xdf,0x38,0x82, -0x8, 0xb3,0xe0,0x3, 0x19,0xb6,0x39,0x68,0x8f,0xa3,0xe2,0x0, 0xcf,0x81,0x1, 0x5, -0x21,0x6, 0x9, 0xa1,0xe0,0xfa,0x0, 0xdb,0xdf,0xdb,0x0, 0xf7,0x9, 0xe1,0xe0,0x3, -0x1f,0xb6,0x14,0x3, 0x8f,0xaf,0xe1,0x28,0x3c,0xf, 0x38,0x82,0x8, 0xb3,0xe0,0x3, -0x19,0x36,0xe0,0x7, 0xdd,0x4c,0x17,0x83,0xaf,0xa2,0x8f,0xc2,0x39,0xef,0x8f,0xb2, -0x39,0xff,0x4, 0x9b,0x17,0x0, 0x15,0x3, 0x14,0x82,0x8f,0x82,0x3f,0x7f,0x4, 0x9d, -0xe0,0x3, 0x1f,0x10,0x17,0x80,0x9e,0x8e,0xe7,0x4, 0xce,0x9f,0xb6,0x8e,0xe0,0x0, -0x1f,0x36,0x9e,0x8e,0xe7,0xa, 0xce,0x9f,0xb6,0x8e,0xe0,0x3, 0x1f,0x38,0xaf,0x8e, -0xe0,0x0, 0x1f,0x2a,0xaf,0x8e,0x9, 0xe1,0x3c,0x63,0xde,0x3f,0x3f,0xe3,0xc7,0x81, -0x39,0xef,0xe2,0x1, 0xc1,0xff,0x0, 0xdc,0x3f,0xee,0xe4,0x0, 0xc7,0xa4,0x3c,0x6e, -0x3f,0x92,0x3e,0x6f,0xe4,0x0, 0xc4,0x12,0x16,0x80,0xc6,0x8, 0xad,0x7f,0x8f,0x8c, -0x3e,0xff,0x4, 0x87,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x0, 0xce, -0xe0,0xf, 0x3c,0x1d,0xc7,0x84,0x37,0xa1,0x3f,0x92,0x9d,0x9f,0xe7,0xe, 0xcd,0xa9, -0xb5,0x9f,0x3f,0xed,0xc7,0x81,0x3e,0xef,0xe2,0x1, 0xc6,0xff,0x0, 0xe9,0x8, 0xb1, -0xdf,0x7f,0xe0,0x3, 0x1f,0xb6,0x8f,0x2f,0xe2,0x0, 0xcf,0x3, 0x1, 0x7, 0xe0,0x17, -0x8f,0x4f,0x17,0x80,0xe1,0x28,0x3f,0x8e,0x8, 0xe1,0x14,0x1, 0x0, 0xfe,0x8, 0xb1, -0xdf,0x6f,0xe0,0x4, 0x1f,0xce,0xa7,0x8f,0x8f,0x2f,0xe2,0x0, 0xcf,0x3, 0x1, 0x7, -0xe0,0x17,0x8f,0x4f,0x17,0x80,0xe1,0x28,0x3f,0x8e,0x8, 0xe1,0x14,0x1, 0x0, 0xfe, -0x8, 0xb1,0xdf,0x5e,0xe0,0x3, 0x1f,0xb6,0x14,0x1, 0x8f,0xaf,0xe0,0x28,0x3c,0xf, -0x8, 0xe1,0x8, 0xb4,0xc0,0x7c,0xe0,0x3, 0x19,0x36,0xdf,0x52,0x8f,0xa2,0xe2,0x0, -0xcf,0x83,0x1, 0x2c,0xe0,0x17,0x8f,0xb2,0x3a,0x6f,0x39,0xef,0xe0,0x17,0x8f,0x42, -0xe0,0xf, 0x39,0xa4,0xe2,0x1, 0xc7,0xff,0x3f,0xfe,0x4, 0x84,0x14,0x0, 0xc0,0x4, -0xa, 0x61,0xe0,0xf, 0x39,0x13,0xe0,0x17,0x8f,0xdf,0xe2,0x0, 0x7d,0x7, 0x3c,0x6f, -0xe2,0x0, 0x7c,0x86,0xdd,0x18,0x4f,0x86,0x4f,0x7, 0xe4,0x0, 0xc7,0x92,0x3f,0x9e, -0xc7,0x84,0x37,0xa1,0x3f,0x92,0x9f,0x9f,0xe6,0xf5,0xcf,0xff,0x2f,0x87,0x3f,0xe3, -0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0x0, 0xda,0x14,0x1, 0x0, 0xe1,0x8, 0xb3, -0xc0,0x7c,0xe0,0x3, 0x19,0x36,0x8f,0xa2,0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1, 0xd4, -0x39,0xef,0x8f,0xc2,0x3d,0x60,0x3c,0xe0,0x3c,0x6f,0xc5,0x7, 0xc4,0x86,0xdc,0xf3, -0x4c,0x86,0x4d,0x7, 0x3f,0xe9,0xe4,0x0, 0xc7,0x92,0x3f,0x9a,0xc7,0x84,0x37,0xa1, -0x3f,0x92,0x9c,0x1f,0xe2,0x1, 0xc4,0x7f,0xe6,0xfb,0xce,0xb8,0xe2,0x0, 0xce,0x94, -0x2, 0xa7,0xe0,0x5, 0x1e,0x3d,0xe0,0xe, 0x31,0xbd,0x3f,0x5c,0x27,0x21,0x9f,0x9f, -0xe2,0x0, 0xce,0x8f,0xe6,0xf2,0xcf,0xdf,0x5, 0xb0,0x2f,0x84,0xe0,0x2, 0x1c,0x73, -0xd8,0x9b,0xe0,0x3, 0x1f,0x90,0x4f,0x6, 0x9e,0x8f,0x3f,0xee,0x4e,0x7, 0xe4,0x0, -0xc7,0x92,0xe6,0xfb,0xce,0xfd,0x3f,0x9c,0xc7,0x84,0x37,0xa1,0x3f,0x92,0x9f,0x1f, -0x26,0xa9,0x16,0x82,0xe7,0xe, 0xcf,0x2d,0xb7,0x1f,0xe0,0x7, 0xdc,0x58,0x8f,0xc2, -0x3c,0x6f,0xdd,0x6b,0x8f,0xc2,0xc7,0x81,0xaf,0xc2,0x8f,0xc2,0x8f,0x32,0x3f,0x7f, -0x2, 0x8a,0x17,0x82,0xe0,0x0, 0x1f,0x2f,0xaf,0xa2,0x17,0x80,0xaf,0x8e,0xe0,0x1, -0x1f,0x3, 0xaf,0x8e,0xc0,0x4, 0x9, 0xe1,0x2f,0x89,0xe6,0xfb,0xcc,0x58,0xe4,0x0, -0xc4,0x7c,0xe0,0x2, 0x1f,0xd9,0x3c,0x1f,0xd8,0x68,0x4c,0x87,0x4c,0x6, 0xd8,0x66, -0x0, 0xc9,0x16,0x81,0x0, 0xd8,0x8, 0xb1,0xc0,0x48,0xe0,0x4, 0x1e,0xef,0xe4,0x0, -0xc4,0x93,0xe0,0x4, 0x1f,0x34,0x3e,0x99,0xe0,0x2, 0x8f,0x8d,0x14,0x88,0xe0,0x13, -0x8e,0x3e,0xc7,0x8b,0xe0,0xf, 0x34,0xbf,0xe0,0x1, 0x8c,0x8d,0x8e,0xcd,0xe6,0xf9, -0xce,0x7c,0x3c,0xbd,0x26,0x2, 0x37,0xa2,0xe1,0x29,0x3f,0xb9,0x17,0x8b,0x6f,0x86, -0x17,0x81,0x6f,0x84,0xe0,0x43,0x3c,0x99,0x8f,0xde,0x8f,0x4e,0x3f,0x9e,0x6f,0x85, -0xeb,0xff,0xcf,0xfc,0x3c,0x1f,0x34,0x41,0x17,0x80,0x7c,0x4, 0x7c,0x6, 0xe2,0x0, -0x7c,0x4, 0x77,0x86,0xe0,0x7, 0xdf,0x1f,0xc0,0x38,0x8, 0xe1,0x8, 0xb1,0xc0,0x48, -0xe0,0x4, 0x1f,0xb4,0x8f,0x6f,0xe0,0x1f,0x8c,0xdf,0x8f,0xdf,0x6f,0x4, 0x6f,0x85, -0x17,0x86,0x6f,0x86,0xeb,0xff,0xcf,0xfc,0x3c,0x1f,0x34,0x41,0x17,0x80,0x7c,0x4, -0x7c,0x6, 0xe2,0x0, 0x7c,0x4, 0x77,0x86,0xe0,0x7, 0xdf,0x5, 0xc0,0x38,0x8, 0xe1, -0xe2,0x0, 0xcd,0x7, 0x2, 0xa, 0x17,0x81,0xe0,0xa, 0x37,0xba,0xc4,0x7f,0xe2,0x1, -0xc5,0x7f,0x17,0x80,0x3f,0xf9,0x1, 0x82,0x38,0x82,0xe0,0x80,0x8f,0x18,0xc7,0x81, -0x3f,0x4a,0xe3,0xff,0xc7,0xff,0xaf,0x8, 0x0, 0xf6,0xe2,0x0, 0xcd,0x7, 0x2, 0x22, -0x17,0x81,0xe0,0xa, 0x37,0xba,0xc5,0xfe,0x3c,0x98,0xe0,0x43,0x3e,0x1c,0xe0,0x41, -0x3d,0xa, 0x1, 0x16,0x3c,0x79,0x1, 0x16,0x87,0x88,0xe0,0x80,0x97,0x1b,0xe2,0x0, -0xcf,0x80,0x3, 0x11,0x3e,0x7e,0x5, 0x11,0x3f,0xda,0xaf,0x88,0x0, 0x8e,0xe0,0x80, -0x97,0x9b,0x3f,0xfc,0x3, 0x4, 0x8f,0x88,0x3f,0xda,0xaf,0x88,0xc4,0x1, 0x3c,0xf8, -0x1, 0xf7,0x38,0x82,0x3e,0x7e,0x4, 0x71,0xc4,0x1, 0x0, 0xe5,0x8, 0xb6,0xe0,0x4, -0x1f,0xb4,0x11,0x0, 0x8a,0x4f,0x8f,0xdf,0xe0,0x4, 0x19,0xef,0xe0,0x4, 0x1a,0xf2, -0x3a,0x1f,0x3b,0x62,0x8f,0xf3,0xe2,0x0, 0xcf,0x84,0x1, 0x9, 0x3c,0x62,0xe4,0x0, -0xc4,0x3e,0x3d,0x64,0x3c,0xe6,0x3c,0x15,0xef,0xfa,0xdf,0x5e,0xc1,0x1, 0xe2,0x0, -0xc9,0x3, 0xc1,0x93,0x1, 0xf0,0xb, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xe0,0x4, -0x1f,0xb4,0xe0,0x4, 0x1a,0x6f,0x8a,0xcf,0x8f,0xdf,0xe0,0x4, 0x1b,0xf2,0x3b,0x68, -0x3a,0x9f,0x11,0x0, 0xe2,0x0, 0xc9,0x2, 0xf0,0x40,0x3c,0x62,0xf2,0x1, 0xc4,0x7f, -0x1, 0x12,0x8f,0xf4,0xe2,0x0, 0xcf,0x84,0x1, 0xe, 0x39,0xe2,0xe4,0x0, 0xc1,0xbe, -0x3c,0xe5,0x39,0x97,0x3c,0x63,0x3d,0x66,0xdf,0x84,0xe8,0x40,0x3c,0xe8,0x3c,0x63, -0xef,0xfe,0xd1,0xa, 0xc1,0x1, 0xe2,0x0, 0xc9,0x3, 0xc2,0x13,0x1, 0xe4,0xf8,0x0, -0xc, 0x28,0xb, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xe0,0x4, 0x1f,0xb4,0x11,0x80, -0x8b,0x4f,0x8f,0xdf,0xe0,0x4, 0x1a,0xef,0xf0,0x2, 0x1c,0xf8,0xf0,0x4, 0x1d,0xf2, -0xf0,0x40,0x3c,0x68,0x3b,0x1f,0x3b,0xe3,0xf0,0x0, 0x15,0x3e,0xe2,0x0, 0xc9,0x82, -0x3a,0x63,0xe2,0x1, 0xc2,0x7f,0x1, 0x3e,0x3c,0x64,0xdc,0xc5,0x24,0x3b,0x3c,0xe7, -0x3c,0x64,0xe0,0x2, 0xd5,0x15,0xe0,0x2, 0x8f,0xa5,0xe0,0xe, 0x32,0x22,0x3f,0x9e, -0x34,0x25,0x3f,0x98,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0xdb,0x60,0xdb,0xec,0x39,0x63, -0x3f,0xe8,0xe4,0x0, 0xc1,0x7c,0xe4,0x2, 0xc7,0xf4,0xe0,0xb, 0xc1,0x50,0x39,0x1f, -0x3f,0xe4,0xe0,0x2, 0x8f,0x25,0xc7,0x90,0x37,0xa2,0x3f,0x9e,0x3c,0xe8,0x3c,0x6f, -0xe2,0x1, 0xc4,0x7f,0xe0,0x2, 0xd4,0xf6,0xe8,0x2, 0x39,0x19,0x3e,0x67,0x3d,0xe4, -0xe8,0x40,0x3d,0x6a,0x3c,0xe2,0x3c,0x62,0xef,0xfb,0xd3,0x70,0x3c,0x63,0xe4,0x0, -0xc4,0x3e,0x3e,0x67,0x3d,0xe2,0xe8,0x40,0x3d,0x68,0x3c,0xe6,0xe8,0x8, 0x3c,0x1b, -0xdf,0x35,0xc1,0x81,0xe2,0x0, 0xc9,0x83,0xc2,0x93,0xe7,0xff,0x1, 0xb9,0xf8,0x0, -0xd, 0xa8,0xb, 0xe1,0x8, 0xb4,0x11,0x7, 0xdf,0x52,0xe0,0x13,0x11,0xc4,0x12,0x1, -0x3c,0x63,0xe0,0x6, 0xda,0x6c,0x3c,0x62,0xdf,0x68,0xdc,0xaa,0x3c,0x64,0xdd,0x89, -0xdd,0x97,0x24,0x30,0x3c,0x62,0xc1,0x7f,0xdf,0x8e,0xe0,0x43,0x39,0x12,0xe3,0xff, -0xc9,0x7f,0x1, 0xef,0xe0,0x4, 0x19,0x6f,0x8f,0xf2,0xe2,0x0, 0xcf,0x84,0x1, 0x6, -0xe0,0x4, 0x1c,0x72,0x14,0x80,0xef,0xfe,0xd0,0x7f,0xe0,0x3, 0x8f,0xa2,0xe2,0x0, -0xcf,0x84,0x1, 0x6, 0xe0,0x4, 0x1c,0x71,0x14,0x81,0xef,0xfe,0xd0,0x75,0xe0,0x5, -0x8f,0xd2,0xe2,0x0, 0xcf,0x84,0x1, 0x6, 0xe0,0x4, 0x1c,0x70,0x14,0x82,0xef,0xfe, -0xd0,0x6b,0x14,0x0, 0xd8,0x50,0xe0,0x1, 0x1f,0xa0,0x8f,0x8f,0x3c,0x6f,0xda,0xd1, -0x14,0x1, 0xa, 0x61,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xe0,0x4, 0x19,0xb4,0xe0,0x2, -0x1b,0xf8,0xe0,0x1c,0x8c,0x33,0xe0,0x2, 0x1b,0x74,0xe0,0x4, 0xd0,0xce,0x3a,0xe8, -0xe4,0x0, 0xc2,0x8c,0x14,0x1, 0xe0,0x1a,0x39,0x95,0xdd,0x43,0x12,0xa, 0x11,0x0, -0xf0,0x2, 0xc5,0x2a,0xf0,0x0, 0x14,0x1, 0xf0,0x0, 0x14,0x90,0xf1,0xd4,0x15,0xdf, -0xe8,0x0, 0xa9,0xa, 0xe0,0x1f,0xa9,0x33,0xef,0xff,0xd0,0xf6,0xdc,0x51,0xe8,0x40, -0x3c,0x68,0xdd,0x2f,0xe8,0x40,0x3c,0x69,0xda,0xc1,0xdb,0x4d,0x3c,0xe8,0xe4,0x13, -0xc4,0xd8,0x3c,0x66,0xe0,0x63,0xc4,0x94,0x3c,0x97,0xef,0xfb,0xd3,0xb, 0x3c,0x66, -0xe0,0x2, 0xd2,0xed,0xe3,0xff,0xc4,0x7f,0xe8,0x40,0x3c,0x7b,0x5, 0xb5,0x17,0x83, -0x3f,0x92,0x39,0x6f,0x3f,0xe4,0xc7,0xff,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x1, -0xc1,0x7f,0x2a,0x57,0xe0,0x3, 0x1f,0x1a,0xc4,0x1, 0xe0,0x3, 0x8f,0xfe,0xe0,0x1f, -0xa9,0x33,0xe4,0x0, 0xc7,0xe4,0x37,0xa6,0xe1,0x2f,0x3f,0xb8,0xe2,0x1, 0xc7,0xff, -0xe0,0x4, 0xaf,0x9e,0xe0,0x4, 0xaf,0xae,0xe0,0x1f,0xaf,0xd3,0xe0,0x1f,0xaf,0xe3, -0x39,0x95,0xe0,0x4, 0xa9,0x3e,0x3f,0x63,0xe0,0x2, 0xc7,0x2a,0xa9,0xe, 0x3f,0x63, -0xe0,0x2, 0xc7,0x2c,0xe0,0x2, 0xc1,0xad,0xaf,0x83,0xaf,0x8e,0xf8,0x0, 0xd, 0xa8, -0xb, 0xa1,0xe7,0xe1,0x0, 0xa9,0xe2,0xea,0xcc,0x2f,0x5, 0x83,0x17,0x82,0x0, 0xc9, -0xe2,0x75,0xcc,0x17,0x5, 0xd0,0x17,0x81,0x0, 0xc4,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e, -0xc0,0x7c,0xe0,0x4, 0x19,0xb4,0x14,0x0, 0x8f,0xd3,0x8b,0xc3,0xe0,0x1, 0x1a,0xa0, -0x3b,0x9f,0xef,0xff,0xd7,0xc1,0xef,0xff,0xd7,0x50,0x8f,0x85,0xe0,0x4, 0x1b,0x6f, -0x3c,0x6f,0x12,0x0, 0xf0,0x4, 0x1c,0x72,0xd9,0xfa,0x39,0x66,0x3a,0xe4,0xf0,0x1, -0x14,0x80,0x8f,0xf2,0xf0,0x40,0x3d,0x64,0xe2,0x0, 0xcf,0x84,0xe0,0x1, 0xaa,0x92, -0xf2,0x1, 0xc5,0x7f,0xe0,0x1, 0xaa,0xa2,0xe0,0x1, 0xaa,0xb2,0xe0,0x1, 0xaa,0xc2, -0x1, 0x10,0x3f,0xe4,0xe4,0x0, 0xc7,0xbe,0xe8,0x40,0x3c,0xe9,0xe8,0xf, 0x3f,0x98, -0x3d,0x67,0x3c,0x6f,0xef,0xfa,0xdd,0xd8,0xe8,0x40,0x3c,0xea,0xef,0xfd,0xdf,0xac, -0xc2,0x1, 0xe2,0x0, 0xca,0x3, 0xc1,0x13,0x1, 0xdd,0xf0,0x2, 0x1e,0xf8,0xf0,0x0, -0x14,0x86,0xf0,0x13,0x16,0x44,0xf0,0x0, 0x15,0x1, 0xf0,0x0, 0x15,0x80,0xf0,0x0, -0x17,0x3e,0xe8,0x40,0x3c,0x6c,0xf8,0x5, 0x35,0x39,0xe0,0x6, 0xd9,0x68,0xe0,0x43, -0x3b,0x85,0x39,0x66,0x12,0x0, 0x8f,0xf2,0xe2,0x0, 0xcf,0x84,0x1, 0x18,0xe0,0x1, -0x8f,0x92,0x3c,0x64,0x3f,0xc7,0xe0,0x1, 0xaf,0x92,0xe0,0x1, 0x8f,0xa2,0x3f,0xc7, -0xe0,0x1, 0xaf,0xa2,0xe0,0x1, 0x8f,0xb2,0x3f,0xc7,0xe0,0x1, 0xaf,0xb2,0xe0,0x1, -0x8f,0xc2,0x3f,0xc7,0xe0,0x1, 0xaf,0xc2,0xef,0xfe,0xd2,0x76,0x3f,0xe4,0xc7,0x81, -0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x0, 0xca,0x3, 0xc1,0x13,0x1, 0xdd,0xdb,0x80, -0xe8,0x40,0x3c,0x6a,0xdc,0x5e,0xdc,0x6c,0xe0,0x1, 0x24,0x1e,0xe4,0x0, 0xca,0xff, -0xe2,0x1, 0xc2,0xff,0x3a,0x66,0x13,0x80,0xf0,0x40,0x3c,0x67,0xf2,0x1, 0xc4,0x7f, -0xe8,0x40,0x3c,0x68,0xdb,0x38,0xe0,0x0, 0x24,0x6c,0xe8,0x40,0x3c,0xeb,0xe8,0x40, -0x3c,0x68,0xe0,0x2, 0xd3,0x85,0xe0,0x2, 0x8f,0xa4,0xf0,0xe, 0x34,0x22,0x3f,0x9e, -0x34,0x25,0x3f,0x98,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0xd9,0xd0,0xda,0x5c,0x39,0x67, -0x3f,0xe8,0xe4,0x0, 0xc1,0x7c,0xe4,0x2, 0xc7,0xf4,0xe0,0xb, 0xc1,0x50,0x39,0x1f, -0xe8,0x40,0x3f,0xe8,0xe0,0x2, 0x8f,0x24,0xc7,0x90,0x37,0xa2,0x3f,0x9e,0x3c,0xe8, -0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0xe0,0x2, 0xd3,0x65,0xe8,0x2, 0x39,0x1d,0xe8,0x40, -0x3e,0x6b,0xe8,0x40,0x3d,0xe8,0xe8,0x40,0x3d,0x6e,0x3c,0xe2,0x3c,0x62,0xef,0xfb, -0xd1,0xdd,0xe0,0x12,0x8c,0x23,0xe0,0x11,0x8c,0x93,0x34,0x21,0xe2,0x0, 0x7d,0x7, -0x3c,0x12,0xe0,0x2, 0xd0,0xc0,0xe0,0x12,0x8f,0xa3,0x4f,0x7, 0x3f,0x9e,0x37,0xa1, -0x3f,0x92,0x97,0x8f,0xe2,0x0, 0xcf,0x80,0x3, 0x6, 0xe0,0x1, 0x8f,0x94,0x3f,0xd5, -0xe0,0x1, 0xaf,0x94,0xe2,0x0, 0x7d,0x7, 0xe0,0x12,0x8f,0x83,0x8c,0x53,0xe0,0x11, -0x8c,0x83,0x3c,0x1f,0x34,0x21,0x3c,0x12,0xe0,0x2, 0xd0,0xa5,0x8f,0xd3,0xe0,0x12, -0x8e,0x83,0x4f,0x7, 0x3f,0x9d,0x3f,0x9e,0x37,0xa1,0x39,0x1f,0x97,0x82,0xe2,0x0, -0xcf,0x80,0x3, 0x6, 0xe0,0x1, 0x8f,0xa4,0x3f,0xd5,0xe0,0x1, 0xaf,0xa4,0xc3,0x81, -0xe2,0x0, 0xcb,0x83,0xc2,0x13,0xe7,0xff,0x1, 0x89,0xf1,0xff,0xc4,0xff,0xf3,0xff, -0xcc,0xff,0xe7,0xfe,0x1, 0xc8,0x11,0x0, 0x8f,0xf6,0xe2,0x0, 0xcf,0x84,0x1, 0x4, -0x3c,0x62,0xef,0xfe,0xd1,0xd9,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe2,0x0, 0xc9,0x3, 0xc3,0x13,0x1, 0xf1,0xe0,0x1, 0x1f,0x20,0x8f,0x8e,0x3c,0x6f, -0xd9,0x26,0x14,0x1, 0xc0,0x4, 0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x8, 0xb2,0xde,0xde, -0x39,0x68,0xde,0x21,0x24,0x2, 0x3c,0x62,0x9, 0x61,0x8, 0xb4,0xe0,0x4, 0x19,0x34, -0xe0,0x12,0x8f,0xd2,0xe2,0x0, 0xc7,0x97,0x27,0xb9,0x14,0x1, 0xdb,0xaa,0xe0,0x1, -0x1f,0xa0,0x8f,0x8f,0x3c,0x6f,0xd9,0xb, 0xda,0xbc,0xe0,0x12,0x8f,0xd2,0x24,0x8, -0xe2,0x1, 0xc7,0xe8,0xe0,0x12,0xaf,0xd2,0x11,0x0, 0x3c,0x62,0xa, 0x61,0xe6,0xfd, -0xcf,0xdf,0x3a,0x62,0x27,0x86,0xe0,0x12,0x8f,0xe2,0xcf,0x87,0xe0,0x12,0xaf,0xe2, -0x14,0x80,0x3c,0x69,0xef,0xfe,0xdc,0x12,0xe0,0x0, 0x1f,0xfd,0x39,0xe8,0x8c,0x8f, -0xe0,0x4, 0x1f,0xf8,0x8c,0xf, 0xdf,0xcb,0x39,0x68,0x24,0x7, 0xe0,0x12,0x8f,0xd4, -0xe2,0x1, 0xc7,0xe8,0xe0,0x12,0xaf,0xd4,0xe6,0xf9,0xcf,0xf3,0xe6,0xf8,0xc9,0xf3, -0x3c,0xe3,0x3c,0x6f,0xef,0xfe,0xdb,0xfa,0x0, 0xd9,0x11,0x1, 0x0, 0xd7,0x8, 0xb4, -0xe0,0x4, 0x19,0x34,0xe0,0x12,0x8f,0xe2,0xe2,0x0, 0xc7,0x97,0x27,0xba,0x14,0x1, -0xdb,0x68,0xe0,0x12,0x8f,0xe2,0xe2,0x0, 0xc7,0x90,0x27,0x86,0xe0,0x0, 0x1f,0xfd, -0x8c,0xf, 0xe0,0x4, 0xd0,0xa3,0x14,0x0, 0xe0,0x1, 0x1a,0x20,0xef,0xff,0xd6,0x4c, -0x8f,0x84,0x3c,0x6f,0xd8,0xc5,0xef,0xfa,0xde,0xcd,0x39,0xe8,0x24,0x4, 0xef,0xfa, -0xde,0x62,0x39,0xe8,0xe0,0x12,0x8f,0xe2,0xe2,0x0, 0xc7,0x90,0x27,0x86,0xe0,0x2, -0x1f,0xfc,0x8c,0xf, 0xe0,0x4, 0xd0,0x8a,0x14,0x0, 0xef,0xff,0xd6,0x35,0x8f,0x84, -0x3c,0x6f,0xd8,0xb7,0x21,0x8c,0xe0,0x12,0x8f,0xe2,0xe2,0x1, 0xc7,0xe8,0xe0,0x12, -0xaf,0xe2,0xe0,0x6, 0xd8,0x2d,0x14,0x0, 0xe0,0x0, 0xdb,0x89,0x3c,0x63,0xa, 0x61, -0x11,0x81,0x0, 0xfd,0x8, 0xb3,0xe0,0x4, 0x1f,0xb4,0xe0,0x12,0x8f,0x5f,0x39,0x6f, -0xe2,0x0, 0xc7,0x17,0x27,0xc, 0xe0,0x13,0x11,0xc4,0xdf,0x70,0x2c,0x8, 0x3c,0x63, -0xe0,0x6, 0xd7,0xfd,0xe0,0x1, 0xda,0x3b,0xda,0x34,0x24,0x78,0xe0,0x12,0x8f,0xe2, -0xe2,0x0, 0xc7,0x97,0x27,0x8c,0xe0,0x13,0x11,0x44,0xdf,0xa2,0x2c,0x8, 0x3c,0x62, -0xe0,0x6, 0xd7,0xed,0xe0,0x1, 0xda,0x2b,0xda,0x24,0x24,0x78,0x9, 0xe1,0xe0,0x4, -0x1f,0xb4,0xe0,0x12,0x8f,0x6f,0xe0,0x12,0x8c,0x5f,0x17,0x80,0xe0,0xd, 0x37,0x5f, -0xe6,0xff,0xce,0xfd,0x2e,0x90,0xe0,0xd, 0x34,0x5f,0xe6,0xff,0xce,0xfd,0x2e,0x8b, -0xc7,0x81,0xe2,0x0, 0xcf,0x83,0x1, 0xf3,0xe2,0x0, 0xc7,0x10,0x2f,0x4, 0xe6,0xfb, -0xcc,0x78,0x38,0x82,0x14,0x1, 0x0, 0xfe,0x8, 0xb4,0x3a,0x68,0xe0,0x1, 0xda,0x7, -0x39,0x68,0xdf,0xde,0x39,0xe8,0xdf,0xb7,0x22,0x8, 0x39,0x43,0xe2,0x1, 0xc1,0x7f, -0x21,0x4, 0xa, 0x21,0xe7,0xf3,0x0, 0xfd,0xa, 0x61,0xe0,0xb, 0x0, 0xf3,0xe0,0x3, -0x1f,0xa3,0xa7,0x8f,0x9f,0xbf,0xe6,0xff,0xcf,0xff,0x3c,0x6f,0xe4,0x0, 0xcc,0x1, -0x38,0x82,0x8, 0xb2,0xe0,0x3, 0x1f,0x9d,0xa1,0xf, 0xa7,0x82,0xe0,0x1, 0xcf,0x80, -0xbf,0x82,0xa7,0x92,0xe3,0xfe,0xc7,0x80,0x27,0x97,0x9f,0x92,0x17,0x1, 0xe7,0x3, -0xcf,0x9e,0xb7,0x92,0xa7,0x92,0xe2,0xc, 0xc7,0x80,0x27,0x85,0x9f,0x92,0xe7,0x2, -0xcf,0x9e,0xb7,0x92,0xe1,0xff,0x17,0xff,0xbf,0xb2,0xe7,0xfe,0x17,0x7f,0xa7,0x82, -0x3f,0xde,0xbf,0x82,0x9, 0x61,0x9f,0x12,0xe7,0x3, 0xcf,0x1f,0xb7,0x12,0x9f,0x12, -0xe7,0x2, 0xcf,0x1f,0xb7,0x12,0xe0,0x1, 0x9c,0x72,0xe2,0x1, 0xc4,0x7f,0xd6,0x3e, -0x0, 0xea,0xc, 0x39,0xc0,0x6c,0xe0,0x60,0x3c,0x8, 0xe0,0x60,0x3c,0x89,0x7c,0x5, -0xe0,0x60,0x3c,0xa, 0x7c,0x84,0x7c,0x3, 0xe0,0x60,0x3c,0x8c,0xe0,0x60,0x3c,0xb, -0x7c,0x82,0x7c,0x1, 0x3b,0x0, 0x3c,0x3, 0x64,0x5, 0x64,0x84,0xe0,0x60,0x3c,0x18, -0x64,0x3, 0xe0,0x60,0x3c,0x99,0xe0,0x60,0x3c,0x1a,0x64,0x82,0x64,0x1, 0xc0,0x14, -0xe0,0x60,0x3c,0x9c,0xe0,0x60,0x3c,0x1b,0xc, 0xa8,0x38,0x0, 0xc, 0x38,0xf, 0xbf, -0xc0,0x6c,0xe0,0x60,0x3c,0x8, 0xe0,0x60,0x3f,0x89,0x7c,0x5, 0xe0,0x60,0x3c,0xa, -0x7f,0x84,0x7c,0x3, 0xe0,0x60,0x3f,0x8c,0xe0,0x60,0x3c,0xb, 0x7f,0x82,0x7c,0x1, -0x3b,0x0, 0x17,0x82,0xe0,0x61,0x3f,0x91,0x3c,0x3, 0x64,0x5, 0x67,0x84,0xe0,0x60, -0x3c,0x18,0x64,0x3, 0xe0,0x60,0x3f,0x99,0x67,0x82,0xe0,0x60,0x3c,0x1a,0x64,0x1, -0xc0,0x14,0xe0,0x60,0x3f,0x9c,0xf, 0xaf,0xe0,0x60,0x3c,0x1b,0xc, 0x28,0x38,0x0, -0xc, 0x38,0xf, 0xbf,0xc0,0x6c,0xe0,0x60,0x3c,0x8, 0xe0,0x60,0x3f,0x89,0x7c,0x5, -0xe0,0x60,0x3c,0xa, 0x7f,0x84,0x7c,0x3, 0xe0,0x60,0x3f,0x8c,0xe0,0x60,0x3c,0xb, -0x7f,0x82,0x7c,0x1, 0x3b,0x0, 0xe0,0x0, 0x17,0xc0,0xe0,0x61,0x3f,0x91,0x3c,0x3, -0x64,0x5, 0x67,0x84,0xe0,0x60,0x3c,0x18,0x64,0x3, 0xe0,0x60,0x3f,0x99,0x67,0x82, -0xe0,0x60,0x3c,0x1a,0x64,0x1, 0xc0,0x14,0xe0,0x60,0x3f,0x9c,0xf, 0xaf,0xe0,0x60, -0x3c,0x1b,0xc, 0x28,0x38,0x0, 0xc, 0x39,0xc0,0x6c,0xe0,0x60,0x3c,0x8, 0xe0,0x60, -0x3c,0x89,0x7c,0x5, 0xe0,0x60,0x3c,0xa, 0x7c,0x84,0x7c,0x3, 0xe0,0x60,0x3c,0x8c, -0xe0,0x60,0x3c,0xb, 0x7c,0x82,0x7c,0x1, 0x3b,0x0, 0x3c,0x3, 0x64,0x5, 0x64,0x84, -0xe0,0x60,0x3c,0x18,0x64,0x3, 0xe0,0x60,0x3c,0x99,0xe0,0x60,0x3c,0x1a,0x64,0x82, -0x64,0x1, 0xc0,0x14,0xe0,0x60,0x3c,0x9c,0xe0,0x60,0x3c,0x1b,0xc, 0xa8,0x38,0x0, -0xc, 0x38,0xf, 0xbf,0xc0,0x6c,0xe0,0x60,0x3c,0x8, 0xe0,0x60,0x3f,0x89,0x7c,0x5, -0xe0,0x60,0x3c,0xa, 0x7f,0x84,0x7c,0x3, 0xe0,0x60,0x3f,0x8c,0xe0,0x60,0x3c,0xb, -0x7f,0x82,0x7c,0x1, 0x3b,0x0, 0xe0,0x2, 0x17,0x80,0xe0,0x61,0x3f,0x91,0x3c,0x3, -0x64,0x5, 0x67,0x84,0xe0,0x60,0x3c,0x18,0x64,0x3, 0xe0,0x60,0x3f,0x99,0x67,0x82, -0xe0,0x60,0x3c,0x1a,0x64,0x1, 0xc0,0x14,0xe0,0x60,0x3f,0x9c,0xf, 0xaf,0xe0,0x60, -0x3c,0x1b,0xc, 0x28,0x38,0x0, 0xc, 0x38,0xf, 0xbf,0xc0,0x6c,0xe0,0x60,0x3c,0x8, -0xe0,0x60,0x3f,0x89,0x7c,0x5, 0xe0,0x60,0x3c,0xa, 0x7f,0x84,0x7c,0x3, 0xe0,0x60, -0x3f,0x8c,0xe0,0x60,0x3c,0xb, 0x7f,0x82,0x7c,0x1, 0x3b,0x0, 0xe0,0x10,0x17,0x80, -0xe0,0x61,0x3f,0x91,0x3c,0x3, 0x64,0x5, 0x67,0x84,0xe0,0x60,0x3c,0x18,0x64,0x3, -0xe0,0x60,0x3f,0x99,0x67,0x82,0xe0,0x60,0x3c,0x1a,0x64,0x1, 0xc0,0x14,0xe0,0x60, -0x3f,0x9c,0xf, 0xaf,0xe0,0x60,0x3c,0x1b,0xc, 0x28,0x38,0x0, 0x8, 0xb1,0xe8,0x0, -0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, 0x78,0x85,0xe0,0x60, -0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60,0x38,0x8b,0x7c,0x2, -0x78,0x81,0x3b,0x0, 0xde,0xc7,0x17,0xa0,0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85, -0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60,0x3c,0x19,0x64,0x2, 0xe0,0x60, -0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60,0x3c,0x1c,0xf0,0x0, 0xb, 0xa8,0xe0,0x60, -0x38,0x9b,0x8, 0xa1,0x38,0x0, 0x8, 0xb1,0xe8,0x0, 0xc, 0x37,0xc0,0x6c,0xe0,0x60, -0x38,0x88,0xe0,0x60,0x3c,0x9, 0x78,0x85,0xe0,0x60,0x38,0x8a,0x7c,0x4, 0x78,0x83, -0xe0,0x60,0x3c,0xc, 0xe0,0x60,0x38,0x8b,0x7c,0x2, 0x78,0x81,0x3b,0x0, 0xe0,0x6, -0xd6,0x4e,0xe0,0x3, 0x1f,0xf9,0x17,0x3, 0xa7,0x8f,0xbf,0x4f,0xe0,0x8, 0x17,0x80, -0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83, -0xe0,0x60,0x3c,0x19,0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60, -0x3c,0x1c,0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, 0x8, 0xb1, -0xe8,0x0, 0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, 0x78,0x85, -0xe0,0x60,0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60,0x38,0x8b, -0x7c,0x2, 0x78,0x81,0x3b,0x0, 0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x1, 0x9f,0x7f, -0xe6,0xf4,0xcf,0x7e,0x2f,0x19,0x17,0x90,0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85, -0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60,0x3c,0x19,0x64,0x2, 0xe0,0x60, -0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60,0x3c,0x1c,0xf0,0x0, 0xb, 0xa8,0xe0,0x60, -0x38,0x9b,0x8, 0xa1,0x38,0x0, 0xe0,0x1, 0x9f,0x7f,0x16,0x80,0xe7,0xb, 0xcf,0x1d, -0xe0,0x1, 0xb7,0x7f,0xd5,0x18,0xe2,0x0, 0xcc,0x10,0x1, 0xfd,0x0, 0xdd,0xc4,0x7e, -0xe2,0x0, 0xcc,0xd, 0xe0,0x1, 0x2, 0xee,0xeb,0x72,0x7f,0xb2,0xe9,0xff,0xc7,0xfd, -0x34,0x21,0x3c,0x1f,0x9c,0x8, 0x3c,0x1f,0x3c,0x2, 0x0, 0x1c,0x0, 0x74,0x1, 0xc6, -0x1, 0xc6,0x1, 0xc6,0x0, 0xb0,0x1, 0xc6,0x1, 0x1a,0x1, 0xc6,0x1, 0xc6,0x1, 0xc6, -0x1, 0x5a,0x1, 0xc6,0x1, 0x96,0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x4, 0x9f,0x1f, -0xe6,0xfd,0xcf,0x7e,0xe0,0x1, 0x27,0x4e,0xe0,0x3, 0x1f,0xd, 0xa7,0xe, 0xe0,0x2, -0x9f,0x3e,0xe6,0xfd,0xcf,0x7e,0xe0,0x1, 0x27,0x45,0xe0,0x3, 0x1f,0x1d,0xa6,0x8e, -0x17,0x0, 0x9e,0x5d,0xe7,0x2, 0xce,0x1e,0xb6,0x5d,0xe0,0x1, 0x9e,0xbf,0xe7,0xd, -0xce,0x9e,0xe0,0x1, 0xb6,0xbf,0xe0,0x1, 0x9e,0xbf,0xe7,0xa, 0xce,0x9e,0xe0,0x3, -0x1f,0x7d,0xe0,0x1, 0xb6,0xbf,0x9f,0x8e,0xcf,0xa7,0xb7,0x8e,0x38,0x82,0xe0,0x3, -0x1f,0xa3,0xa7,0x8f,0xe0,0x4, 0x9f,0x1f,0xe6,0xfc,0xcf,0x7e,0xe0,0x1, 0x27,0x22, -0xe0,0x3, 0x1f,0xd, 0xa7,0xe, 0xe0,0x2, 0x9f,0x3e,0xe6,0xfc,0xcf,0x7e,0xe0,0x1, -0x27,0x19,0xe0,0x1, 0x9f,0x3f,0x16,0x80,0xe7,0xc, 0xcf,0x1d,0xe0,0x1, 0xb7,0x3f, -0xe0,0x3, 0x1f,0x7d,0x9f,0x8e,0xcf,0x88,0x0, 0xe1,0xe0,0x3, 0x1f,0xa3,0xa7,0xf, -0xe0,0x4, 0x9f,0x9e,0xe6,0xf8,0xcf,0xff,0xe0,0x1, 0x27,0x84,0xe0,0x3, 0x1f,0x8d, -0xa7,0x8f,0xe0,0x2, 0x9e,0xbf,0xe6,0xf8,0xce,0xfd,0xe0,0x0, 0x26,0xfb,0xe0,0xab, -0x16,0xaa,0xe0,0x1, 0xb6,0x9f,0x16,0x80,0x9e,0x1f,0x15,0x81,0xe7,0x6, 0xce,0x1d, -0xb6,0x1f,0xe0,0x1, 0x9e,0x3f,0xe7,0x0, 0xce,0x1b,0xe0,0x1, 0xb6,0x3f,0xe0,0x4, -0x9f,0x9e,0xe7,0x7, 0xcf,0x9d,0xe0,0x4, 0xb7,0x9e,0xe0,0x1, 0x9f,0xbe,0xe3,0xf8, -0xc7,0x80,0xe0,0x1, 0xb7,0xbe,0xe0,0x3, 0x1f,0x7d,0x9f,0x8e,0xe0,0x1, 0xcf,0xc0, -0xe7,0xff,0x0, 0xad,0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x4, 0x9f,0x1f,0xe6,0xf6, -0xcf,0x7e,0xe0,0x0, 0x27,0x4f,0xe0,0x3, 0x1f,0xd, 0xa7,0xe, 0xe0,0x2, 0x9f,0x3e, -0xe6,0xf6,0xcf,0x7e,0xe0,0x0, 0x27,0x46,0xe0,0x1, 0x9f,0x3f,0x16,0x80,0xe7,0xb, -0xcf,0x1d,0xe0,0x1, 0xb7,0x3f,0xe0,0x3, 0x1f,0x7d,0x9f,0x8e,0xe0,0x4, 0xcf,0x80, -0xe7,0xff,0x0, 0x8d,0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x4, 0x9f,0x1f,0xe6,0xf2, -0xcf,0x7e,0x27,0x2f,0xe0,0x3, 0x1f,0xd, 0xa7,0xe, 0xe0,0x2, 0x9f,0x3e,0xe6,0xf2, -0xcf,0x7e,0x27,0x27,0xe0,0x1, 0x9f,0x3f,0x16,0x80,0xe7,0xe, 0xcf,0x1d,0xe0,0x1, -0xb7,0x3f,0xe0,0x3, 0x1f,0x7d,0x9f,0x8e,0xe0,0x40,0xcf,0x80,0xe7,0xfe,0x0, 0xef, -0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x4, 0x9f,0x9f,0x37,0xcf,0x27,0x92,0xe0,0x3, -0x1f,0x8d,0xa7,0x8f,0xe0,0x2, 0x9f,0xbf,0x37,0xcf,0x27,0x8b,0x8, 0xb1,0xe0,0x0, -0xdd,0x70,0xe0,0x3, 0x1f,0x7d,0x9f,0x8e,0xe1,0x0, 0xcf,0x83,0xb7,0x8e,0x8, 0xe1, -0x38,0x82,0x8, 0xb1,0xe8,0x0, 0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60, -0x3c,0x9, 0x78,0x85,0xe0,0x60,0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, -0xe0,0x60,0x38,0x8b,0x7c,0x2, 0x78,0x81,0x3b,0x0, 0x14,0xf, 0xde,0xf9,0xe1,0x0, -0x17,0x80,0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98, -0x60,0x83,0xe0,0x60,0x3c,0x19,0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14, -0xe0,0x60,0x3c,0x1c,0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, -0x8, 0xb1,0xe8,0x0, 0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, -0x78,0x85,0xe0,0x60,0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60, -0x38,0x8b,0x7c,0x2, 0x78,0x81,0x3b,0x0, 0x14,0x2, 0xde,0xca,0x17,0x84,0xe0,0x61, -0x3f,0x91,0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60, -0x3c,0x19,0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60,0x3c,0x1c, -0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, 0x8, 0xb1,0xe8,0x0, -0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, 0x78,0x85,0xe0,0x60, -0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60,0x38,0x8b,0x7c,0x2, -0x78,0x81,0x3b,0x0, 0x14,0x7, 0xde,0x9c,0xe0,0x1, 0x17,0x80,0xe0,0x61,0x3f,0x91, -0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60,0x3c,0x19, -0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60,0x3c,0x1c,0xf0,0x0, -0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, 0x8, 0xb1,0xe8,0x0, 0xc, 0x37, -0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, 0x78,0x85,0xe0,0x60,0x38,0x8a, -0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60,0x38,0x8b,0x7c,0x2, 0x78,0x81, -0x3b,0x0, 0x14,0x9, 0xde,0x6d,0xe0,0x3, 0x1f,0x54,0x9f,0x8e,0xc7,0x81,0xb7,0x8e, -0xe0,0x4, 0x1f,0xdf,0x8f,0xf, 0x27,0x4, 0x8f,0xf, 0xc7,0x7f,0xaf,0xf, 0x8f,0x8f, -0x2f,0x88,0xe0,0x3, 0x1f,0x90,0x16,0x81,0x9f,0xf, 0xe7,0x3, 0xcf,0x1d,0xb7,0xf, -0xe0,0x3, 0x1f,0x7f,0x9f,0x8e,0xc7,0x81,0xb7,0x8e,0xe0,0x3, 0x1f,0x81,0x9f,0xf, -0x27,0x4, 0x9f,0xf, 0xc7,0x7f,0xb7,0xf, 0xe1,0xff,0x16,0xff,0xe0,0x5, 0x1f,0xa, -0x9f,0x8e,0x3f,0xfd,0x1, 0x3, 0xc7,0x81,0xb7,0x8e,0xe0,0x0, 0xdc,0x10,0xe0,0x4, -0x17,0x80,0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98, -0x60,0x83,0xe0,0x60,0x3c,0x19,0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14, -0xe0,0x60,0x3c,0x1c,0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, -0x8, 0xb1,0xe8,0x0, 0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x3c,0x9, -0x78,0x85,0xe0,0x60,0x38,0x8a,0x7c,0x4, 0x78,0x83,0xe0,0x60,0x3c,0xc, 0xe0,0x60, -0x38,0x8b,0x7c,0x2, 0x78,0x81,0x3b,0x0, 0x14,0xd, 0xde,0x12,0xe0,0x0, 0x1f,0xa7, -0xa7,0x8f,0xa7,0xef,0x27,0x83,0x14,0x0, 0xd6,0x7d,0xe0,0x40,0x17,0x80,0xe0,0x61, -0x3f,0x91,0x38,0x83,0x60,0x85,0x64,0x4, 0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60, -0x3c,0x19,0x64,0x2, 0xe0,0x60,0x38,0x9a,0x60,0x81,0xc0,0x14,0xe0,0x60,0x3c,0x1c, -0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x38,0x9b,0x8, 0xa1,0x38,0x0, 0x8, 0xb4,0xe8,0x0, -0xc, 0x37,0xc0,0x6c,0xe0,0x60,0x38,0x88,0xe0,0x60,0x39,0x9, 0x78,0x85,0xe0,0x60, -0x38,0x8a,0x79,0x4, 0x78,0x83,0xe0,0x60,0x39,0xc, 0xe0,0x60,0x38,0x8b,0x79,0x2, -0x78,0x81,0x3b,0x0, 0x14,0x3, 0xdd,0xdc,0xe0,0x2, 0x1f,0xb4,0x12,0x0, 0xa1,0x8f, -0x14,0x3, 0x9f,0xf3,0xe7,0x0, 0xcf,0x94,0xb7,0xf3,0xe0,0x0, 0x1f,0x83,0xa1,0xf, -0x9f,0xf2,0xe7,0x0, 0xcf,0x94,0xb7,0xf2,0xe0,0x0, 0xde,0xd5,0x9f,0xf3,0x17,0x1, -0xe7,0x0, 0xcf,0x9e,0xb7,0xf3,0x9f,0xf2,0xe7,0x0, 0xcf,0x9e,0xb7,0xf2,0xe0,0x3, -0x1f,0xa3,0xa7,0x8f,0xe0,0x1, 0x9f,0xff,0xe6,0xf2,0xcf,0xff,0x27,0x84,0x3c,0x64, -0xef,0xff,0xd0,0x2d,0x17,0x88,0xe0,0x61,0x3f,0x91,0x38,0x83,0x60,0x85,0x61,0x4, -0xe0,0x60,0x38,0x98,0x60,0x83,0xe0,0x60,0x39,0x19,0xe0,0x60,0x38,0x9a,0x61,0x2, -0x60,0x81,0xc0,0x14,0xf0,0x0, 0xb, 0xa8,0xe0,0x60,0x39,0x1c,0xe0,0x60,0x38,0x9b, -0xa, 0x21,0x38,0x0, 0x17,0x80,0xe0,0x6a,0x3f,0x90,0xe0,0x6a,0x3f,0x91,0xe0,0x6a, -0x3f,0x92,0xe0,0x6a,0x3f,0x95,0xe0,0x6a,0x3f,0x97,0xe0,0x6a,0x3f,0x9f,0xe0,0x6a, -0x3f,0x9b,0xe0,0x6a,0x3f,0x9e,0x17,0x81,0xe0,0x6a,0x3f,0x9d,0xe0,0x6a,0x3f,0x99, -0xe0,0x6a,0x3f,0x93,0x17,0x83,0xe0,0x6a,0x3f,0x94,0x17,0x82,0xe0,0x6a,0x3f,0x96, -0xe0,0x6a,0x3f,0x98,0xe0,0x6a,0x3f,0x9a,0x38,0x82,0x8, 0xb1,0xef,0xfa,0xd7,0xe9, -0xe0,0x60,0x3f,0x87,0xe0,0x2, 0x1f,0x37,0xe0,0x1, 0xbf,0xf, 0xe0,0x4, 0x1f,0x5c, -0xe0,0x1, 0xbf,0x1f,0xe0,0x2, 0x1f,0x39,0xe0,0x1, 0xbf,0x2f,0xe0,0x0, 0x1f,0x31, -0xe0,0x1, 0xbf,0x3f,0xe0,0x4, 0x1f,0x1, 0xe0,0x1, 0xbf,0x4f,0xe0,0x2, 0x1f,0x32, -0xe0,0x1, 0xbf,0x5f,0xe0,0x3, 0x1f,0x5c,0xe0,0x1, 0xbf,0x6f,0xe0,0x2, 0x1f,0x7f, -0xe0,0x1, 0xbf,0x7f,0xe0,0x3, 0x1f,0x45,0xe0,0x2, 0xbf,0xf, 0xe0,0x1, 0x1f,0x10, -0xe0,0x2, 0xbf,0x1f,0xe0,0x4, 0x1f,0x0, 0xe0,0x2, 0xbf,0x2f,0xe0,0x3, 0x1f,0x8, -0xe0,0x2, 0xbf,0x6f,0xe0,0x0, 0x1f,0x78,0xe0,0x2, 0xbf,0x5f,0xe0,0x3, 0x1f,0x3, -0xe0,0x2, 0xbf,0x3f,0xe0,0x4, 0x1f,0x74,0xe0,0x2, 0xbf,0x7f,0x8, 0xe1,0xe0,0x61, -0x3e,0x2, 0xe0,0x61,0x3f,0x82,0x17,0x77,0x3f,0xde,0xe0,0x61,0x3f,0x92,0xe0,0x3, -0x1f,0x90,0x9f,0xf, 0x9e,0x8f,0x37,0x4f,0xe7,0x8, 0xce,0x9e,0xb6,0x8f,0x9f,0xf, -0x37,0x4f,0x27,0x6, 0x9f,0xf, 0x16,0x80,0xe7,0xf, 0xcf,0x1d,0xb7,0xf, 0xe0,0x61, -0x3e,0x12,0x38,0x82,0x8, 0xb7,0xe0,0x2, 0x1f,0xee,0x99,0xf, 0xe6,0xf4,0xc9,0x72, -0xe0,0x1, 0x21,0x18,0xe0,0x4, 0x19,0x67,0xe0,0x4, 0x1a,0x34,0x8a,0x82,0xe0,0x2, -0x19,0xf8,0x3c,0x65,0xe4,0x0, 0xc4,0x7c,0x8d,0x54,0x3c,0xe8,0xe0,0x2, 0xc4,0xf4, -0x35,0x21,0x3c,0x93,0x3c,0x13,0xef,0xfa,0xd7,0x7, 0x3c,0x65,0xef,0xfb,0xd5,0x83, -0xe0,0x2, 0x1f,0x9b,0x8b,0xd4,0xe0,0x2, 0x1f,0x1a,0x8a,0xf, 0xe0,0x3, 0x1e,0x2, -0xe0,0xf, 0x32,0x28,0x8a,0xe, 0xe0,0x2, 0x1e,0xca,0x3a,0x4f,0xe0,0x2, 0x1f,0xc3, -0x15,0x80,0xe0,0x1, 0x92,0xbf,0x8f,0x82,0xea,0x1e,0x7c,0xa6,0xe4,0x0, 0xc7,0xfc, -0x88,0x8c,0xe0,0x2, 0xc7,0xf2,0x9c,0xd, 0xf0,0x3, 0x1b,0xce,0xe0,0x41,0x3b,0x45, -0x3f,0x93,0x39,0x6b,0x3d,0x6b,0xf0,0x0, 0x13,0x1, 0x3b,0xfa,0x1, 0x99,0x25,0x83, -0xa8,0x8c,0xb4,0xd, 0xea,0x1e,0x7f,0xa4,0xe0,0x0, 0x21,0x61,0x8f,0xf, 0xe2,0x0, -0xcf,0x1, 0xe0,0x0, 0x2, 0xdc,0xc7,0x1, 0xaf,0xf, 0x16,0x81,0xe0,0x3, 0x1f,0x90, -0x9f,0xf, 0xe7,0x3, 0xcf,0x1d,0xb7,0xf, 0x11,0x0, 0xe0,0x0, 0x0, 0xc3,0xe8,0x9, -0x8f,0x77,0xe0,0x80,0x91,0x9f,0xe2,0x0, 0xc7,0x2, 0x27,0x12,0xe8,0xa, 0x8f,0x7, -0x27,0xf, 0x3f,0x6a,0xc7,0x5f,0xe2,0x1, 0xc7,0x7f,0xe2,0x0, 0xcf,0x1, 0x2, 0x88, -0xe2,0x2, 0xc9,0xac,0x5, 0x5, 0x3c,0x64,0xe8,0x40,0x3d,0xe6,0x10,0x80,0x3a,0xf3, -0x5, 0x2a,0x39,0xf6,0xe8,0x40,0x3f,0x66,0xe0,0x6e,0x3a,0x22,0x39,0x6e,0xe0,0x80, -0x9f,0x19,0x3f,0x13,0xe6,0x50,0xcf,0x1e,0xb7,0x9, 0x21,0x21,0x3a,0xfe,0x2, 0x1d, -0x25,0x83,0xa8,0x8c,0xb4,0xd, 0x16,0x81,0xe0,0x3, 0x1f,0x90,0xea,0x1e,0x7c,0x28, -0x9f,0xf, 0x14,0x80,0xe7,0x3, 0xcf,0x1d,0xb7,0xf, 0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8d,0x5f,0x35,0x3d,0xef,0xfa,0xd6,0xc0,0xea,0x1e,0x7f,0xa4,0x17,0x0, 0xaf,0xf, -0x3c,0x62,0xb, 0xe1,0x11,0x1, 0x0, 0xdc,0x3b,0x7e,0x3, 0x63,0x3f,0x6a,0xc7,0x1, -0x3d,0x6e,0xe2,0x1, 0xc5,0x7f,0xe7,0xff,0x0, 0x9a,0x17,0x0, 0xaf,0xf, 0xea,0x1e, -0x7c,0x28,0xe0,0x2, 0x1f,0xb1,0x14,0x80,0xe0,0xe, 0x8d,0x5f,0x35,0x21,0xef,0xfa, -0xd6,0xa3,0xe7,0xff,0x0, 0xa3,0xe0,0x4, 0x1e,0xf7,0x17,0x0, 0x3d,0xee,0x3f,0xed, -0xe0,0xc, 0x37,0x22,0xc7,0x1, 0x3e,0x1d,0xe2,0x2, 0xcf,0x0, 0xbd,0x8c,0x1, 0xf9, -0xe0,0x3, 0x1f,0x19,0xbf,0xd, 0xe0,0x3, 0x1f,0x37,0xe0,0x5, 0x1e,0xbe,0xa6,0xe, -0x17,0x1, 0x3e,0x1d,0xe0,0xb, 0x3e,0x1e,0xe0,0xd, 0x37,0x22,0xc7,0x1, 0x3e,0x9f, -0xe2,0x0, 0xcf,0x6f,0xbd,0x8d,0x1, 0xf7,0xe0,0x3, 0x1e,0xd7,0xe0,0x3, 0x1d,0x4d, -0xe0,0x1a,0xbe,0xbf,0xe0,0x1, 0x17,0x0, 0x3e,0x6d,0xe0,0x1a,0xbe,0xcf,0xe0,0xb, -0x3d,0x1e,0xe0,0xd, 0x37,0x22,0xc7,0x1, 0x3e,0x9f,0xe2,0x1, 0xcf,0x70,0xbd,0x8d, -0x1, 0xf7,0xe0,0x13,0xa7,0x7f,0xe8,0x0, 0xcf,0x2, 0xe0,0x13,0xbf,0x7f,0xe0,0x14, -0xa7,0xf, 0xe8,0x0, 0xcf,0x2, 0xe0,0x14,0xbf,0xf, 0xe0,0x14,0xa7,0x1f,0xe8,0x0, -0xcf,0x2, 0xe0,0x14,0xbf,0x1f,0xe0,0x14,0xa7,0x2f,0xe8,0x0, 0xcf,0x2, 0xe0,0x14, -0xbf,0x2f,0xe0,0x14,0xa7,0x3f,0xe8,0x0, 0xcf,0x2, 0xe0,0x14,0xbf,0x3f,0xe0,0x14, -0xa7,0x6f,0xe8,0x0, 0xcf,0x2, 0xe0,0x14,0xbf,0x6f,0xe0,0x15,0xa7,0xf, 0xe8,0x0, -0xcf,0x2, 0xe0,0x15,0xbf,0xf, 0xe0,0x15,0xa7,0x1f,0xe8,0x0, 0xcf,0x2, 0xe0,0x15, -0xbf,0x1f,0xe0,0x15,0xa7,0x2f,0xe8,0x0, 0xcf,0x2, 0xe0,0x15,0xbf,0x2f,0xe0,0x15, -0xa7,0x6f,0xe8,0x0, 0xcf,0x2, 0xe0,0x15,0xbf,0x6f,0xe0,0x15,0xa7,0x7f,0xe8,0x0, -0xcf,0x2, 0xe0,0x15,0xbf,0x7f,0xe0,0x16,0xa7,0x1f,0xe8,0x0, 0xcf,0x2, 0xe0,0x16, -0xbf,0x1f,0xe0,0x4, 0x1f,0x8, 0xe0,0x1f,0xbe,0x4f,0xe0,0x1f,0xbf,0x6f,0x38,0x82, -0x8, 0xb3,0xe0,0x3, 0x1f,0x8d,0x11,0x81,0xa7,0x8f,0x9f,0x5f,0xe7,0x9, 0xcf,0x13, -0xb7,0x5f,0xe0,0x3, 0x1f,0x9d,0xa1,0xf, 0xe0,0x4, 0x1f,0xf6,0xe0,0x3, 0x9f,0x72, -0xe6,0xef,0xcf,0x9f,0xe7,0x0, 0xcf,0x7f,0xe0,0x3, 0xb7,0x72,0xdf,0x65,0xe0,0x3, -0x1f,0x23,0xe0,0x2, 0x1e,0xb1,0xa7,0xe, 0xe0,0x2, 0x8f,0x8d,0xe0,0x2, 0x9e,0x1e, -0xe6,0xfe,0xcd,0xff,0xe7,0xe, 0xce,0x1f,0xe0,0x2, 0xb6,0x1e,0x37,0xc7,0xe0,0x2, -0x9e,0x1e,0xe0,0x2, 0x8e,0xad,0xe7,0xf, 0xce,0x1b,0xe0,0x2, 0xb6,0x1e,0xe1,0xff, -0x17,0x7f,0xb9,0x82,0xbf,0x32,0x17,0x8, 0xbf,0x22,0x17,0x0, 0xe0,0x1, 0x9e,0x12, -0xe7,0x9, 0xce,0x1e,0xe0,0x1, 0xb6,0x12,0xe0,0x1, 0x9e,0x12,0xe7,0x8, 0xce,0x1f, -0xe0,0x1, 0xb6,0x12,0xe0,0x1, 0x9f,0x92,0xe7,0x20,0xcf,0x8d,0xe0,0x1, 0xb7,0x92, -0xe0,0x1, 0x16,0xef,0xe0,0x3, 0x9f,0x92,0xe7,0x20,0xcf,0x8d,0xe0,0x3, 0xb7,0x92, -0xe0,0x1, 0x9f,0xb2,0xe7,0x0, 0xcf,0xae,0xe0,0x1, 0xb7,0xb2,0xe0,0x61,0x3f,0x82, -0xcf,0xa0,0xe0,0x61,0x3f,0x92,0x9, 0xe1,0xeb,0xff,0xcf,0xfc,0x3c,0x9f,0xe0,0x4, -0x1f,0xf7,0xe0,0xe, 0x34,0x22,0x3f,0x1f,0xa6,0x8e,0xc4,0x1, 0xeb,0xff,0xc6,0xfe, -0xbe,0x8e,0x34,0x22,0xa6,0x8e,0x3c,0x1f,0x3e,0xc9,0xbe,0x8e,0xa7,0x88,0xeb,0xff, -0xc7,0xfe,0xbf,0x88,0xa7,0x88,0x3c,0xcf,0xbc,0x88,0x38,0x82,0xe0,0x3, 0x1f,0x9a, -0x8f,0x8f,0xe6,0xf9,0xcf,0xdf,0x2c,0x9, 0x2f,0x83,0xe7,0xfd,0x0, 0xfe,0xe2,0x0, -0xcf,0x84,0x1, 0x83,0xe7,0x8f,0x0, 0xec,0x38,0x82,0x8, 0xb3,0xe0,0x4, 0x1f,0x77, -0xe0,0xd, 0x34,0x22,0x3f,0x1d,0xa1,0xe, 0xe0,0x3, 0x1f,0x1d,0xa7,0xe, 0xe0,0x1, -0x9f,0x7e,0xe6,0x70,0xcf,0xe, 0xe2,0x0, 0xcf,0x0, 0x3, 0x4, 0x9, 0xa1,0xe0,0x6c, -0x0, 0xc7,0x39,0xe8,0xdf,0xdc,0xe3,0xff,0x17,0xff,0x39,0x5f,0xea,0x0, 0xcf,0x84, -0x39,0x1f,0x8c,0x82,0x3c,0x63,0x9, 0xa1,0xe0,0x6c,0x0, 0xc9,0xe0,0x0, 0x1f,0xf5, -0xe0,0x5, 0x9f,0xff,0xe6,0xf9,0xcf,0x9f,0x24,0x8, 0x34,0xa1,0x3d,0x1f,0x3c,0x9a, -0x3c,0x69,0xe2,0x1, 0xc4,0x7f,0x38,0x82,0x3c,0x9f,0x0, 0xfb,0xe0,0x43,0x3f,0x88, -0xe2,0x0, 0xcf,0x80,0x4, 0x9, 0x24,0x88,0xe0,0x5, 0x1f,0x91,0x34,0x21,0xe6,0xcf, -0xcc,0x89,0x3c,0x1f,0xb4,0x88,0x38,0x82,0xe0,0x4, 0x1f,0xda,0x17,0x0, 0xaf,0x1f, -0xaf,0xf, 0xaf,0x2f,0x38,0x82,0xe0,0x61,0x3e,0x82,0xe0,0x61,0x3f,0x82,0x17,0x77, -0x3f,0xde,0xe0,0x61,0x3f,0x92,0xe0,0x61,0x3f,0x82,0xe7,0xbf,0x17,0x7f,0x3f,0xde, -0xe0,0x61,0x3f,0x92,0xe0,0x4, 0x1f,0x5a,0x8f,0x8e,0xe0,0xc, 0x3f,0x1f,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x82,0xac,0x3c,0x5, 0x82,0x17,0x80,0xaf,0x8e, -0x8f,0xae,0xe2,0x0, 0xcf,0x82,0x2, 0x84,0x8f,0xae,0xc7,0x81,0xaf,0xae,0xe0,0x61, -0x3e,0x92,0x38,0x82,0xe0,0x61,0x3e,0x2, 0xe0,0x61,0x3f,0x82,0x17,0x77,0x3f,0xde, -0xe0,0x61,0x3f,0x92,0xe0,0x61,0x3f,0x82,0xe7,0xbf,0x17,0x7f,0x3f,0xde,0xe0,0x61, -0x3f,0x92,0xe0,0x4, 0x1f,0x5a,0x8f,0x9e,0x8e,0xae,0x26,0x93,0x8e,0xae,0xc6,0xff, -0xae,0xae,0xe0,0xd, 0x3f,0x1f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x8e,0xbd,0xe2,0x0, -0xcf,0x82,0x3c,0x6d,0x5, 0x82,0x17,0x80,0xaf,0x9e,0xe0,0x61,0x3e,0x12,0x38,0x82, -0x14,0x10,0x0, 0xfc,0xe0,0x4, 0x1f,0xc7,0x8f,0xf, 0xe2,0x0, 0xcf,0xf, 0x2, 0x8d, -0x8f,0xf, 0x3c,0x6e,0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0x8f,0xf, 0xe2,0x0, 0xcf,0x10, -0x5, 0x83,0x17,0x10,0xaf,0xf, 0x38,0x82,0x14,0x10,0x0, 0xfe,0xe2,0x0, 0xcc,0x1, -0xe6,0xfa,0xcf,0x88,0x2, 0x87,0x34,0xa1,0x3d,0x19,0x3d,0x1f,0x3f,0xea,0xe2,0x1, -0xc7,0xff,0x3c,0x6f,0x38,0x82,0xea,0x1f,0x7f,0xa7,0x8f,0xf, 0x3c,0x6e,0x8f,0xf, -0xc7,0x1, 0xaf,0xf, 0x8f,0xf, 0x27,0x3, 0x17,0x0, 0xaf,0xf, 0x38,0x82,0xea,0x1f, -0x7f,0xa4,0x3f,0x98,0x8f,0xf, 0x3c,0x6e,0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0x8f,0xf, -0x27,0x3, 0x17,0x0, 0xaf,0xf, 0x38,0x82,0x8, 0xb6,0x11,0x0, 0xe0,0x4, 0x19,0xef, -0xe0,0x4, 0x1b,0x47,0x12,0x1, 0x3a,0xe2,0xe2,0x0, 0xc9,0x0, 0x3f,0xe4,0xe0,0x6f, -0x39,0xa2,0x3c,0x6f,0xe0,0x2, 0x8f,0xa3,0xe2,0x1, 0xc4,0x7f,0xe2,0x0, 0xcf,0x81, -0x1, 0x14,0x4, 0x8a,0xe2,0x0, 0xcf,0x82,0x1, 0x10,0xc1,0x1, 0xe2,0x0, 0xc9,0x3, -0xc1,0x93,0x1, 0xeb,0xb, 0x61,0x3d,0x65,0x14,0x80,0xdf,0xb9,0x3f,0xe2,0xc7,0x84, -0x37,0xa1,0x3f,0x96,0xb4,0xf, 0x0, 0xf2,0x3d,0x65,0x3c,0xe4,0x0, 0xf7,0x8, 0xb1, -0xea,0x1f,0x7f,0xa8,0x17,0x0, 0xaf,0xf, 0xea,0x1f,0x7f,0xa7,0xaf,0xf, 0xea,0x1f, -0x7f,0xa4,0xaf,0xf, 0xaf,0x1f,0xaf,0x2f,0xdf,0x38,0xe0,0x4, 0x1c,0x47,0xe0,0x1, -0x15,0x2e,0x14,0x80,0xef,0xfa,0xd4,0x88,0xe0,0x3, 0x1f,0x8d,0x16,0x81,0xa7,0x8f, -0x16,0x2, 0x9f,0x5f,0xe7,0x4, 0xcf,0x1d,0xb7,0x5f,0xe0,0x0, 0x1f,0xa7,0xa7,0xf, -0x17,0x99,0xbf,0x8e,0xe0,0x5, 0x1f,0x90,0xe6,0xcf,0xcf,0x8f,0xe0,0x1, 0xb7,0xbe, -0xe1,0xff,0x17,0xff,0xbf,0xfe,0x17,0x80,0xe0,0x1, 0xbf,0x8e,0xe0,0x3, 0xbf,0x9e, -0xe0,0x7, 0x9e,0xbe,0xe7,0x0, 0xce,0xac,0xe0,0x7, 0xb6,0xbe,0xe0,0x5, 0x1e,0xbf, -0xe0,0x4, 0x1f,0x55,0xe0,0x5, 0x1e,0x11,0xbe,0x8e,0xe0,0x4, 0x1e,0xd4,0xe6,0xcf, -0xce,0x8d,0xe0,0xe, 0x37,0xa1,0xc7,0x81,0x3f,0x1c,0xe2,0x1, 0xcf,0x80,0xb6,0x8e, -0x1, 0xf9,0x8, 0xe1,0x8, 0xb5,0xe0,0x0, 0x1f,0xa7,0x11,0x80,0xa2,0xf, 0xe0,0x4, -0x19,0x47,0xe0,0x1, 0xb9,0x84,0x12,0x81,0xa9,0x82,0xdf,0x45,0xac,0x12,0x3f,0xe3, -0xc7,0x84,0x37,0xa1,0x3f,0x92,0x9f,0xf, 0x3f,0xe8,0xc7,0x89,0x37,0xa2,0x3f,0x94, -0xbf,0xf, 0xe0,0x8, 0x32,0xb8,0xe0,0x1, 0xa7,0x84,0xc1,0x81,0x3c,0x4f,0xe2,0x0, -0xc9,0x83,0xe0,0x1, 0xbc,0x4, 0x1, 0x95,0xdf,0x2e,0xe2,0x0, 0xcc,0xf, 0x2, 0x8e, -0x3f,0xe8,0xac,0x22,0xc7,0x89,0x9f,0x32,0x37,0xa2,0x3f,0x94,0xbf,0xf, 0x32,0xb8, -0xe0,0x1, 0xa7,0x84,0x3a,0xcf,0xe0,0x1, 0xba,0x84,0x8f,0x82,0xaf,0xb2,0xa, 0xe1, -0xdf,0x1a,0x0, 0xd6,0x8, 0xb2,0xe0,0x4, 0x1d,0xc7,0xe0,0x4, 0x1e,0xef,0xe0,0x0, -0x1f,0x27,0x8f,0x9b,0xe0,0x2, 0x8c,0x2d,0xe0,0x4, 0x88,0xdd,0xa7,0xe, 0x16,0x0, -0x3c,0xeb,0x15,0x1, 0xe2,0x0, 0xcf,0x8f,0x2, 0x9b,0x3c,0x71,0x1, 0x82,0x26,0x6, -0xe0,0x2, 0x8d,0xad,0xe2,0x0, 0xcd,0x84,0x1, 0xad,0x3d,0xec,0xc5,0x84,0x35,0xa1, -0x3d,0x99,0x99,0xb, 0x3d,0xef,0xc5,0x89,0x35,0xa2,0x3d,0x9e,0xb9,0xb, 0xe0,0xb, -0x35,0x3f,0xe0,0x1, 0xa1,0xe, 0xe3,0xb, 0x39,0x5b,0xe0,0x1, 0xbd,0x8e,0xc6,0x1, -0xe2,0x0, 0xce,0x3, 0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xc6,0x93,0x1, 0xdc,0x8f,0xa9, -0xe2,0x0, 0xcf,0x8f,0x3e,0xef,0x2, 0x8d,0xc7,0x89,0x9e,0x39,0x37,0xa2,0x3f,0x9e, -0xbe,0xf, 0x17,0x81,0xe0,0x1, 0xa6,0xe, 0x37,0xbd,0x3f,0xcc,0xe0,0x1, 0xbf,0x8e, -0x9, 0x61,0x3d,0xec,0xc5,0x84,0x35,0xa1,0x3d,0x99,0x99,0xb, 0x3d,0xef,0xc5,0x89, -0x35,0xa2,0x3d,0x9e,0xb9,0xb, 0xe0,0xb, 0x35,0x3f,0xe0,0x1, 0xa1,0xe, 0x3d,0xc2, -0x0, 0xd5,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xe0,0x4, 0x19,0x34,0xe2,0x1, 0xcc,0xff, -0xe0,0x12,0x8a,0x22,0xe0,0x1a,0x8b,0xc2,0xf0,0x11,0x8c,0x12,0xe0,0x0, 0x1, 0xec, -0xde,0xd3,0x39,0xe8,0x3b,0x63,0xe4,0x9, 0xc3,0x6c,0xf0,0x19,0x8c,0xf2,0xf0,0x40, -0x3d,0xe6,0xf0,0x2, 0x1e,0x78,0xf0,0x0, 0x16,0x81,0xf0,0x0, 0x17,0x0, 0xf0,0x31, -0xc5,0xca,0xf0,0x19,0x8d,0x72,0xe0,0x19,0x8a,0xc2,0xf0,0x1a,0x3d,0x15,0xf8,0x40, -0x3c,0xfa,0xe0,0x0, 0x4, 0x54,0x3a,0xb7,0xe0,0x11,0x8f,0x82,0xf0,0x2, 0x1c,0xf8, -0x3a,0xaf,0xe8,0x5, 0x3a,0xb8,0xf2,0x1, 0xc5,0x7f,0xe3,0xff,0xc2,0xff,0xf0,0x0, -0x15,0x81,0xf0,0x0, 0x16,0x0, 0xe0,0x31,0xc3,0x4a,0xe0,0x19,0x8f,0x42,0xe0,0x19, -0x8f,0xf2,0x3f,0x9e,0xe0,0x19,0x8f,0x52,0x3f,0x9e,0xf0,0x40,0x3d,0x7f,0xe0,0x0, -0x4, 0x55,0xe0,0x1a,0x8b,0x82,0xe0,0x0, 0x1a,0xf5,0xe0,0x2, 0x1b,0x78,0xf6,0xf9, -0xcc,0x7, 0xe0,0x1a,0x8f,0x82,0xe0,0x19,0x8e,0xe2,0xe0,0xe, 0x3e,0x9f,0x3b,0xfe, -0xe0,0x0, 0x4, 0x63,0xe0,0x19,0x8f,0x32,0xe0,0x4, 0x1a,0x47,0xc7,0x7f,0x3c,0xee, -0xe0,0x19,0x8f,0x72,0xe2,0x1, 0xc4,0xff,0x3f,0x7f,0xe0,0x1, 0x3, 0x97,0xe0,0x1, -0x26,0x95,0xe0,0x0, 0x1f,0xf5,0xe0,0x5, 0x9f,0xef,0xe6,0xf9,0xcf,0x1f,0xe0,0xf, -0x34,0xa1,0x3f,0x9e,0xe2,0x1, 0xc7,0xff,0xb7,0xb4,0xdf,0x35,0x3c,0x63,0xf8,0x0, -0xf, 0x28,0xb, 0xe1,0x11,0x80,0xe7,0xff,0x0, 0x97,0xe0,0x1a,0x8c,0x42,0xe8,0x40, -0x3c,0xe9,0xe8,0x40,0x3d,0x6e,0xe9,0x28,0x3c,0x1d,0xdd,0xc9,0xe0,0x19,0x8f,0xf2, -0xe8,0x40,0x3c,0xeb,0xf0,0xf, 0x3c,0xaf,0x3f,0xb7,0xe8,0xa9,0x3f,0x88,0x34,0xa1, -0xe8,0x9, 0x3c,0x9c,0xdd,0xcc,0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef, -0xf2,0x1, 0xc4,0xff,0xe7,0xff,0x0, 0x87,0xe0,0x1a,0x8c,0x42,0xe8,0x40,0x3c,0xea, -0xe8,0x40,0x3d,0x6c,0xe9,0x28,0x3c,0x1b,0xdd,0xaa,0xe0,0x19,0x8c,0xf2,0xf0,0x9, -0x3d,0x29,0x3c,0xb7,0xe8,0x9, 0x3c,0xb8,0x3c,0xa5,0x3c,0x96,0x34,0xa1,0xe8,0x9, -0x3c,0x99,0xdd,0xad,0xe8,0x40,0x3f,0xea,0xc7,0x81,0xf0,0x40,0x3d,0x6f,0xf2,0x1, -0xc5,0x7f,0xe7,0xff,0x0, 0x84,0xe0,0x9, 0x3b,0xaf,0xe0,0x5, 0x9f,0x65,0xe4,0x0, -0xc4,0xaa,0xe6,0xf9,0xcf,0x1e,0x3c,0x94,0xf0,0xf, 0x3c,0x1e,0xe0,0x3f,0xc4,0xb0, -0x3c,0x6f,0x34,0xa1,0x3c,0x96,0xe2,0x1, 0xc4,0x7f,0xdd,0x91,0xe0,0xc, 0x9f,0xa2, -0xe6,0xf4,0xcf,0xff,0x2f,0x86,0xe0,0xc, 0x9f,0xa2,0xe6,0xfb,0xcf,0xff,0x27,0x97, -0xe0,0x1a,0x8c,0x82,0xe0,0x5, 0x9f,0xe5,0xe0,0x9, 0x3b,0xa9,0xe4,0x0, 0xc4,0xaa, -0xe6,0xf9,0xcf,0x9f,0x3c,0x94,0xc7,0x81,0xe0,0x41,0xc4,0xac,0xe8,0xf, 0x3f,0x98, -0x34,0xa1,0x3c,0x6f,0x3c,0x96,0xe2,0x1, 0xc4,0x7f,0xdd,0x71,0x3f,0xe7,0xc7,0x81, -0x3b,0xef,0xe8,0x40,0x3f,0xe8,0xc7,0x82,0xf0,0x40,0x3c,0x6f,0xe2,0x1, 0xc3,0xff, -0xf2,0x1, 0xc4,0x7f,0xe7,0xfe,0x0, 0xd7,0xe0,0x1a,0x8c,0x42,0x17,0x81,0x15,0x0, -0xe1,0x28,0x3c,0x1f,0xdd,0x4c,0xb4,0x34,0xe7,0xfe,0x0, 0xf1,0x8, 0xb7,0xf8,0x0, -0xc, 0x3a,0xe0,0x4, 0x1f,0xb4,0xe2,0x1, 0xcc,0xff,0xf0,0x40,0x3c,0x68,0xe0,0x12, -0x8b,0xaf,0x89,0xdf,0xf0,0x12,0x8c,0x8f,0xe6,0xfb,0xc9,0x58,0xe0,0x0, 0x1, 0xd3, -0x3c,0x62,0xdd,0xd6,0x3a,0x68,0xe2,0x0, 0xc9,0x0, 0x13,0x1, 0x3a,0xe6,0xe0,0x65, -0x39,0xa2,0xf2,0x0, 0xcc,0xa, 0xe0,0x0, 0x2, 0xf1,0xe8,0x18,0x33,0x38,0xe8,0x40, -0x3d,0x68,0xe8,0x3, 0x39,0x99,0xe2,0x8, 0xc5,0x44,0xe2,0x1, 0xc1,0xff,0xe0,0x0, -0x2d,0x6a,0xf8,0x40,0x3c,0xe8,0xf2,0x4, 0xc4,0xa2,0xf0,0x0, 0x2c,0xb7,0xf2,0x2, -0xc4,0x11,0xf0,0x0, 0x24,0x5b,0xe8,0x40,0x3d,0x69,0xe8,0x40,0x3c,0xe9,0x3c,0x65, -0xdd,0x96,0x39,0xe2,0xe4,0x0, 0xc1,0xbe,0x3c,0xe4,0xe4,0x1, 0xc4,0xba,0x39,0x97, -0x39,0x99,0xe0,0x5, 0xc1,0xe8,0xe0,0x2, 0x1b,0xf8,0x31,0xb6,0xe0,0x9, 0x39,0x97, -0xf0,0x40,0x3c,0x68,0xdd,0xc, 0xe2,0x0, 0xc9,0x2, 0x1, 0xb, 0xe8,0x40,0x3c,0xe9, -0x3d,0x66,0x3c,0x65,0xdd,0x7c,0x3c,0xe3,0xe0,0x2, 0xc4,0xf4,0x3c,0x97,0xdc,0xff, -0xc1,0x4, 0xe0,0xf, 0x31,0x21,0xe0,0x4, 0x19,0x47,0x39,0x1f,0xf0,0x0, 0xb4,0x2, -0x0, 0xac,0x12,0x0, 0xe7,0xff,0x0, 0xb1,0x3c,0xe6,0x3c,0x65,0xdd,0x68,0x3f,0xe2, -0xe4,0x0, 0xc7,0xbe,0x3c,0xe4,0xe4,0x1, 0xc4,0xba,0x39,0x9f,0x39,0x99,0xe0,0x5, -0xc1,0xe8,0xf0,0x2, 0x1c,0x78,0x31,0xa1,0xe8,0x9, 0x39,0x98,0x3b,0xe8,0xdc,0xdf, -0xe2,0x0, 0xc9,0x2, 0x1, 0xb, 0x3c,0xe6,0x3d,0x66,0x3c,0x65,0xdd,0x50,0x3c,0xe3, -0xe0,0x2, 0xc4,0xf4,0xe8,0x9, 0x3c,0x98,0xdc,0xd2,0xc1,0x4, 0xe0,0xf, 0x31,0x21, -0xe0,0x4, 0x19,0x47,0x39,0x1f,0xb3,0x82,0xde,0x16,0x3c,0x64,0xf8,0x0, 0xd, 0x28, -0xb, 0xe1,0x15,0x0, 0x3c,0xea,0x3c,0x65,0xdd,0x3a,0x3f,0xe4,0xf0,0x40,0x3d,0x62, -0xe4,0x1, 0xc7,0xba,0xf4,0x0, 0xc5,0x3e,0xf0,0x2, 0x1c,0xf8,0xf0,0x1a,0x3d,0x1f, -0xe8,0x7, 0x3b,0x9a,0xe0,0x5, 0xc3,0xe8,0x33,0xa1,0xe8,0x9, 0x3b,0x99,0xdc,0xaf, -0x15,0x0, 0x3c,0xe6,0x3c,0x65,0xdd,0x23,0xe2,0x0, 0xc9,0x2, 0xf0,0x40,0x3c,0x68, -0x1, 0x1f,0x3d,0x66,0x14,0x80,0x3c,0x65,0xdd,0x1a,0x3c,0xe7,0xe0,0x2, 0xc4,0xf4, -0xe8,0x3, 0x39,0x9a,0xe8,0x9, 0x3c,0x99,0xe0,0x5, 0xc1,0xe8,0xdc,0x98,0x31,0xa1, -0xe8,0x9, 0x39,0x99,0xe8,0x40,0x3c,0x68,0xdc,0x92,0x3c,0xe6,0x3d,0x66,0x3c,0x65, -0xdd,0x6, 0x3c,0xe3,0xe0,0x2, 0xc4,0xf4,0xe8,0x9, 0x3c,0x99,0xdc,0x88,0xc1,0x4, -0x31,0x21,0xe0,0x4, 0x1f,0xc7,0xe7,0xff,0x0, 0x8a,0x8, 0xb4,0x11,0x0, 0xe0,0x4, -0x19,0xef,0x3a,0x62,0x8f,0xf3,0x3c,0xe4,0xe6,0xfe,0xcf,0xef,0x3f,0x92,0x3c,0x6f, -0xe2,0x1, 0xc4,0x7f,0xdf,0x1c,0x3f,0xe2,0xc7,0x84,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe2,0x0, 0xc9,0xc, 0xc1,0x93,0x1, 0xef,0x14,0x80,0x14,0x10,0xa, 0x21,0xe7,0xfc, -0x0, 0x8a,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xc0,0x7c,0xe0,0x0, 0x1f,0xa7,0xf0,0x0, -0x15,0x0, 0xe0,0x4, 0x19,0xc7,0xf0,0x3, 0x1c,0xa3,0xe0,0x3, 0x1b,0x36,0xa1,0xf, -0x12,0x81,0xf8,0x40,0x3c,0x6a,0xe0,0x2, 0x9f,0x92,0xe8,0x40,0x3b,0xea,0xe8,0xf, -0x37,0xda,0xe6,0xff,0xcf,0xff,0xe2,0x1, 0xc3,0xff,0xe0,0x0, 0x27,0xc2,0xa7,0xe2, -0xe8,0xf, 0x37,0xda,0xe6,0xff,0xcf,0xff,0x27,0xbb,0xa7,0x72,0xe8,0x40,0x3a,0x6a, -0xe8,0xf, 0x32,0xba,0xe4,0x0, 0xc2,0xa, 0x3f,0xce,0xbf,0xf2,0xe0,0xf, 0x39,0x94, -0xe0,0x2, 0x8f,0x1f,0xc7,0x1, 0xe0,0x2, 0xaf,0x1f,0xe0,0x2, 0x8f,0x1f,0x27,0x28, -0xf0,0x2, 0xac,0x1f,0x8f,0xb3,0x3b,0xff,0x3, 0xb4,0x8f,0xc6,0xe2,0x0, 0x7d,0x7, -0x3c,0x6f,0xe2,0x0, 0x7c,0x86,0xef,0xfe,0xde,0x1f,0x4f,0x86,0x4f,0x7, 0xe4,0x0, -0xc7,0x92,0x3f,0x9e,0xc7,0x84,0x37,0xa1,0x3f,0x96,0x9f,0x9f,0xe6,0xfb,0xcf,0xdf, -0xe2,0x0, 0xcf,0x81,0x2, 0x97,0xe8,0x40,0x3f,0x6a,0xc7,0x9, 0xc7,0x84,0x37,0x22, -0x37,0xa1,0x3f,0x12,0x3f,0x93,0xa7,0xe, 0x9f,0x8f,0x3f,0x7f,0x1, 0xe, 0xf0,0x0, -0xc5,0x1, 0xf2,0x0, 0xcd,0x10,0xe7,0xff,0x1, 0xb0,0xc0,0x4, 0xf8,0x0, 0xd, 0x28, -0xb, 0xe1,0xe2,0x0, 0xcf,0x82,0x1, 0x83,0xef,0xfe,0xdf,0x9d,0xef,0xff,0xd0,0xf1, -0x3a,0x13,0xe0,0x1, 0x8f,0xe4,0x37,0xc7,0x27,0xeb,0x3c,0x67,0xdc,0x5, 0xe8,0x0, -0xa7,0x89,0xe0,0x1, 0x9f,0x7f,0xe7,0xb, 0xcf,0x15,0xe0,0x1, 0xb7,0x7f,0x0, 0xe0, -0xe0,0x0, 0x1f,0xf5,0xe0,0x20,0x14,0xc1,0xe0,0x8, 0x9f,0x1f,0x14,0x0, 0xe3,0xff, -0xc7,0x70,0xe0,0x8, 0xb7,0x1f,0xe0,0x8, 0x9d,0x1f,0xe0,0xdd,0x0, 0xdb,0xe0,0x1, -0x1f,0xa0,0x8f,0x8f,0xe2,0x1, 0xcf,0x80,0x1, 0x10,0xe0,0x3, 0x1f,0xce,0xe0,0x1, -0x8f,0x8f,0x2f,0x82,0x17,0x81,0xe6,0xcf,0xcc,0xf, 0xe0,0x0, 0xc4,0x64,0xe0,0x28, -0x3c,0x3f,0xe3,0xff,0xc4,0x7f,0x38,0x82,0x14,0x10,0x0, 0xfe,0xe0,0x1, 0x1f,0xa0, -0x8f,0x8f,0xe0,0x3, 0x1f,0xce,0xe0,0x1, 0x8f,0x9f,0x3c,0x6f,0x38,0x82,0x8, 0xb1, -0xe2,0x0, 0xcc,0x1, 0x1, 0xb, 0xe2,0x0, 0xcc,0x2, 0x1, 0x14,0xe0,0x3, 0x1f,0xce, -0x14,0x3c,0xe0,0x4, 0x8f,0xdf,0x2f,0x8f,0x0, 0x82,0x14,0x3c,0xdf,0xd1,0xe4,0x0, -0xc4,0x3e,0xe6,0xf2,0xcc,0x8, 0x24,0x9, 0xe0,0x0, 0x17,0xfd,0xe1,0x28,0x3c,0x5f, -0x8, 0xe1,0x14,0x3c,0xdf,0xdc,0x0, 0xf4,0x14,0x1, 0x0, 0xfb,0x8, 0xb2,0xe0,0x2, -0x19,0x33,0x14,0x0, 0xdf,0xdd,0xac,0x2, 0x14,0x1, 0xdf,0xda,0xe0,0x5, 0x1f,0x94, -0xac,0xf, 0x14,0x2, 0xdf,0xd5,0xe0,0x4, 0x1f,0x85,0xe0,0x3, 0x1f,0x10,0xac,0xf, -0x89,0x2, 0xe0,0x4, 0x1f,0xdf,0xa9,0xf, 0x17,0x80,0x9e,0x8e,0xe7,0x3, 0xce,0x9f, -0xb6,0x8e,0xe0,0x3, 0x1f,0x54,0xb7,0x8e,0x9, 0x61,0x2c,0x2, 0x0, 0xe0,0x38,0x82, -0x8, 0xb6,0xe0,0x3, 0x19,0x90,0xe0,0x4, 0x1a,0x79,0x39,0x68,0xe7,0xff,0x12,0x81, -0xe1,0xff,0x13,0x7f,0xef,0xff,0xd4,0xc5,0x2c,0x12,0xe0,0x4, 0x1f,0xf9,0xe7,0xff, -0x17,0x1, 0xaf,0xf, 0xe0,0x44,0x14,0xac,0x21,0x15,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f, -0x37,0xcf,0x2f,0x90,0x14,0x2, 0xb, 0x21,0xe0,0xc, 0x0, 0x92,0xef,0xfe,0xdf,0xf1, -0x2c,0xd, 0x9f,0x83,0xe6,0xfc,0xcf,0xff,0x2f,0x89,0x3c,0xe6,0xaa,0x84,0xd6,0x7, -0x0, 0xe2,0x14,0x5, 0xb, 0x21,0xe0,0xc, 0x0, 0x83,0xb, 0x61,0x8, 0xb1,0xef,0xff, -0xd0,0x1, 0x24,0x4, 0xef,0xff,0xd0,0x7, 0x24,0x2, 0x8, 0xe1,0xdf,0xca,0x0, 0xf8, -0x8, 0xb1,0x14,0x1, 0xef,0xfe,0xdf,0x6e,0xef,0xff,0xd4,0x93,0x2c,0x7e,0x8, 0xe1, -0x8, 0xb3,0xef,0xff,0xd4,0x8e,0x2c,0x1d,0xe0,0x3, 0x1f,0xfd,0xe7,0xff,0x16,0x81, -0x9f,0xf, 0x39,0x6f,0xe3,0xff,0xc7,0x5b,0xb7,0xf, 0xe0,0x4, 0x1f,0x79,0xae,0x8e, -0xe0,0x3, 0x1f,0x1, 0x9e,0x8e,0x39,0xee,0x2e,0x8d,0xe0,0x44,0x14,0xac,0x14,0x1, -0xd5,0xd6,0x9f,0x82,0xe2,0x0, 0xc7,0xa4,0x27,0x84,0xe0,0x17,0x17,0xb8,0xb7,0x83, -0x9, 0xe1,0xd4,0x96,0xe0,0x44,0x14,0xac,0x14,0x2, 0x0, 0xf3,0xe0,0x3, 0x1f,0xce, -0xe0,0xa, 0x8f,0x8f,0x27,0x86,0xe0,0x3, 0x1f,0x9b,0x8f,0x8f,0x2f,0x82,0x0, 0xd1, -0x14,0x1, 0xe7,0xff,0x0, 0x8f,0x8, 0xb2,0xe0,0x3, 0x1f,0xa9,0x99,0xf, 0x31,0x4f, -0x21,0x3, 0x14,0x0, 0x9, 0x61,0x3c,0x62,0xd6,0x9e,0xe0,0x4, 0x1f,0xdf,0x8f,0x8f, -0x27,0xf9,0x3c,0x62,0xd6,0x94,0x14,0x3, 0x0, 0xf6,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f, -0x37,0xcf,0x2f,0x88,0x8, 0xb1,0x14,0x1, 0xd6,0x8a,0x14,0x1, 0x8, 0xa1,0xe0,0xd, -0x0, 0x8b,0x38,0x82,0xe0,0x3, 0x1f,0xa9,0x9f,0x8f,0x37,0xcf,0x2f,0x8e,0xe0,0x3, -0x1f,0xce,0xe0,0x4, 0x8f,0xdf,0xe2,0x0, 0xcf,0x81,0x1, 0x87,0xe2,0x0, 0xcc,0x81, -0x1, 0x84,0x3c,0x69,0xe0,0xc, 0x0, 0xf4,0x38,0x82,0x8, 0xb4,0xc0,0x7c,0x17,0x80, -0x6f,0x87,0x17,0x0, 0xe0,0x3, 0x1f,0xfd,0xb7,0xf, 0xef,0xfe,0xdf,0x83,0x24,0x5, -0xef,0xfe,0xdf,0x89,0x2c,0x2, 0xdf,0x7b,0xdf,0xbf,0xe2,0x0, 0x79,0x4, 0xe0,0x3, -0x19,0x90,0xe0,0x4, 0x1a,0x5f,0xe0,0x80,0xac,0x32,0x9f,0x83,0xe6,0xfc,0xcf,0xff, -0x27,0x8d,0xe0,0x3, 0x1f,0x9b,0x8f,0xf, 0x27,0x4, 0x8f,0xf, 0xc7,0x7f,0xaf,0xf, -0x3c,0x60,0xc4,0x7, 0xdf,0xbb,0xc0,0x4, 0xa, 0x61,0xdf,0x99,0x8f,0x84,0x3c,0x62, -0x3c,0xef,0xdf,0xc1,0x0, 0xeb,0x2c,0x3, 0xe7,0xfd,0x0, 0xbc,0xe0,0x0, 0x1f,0xf5, -0xe7,0x87,0x17,0x17,0xe0,0x8, 0xb7,0x1f,0xe0,0x20,0x14,0xc1,0xe0,0x8, 0x9d,0x1f, -0x14,0x0, 0xe0,0xdb,0x0, 0x97,0x8, 0xb1,0xdf,0x54,0xde,0xab,0x14,0x0, 0xd6,0x33, -0x14,0x80,0x3c,0x69,0xef,0xfc,0xde,0xfa,0x14,0x0, 0xd6,0xa, 0x14,0x0, 0xd6,0x27, -0x14,0x0, 0xd3,0x3b,0xe0,0x3, 0x1f,0xfd,0x17,0x0, 0xb7,0xf, 0x14,0x80,0xe0,0x4, -0x1f,0xf9,0xe7,0xff,0x17,0x1, 0x14,0x1, 0xaf,0xf, 0xd5,0x31,0x14,0x1, 0xdf,0xd4, -0x14,0x1, 0xd3,0x2b,0x14,0x1, 0xd6,0x13,0x14,0x1, 0xd5,0xf2,0x14,0x81,0x3c,0x69, -0xef,0xfc,0xde,0xdc,0x14,0x1, 0x8, 0xa1,0xe0,0xc, 0x0, 0x8e,0x8, 0xb1,0xe0,0x2, -0x1f,0x8c,0xe0,0x2, 0x1f,0xb, 0x8f,0x8f,0x8c,0xe, 0x37,0xa8,0x3c,0x4f,0xe0,0x5, -0xdb,0x6e,0xe0,0x3, 0x1f,0x4e,0x17,0x81,0xe0,0x4, 0xaf,0xfe,0x16,0x81,0xe0,0x5, -0x1f,0x12,0xaf,0x8e,0x17,0x0, 0xe0,0x4, 0x1f,0xdf,0xaf,0xf, 0xe0,0x3, 0x1f,0x90, -0x9f,0xf, 0xe7,0x3, 0xcf,0x1d,0xb7,0xf, 0x17,0x17,0xe0,0x4, 0x1f,0xb4,0xe0,0x12, -0xaf,0x5f,0xe0,0x12,0xaf,0x6f,0x8, 0xe1,0xe0,0x61,0x3f,0x2, 0xe0,0x61,0x3f,0x82, -0xe7,0xfb,0x16,0xff,0x3f,0xdd,0xe0,0x61,0x3f,0x92,0xe0,0x4, 0x1f,0x85,0xe0,0x4, -0x1e,0xdf,0x8d,0x8f,0xe0,0x5, 0x1f,0x94,0x8e,0xf, 0x8f,0x8d,0x3f,0x9b,0x3f,0xac, -0xaf,0x8d,0x16,0x0, 0xe0,0x3, 0x1f,0x90,0x9e,0x8f,0xe7,0x3, 0xce,0x9c,0xb6,0x8f, -0xe0,0x61,0x3f,0x12,0x38,0x82,0xe0,0x61,0x3d,0x82,0xe0,0x61,0x3f,0x82,0xe7,0xfb, -0x17,0x7f,0x3f,0xde,0xe0,0x61,0x3f,0x92,0xe0,0x4, 0x1f,0xdf,0xe0,0x4, 0x1e,0x85, -0xe0,0x5, 0x1e,0x14,0x8d,0xf, 0x8f,0xd, 0x8c,0x8c,0x3f,0x29,0x3f,0x7a,0x3, 0xa, -0x8e,0x8d,0x8e,0xc, 0x8f,0xf, 0x3e,0xac,0x3f,0x2d,0xaf,0xf, 0xe0,0x61,0x3d,0x92, -0x38,0x82,0x17,0x0, 0xaf,0xf, 0x16,0x81,0xe0,0x3, 0x1f,0x90,0x9f,0xf, 0xe7,0x3, -0xcf,0x1d,0xb7,0xf, 0x0, 0xf4,0x8, 0xb1,0xe0,0x3, 0x1f,0xce,0x17,0x1, 0xe0,0x4, -0xaf,0x5f,0xdf,0xb3,0xe0,0x3, 0x1f,0x7f,0x17,0x80,0xb7,0x8e,0x16,0x81,0xe0,0x4, -0x1f,0x3c,0xaf,0x8e,0xe0,0x3, 0x1f,0x90,0x9f,0xf, 0xe7,0xb, 0xcf,0x1d,0xb7,0xf, -0x8, 0xe1,0x8, 0xb1,0xe0,0x3, 0x1f,0xce,0x17,0x0, 0xe0,0x4, 0xaf,0x5f,0xdf,0xbc, -0xe0,0x3, 0x1f,0xff,0x17,0x0, 0xb7,0xf, 0x16,0x81,0xe0,0x3, 0x1f,0x90,0x9f,0xf, -0xe7,0x7, 0xcf,0x1d,0xb7,0xf, 0x8, 0xe1,0xe0,0x3, 0x1f,0x90,0x9f,0xf, 0xe6,0xf4, -0xcf,0x7e,0x27,0xe, 0x9f,0xf, 0x16,0x80,0xe7,0xb, 0xcf,0x1d,0xb7,0xf, 0x17,0x1, -0xe0,0x1, 0x1f,0xa0,0xaf,0xf, 0x8f,0x8f,0x3c,0x6f,0xe7,0xd6,0x0, 0xeb,0x38,0x82, -0x8, 0xb2,0xe0,0x3, 0x19,0x10,0x9f,0x82,0xe6,0xf8,0xcf,0xff,0x27,0x91,0x14,0x3, -0xef,0xfe,0xd8,0xda,0x9f,0x82,0x17,0x0, 0xe7,0x7, 0xcf,0x9e,0xb7,0x82,0xe0,0x1, -0x1f,0xa0,0xaf,0xf, 0x8f,0x8f,0x3c,0x6f,0x9, 0x21,0xe7,0xd6,0x0, 0xd3,0x9, 0x61, -0xe0,0x3, 0x1f,0xce,0xe0,0xa, 0x8f,0x8f,0x27,0x85,0xe0,0x3, 0x1f,0x82,0x8f,0x8f, -0x2f,0x83,0xe7,0xff,0x0, 0xb8,0x38,0x82,0x8, 0xb1,0xe0,0x2, 0x1f,0x8a,0xe0,0x2, -0x1f,0x9, 0x8f,0x8f,0x8c,0xe, 0x37,0xa8,0x3c,0x4f,0xe0,0x5, 0xda,0xa0,0xde,0xfc, -0xdf,0x26,0xdf,0xa8,0xef,0xff,0xd2,0xb5,0x2c,0x6, 0xef,0xfe,0xd8,0xad,0x8, 0xa1, -0xe7,0xd9,0x0, 0xd7,0x8, 0xe1,0xe0,0x3, 0x1f,0x4e,0xe0,0x4, 0x8f,0xde,0xe2,0x0, -0xcf,0x81,0x1, 0xa4,0x8, 0xb2,0xe0,0x4, 0x19,0x3c,0x8f,0x2, 0x2f,0x8, 0xe0,0x3, -0x1f,0x10,0x9e,0x8e,0xe7,0xb, 0xce,0x9f,0xb6,0x8e,0xdf,0x9f,0x8f,0x82,0xe2,0x0, -0xcf,0xbc,0x1, 0x89,0xe0,0x3, 0x1f,0x90,0x16,0x81,0x9f,0xf, 0xe7,0x7, 0xcf,0x1d, -0xb7,0xf, 0xdf,0xa7,0x8f,0x82,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0xbc, -0x2, 0x83,0xaf,0x82,0x9, 0x61,0x17,0x80,0x0, 0xfd,0xe0,0x4, 0x8f,0xde,0x2f,0x83, -0xe7,0xff,0x0, 0x98,0x38,0x82,0x8, 0xb2,0xe0,0x3, 0x1f,0xed,0xe0,0x3, 0x19,0x4e, -0x8f,0xf, 0x27,0x7, 0x17,0x0, 0xaf,0xf, 0xe0,0x4, 0x8f,0xd2,0x2f,0x90,0xdf,0x62, -0xe0,0x4, 0x8f,0xd2,0xe2,0x0, 0xcf,0x81,0x1, 0x38,0x4, 0x90,0xe2,0x0, 0xcf,0x83, -0xe0,0x0, 0x1, 0x4a,0x17,0x1, 0xe0,0x4, 0xaf,0x52,0x0, 0x90,0xe0,0x4, 0x8f,0xd2, -0xe2,0x0, 0xcf,0x81,0x1, 0xee,0xdf,0x38,0x0, 0xec,0xe0,0x3, 0x1f,0xec,0x8f,0x8f, -0x27,0x86,0xe0,0x3, 0x1f,0xff,0x17,0x0, 0xb7,0xf, 0x9, 0x61,0x8f,0xe2,0xe6,0xff, -0xcf,0xff,0x27,0xfc,0xe0,0x3, 0x1f,0x7f,0xe0,0x7, 0x16,0x68,0x9f,0x8e,0x8e,0xf2, -0xe1,0x2f,0x3f,0xbc,0x3f,0xfd,0x3, 0x8e,0xe0,0xa, 0x8f,0x82,0xe2,0x0, 0xcf,0x81, -0x1, 0xed,0x9f,0x8e,0xe0,0x1, 0x16,0xc8,0x8f,0x72,0xe1,0x2f,0x3f,0xbd,0x3f,0xfe, -0x4, 0xe5,0x9, 0x21,0xe7,0xfe,0x0, 0x91,0xe0,0x3, 0x1f,0xec,0x8f,0x8f,0x27,0x84, -0x9, 0x21,0xe7,0xfe,0x0, 0xdf,0xef,0xff,0xd7,0xf, 0x2c,0x7b,0xe0,0x1, 0x1f,0xa7, -0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0xd2,0xe0,0xa, 0x8f,0x82,0xe2,0x0, 0xcf,0x81, -0x1, 0xcd,0x0, 0xef,0x9, 0x21,0xe7,0xfe,0x0, 0xd9,0x8, 0xb4,0xef,0xfe,0xdb,0xc0, -0x3a,0x68,0xef,0xfe,0xdb,0x77,0x39,0x68,0xef,0xfe,0xdb,0x58,0xe0,0x3, 0x1d,0x36, -0x3c,0xe4,0x39,0xe8,0x3c,0x62,0xe0,0x1, 0xd3,0x82,0xef,0xff,0xd6,0xd2,0xe6,0xfb, -0xcf,0xb2,0xe2,0x0, 0xcf,0x8f,0x3c,0xe3,0x3c,0x62,0x5, 0x95,0xe0,0x1, 0xd3,0xb8, -0xe0,0x2, 0xdb,0xa1,0xef,0xfb,0xd6,0xcc,0xe0,0x0, 0x1f,0x98,0x97,0xf, 0xe0,0x2, -0x1f,0xc3,0x9f,0x9f,0x3f,0x7f,0x2, 0xa, 0xef,0xff,0xd6,0xd6,0x17,0x80,0xe1,0x28, -0x3c,0xf, 0xa, 0x61,0xe0,0x1, 0xd4,0x83,0x0, 0xf0,0x14,0x1, 0x0, 0xfb,0x8, 0xb7, -0xf8,0x0, 0xc, 0x38,0xc0,0x7c,0xe0,0x3, 0x1f,0x4e,0x17,0x80,0x6f,0x87,0xe0,0x4, -0x8f,0xde,0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1, 0xd7,0x3c,0x6f,0x39,0xee,0xef,0xfe, -0xdc,0xe1,0xdf,0xbc,0xe0,0x0, 0x2c,0x41,0xe0,0x4, 0x1a,0x3c,0xe0,0x2, 0x1a,0x8a, -0xe0,0x2, 0x1b,0x9, 0xe0,0x3, 0x1b,0x90,0xf0,0x4, 0x1c,0x5f,0xe0,0x3, 0x19,0x1b, -0x8f,0x84,0xe2,0x0, 0xcf,0xbb,0x2, 0xb1,0xe0,0x4, 0x8f,0xd3,0xe2,0x0, 0xcf,0x81, -0x1, 0xac,0xdc,0xfd,0x8f,0x85,0x8c,0x6, 0x37,0xa8,0x3c,0x4f,0xe0,0x5, 0xd9,0x9f, -0xe0,0x0, 0xdb,0xdd,0xdf,0x9, 0xef,0xfe,0xdb,0xdc,0xef,0xfe,0xdd,0x43,0x24,0x5, -0xef,0xfe,0xdd,0x49,0x2c,0x2, 0xdd,0x3b,0x14,0x1, 0xef,0xfe,0xdc,0xb3,0xef,0xfe, -0xdc,0xc0,0x24,0x13,0xdf,0x8b,0x2c,0x10,0xdd,0x77,0x6c,0x7, 0x9f,0x87,0xe6,0xfc, -0xcf,0xff,0x27,0x9d,0x8f,0x82,0x27,0x84,0x8f,0x82,0xc7,0xff,0xaf,0x82,0xe2,0x0, -0x7c,0x7, 0xdd,0x7c,0x0, 0xce,0xde,0xc5,0xe0,0x0, 0xdb,0xb9,0xde,0xe5,0xef,0xff, -0xd1,0x90,0x2c,0x9, 0xe0,0x1, 0x1f,0xa0,0x8f,0x8f,0x3c,0x6f,0xef,0xfe,0xda,0x13, -0xef,0xfe,0xdb,0xaf,0xc0,0x4, 0xf8,0x0, 0xc, 0x28,0xb, 0xe1,0xdd,0x48,0xe8,0x0, -0x8f,0x88,0xe2,0x0, 0x7c,0x7, 0x3c,0xef,0xdd,0x6e,0x0, 0xd9,0x8, 0xb1,0xde,0xfc, -0xdd,0x7d,0x8, 0xa1,0xe7,0xff,0x0, 0x8d,0xe0,0x0, 0x1f,0xb2,0x9f,0x8f,0x3c,0x3f, -0xc4,0x7b,0x34,0x4, 0xc4,0x7f,0xe3,0xff,0xcc,0x7f,0x1, 0x82,0x38,0x82,0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,0x3f,0xe9,0xc7,0xff,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f, -0xe2,0x0, 0xcf,0x6, 0x2, 0x9d,0xeb,0x6e,0x7f,0xa4,0xe9,0xff,0xc7,0xfe,0x3f,0x9e, -0x8f,0xf, 0xe2,0x0, 0xcc,0x1, 0x1, 0x16,0xc4,0x7e,0xe2,0x0, 0xcc,0x1, 0xe0,0x5, -0x1e,0xc0,0xe0,0x5, 0x1f,0xc1,0xe0,0x6f,0x3a,0xad,0xe1,0x2f,0x3f,0xbe,0xe0,0x5, -0x1f,0x42,0xe1,0x2f,0x3f,0xbe,0xe0,0x0, 0x1f,0x32,0xb7,0x8e,0x38,0x82,0x17,0x1, -0x0, 0xe9,0xe0,0x5, 0x1f,0xc3,0x0, 0xf2,0xe0,0x3, 0x1f,0x8d,0xe0,0xab,0x17,0x2a, -0xa7,0x8f,0xe2,0x0, 0xcc,0x7, 0xe0,0x1, 0xb7,0x1f,0x2, 0x85,0x9f,0x3f,0xe7,0x0, -0xcf,0x38,0xb7,0x3f,0x16,0x81,0x9f,0x5f,0x14,0x0, 0xe7,0xe, 0xcf,0x1d,0xb7,0x5f, -0x9f,0xbf,0xe6,0xfd,0xcf,0xdf,0x3c,0xef,0xe7,0xff,0x0, 0xbf,0x8, 0xb3,0xe0,0x3, -0x1f,0x8d,0x16,0x81,0xa7,0xf, 0x11,0x0, 0x9f,0xde,0xe1,0xff,0x11,0xff,0xe7,0x1, -0xcf,0x9d,0xb7,0xde,0x14,0x5, 0xe0,0x3, 0x1f,0xf9,0xa7,0x8f,0x9e,0xff,0xe7,0x4, -0xce,0x92,0xb6,0xff,0x9e,0xff,0xe7,0x6, 0xce,0x92,0xb6,0xff,0x9e,0xff,0xe7,0x5, -0xce,0x92,0xb6,0xff,0x9e,0xff,0xe7,0x7, 0xce,0x92,0xb6,0xff,0x9e,0xdf,0xe7,0x0, -0xce,0xa2,0xb6,0xdf,0x9e,0xdf,0xe7,0x4, 0xce,0xa2,0xb6,0xdf,0x9f,0xde,0xe7,0x1, -0xcf,0x92,0xb7,0xde,0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x1, 0x9f,0x5f,0xe7,0xc, -0xcf,0x22,0xe0,0x1, 0xb7,0x5f,0xe0,0x1, 0x1f,0x89,0xa7,0x8f,0x9f,0x3f,0xe7,0x20, -0xcf,0x2, 0xb7,0x3f,0x9f,0x1f,0xe7,0x0, 0xcf,0x12,0xb7,0x1f,0x9f,0x1f,0xe7,0x1, -0xcf,0x12,0xb7,0x1f,0x9f,0x7f,0xe7,0x0, 0xcf,0x12,0xb7,0x7f,0xe0,0x4, 0x1f,0xe8, -0xa7,0x8f,0xb9,0x9f,0xdf,0x5a,0xe0,0x61,0x39,0x12,0xe0,0x61,0x39,0x91,0x9, 0xe1, -0xe0,0x4, 0x1f,0xcc,0x17,0x0, 0xaf,0xf, 0x17,0x1, 0xe0,0x3, 0x1f,0x8d,0x16,0xf, -0xa7,0x8f,0x9e,0xdf,0xe7,0x7, 0xce,0x9e,0xb6,0xdf,0x16,0x80,0xe0,0x3, 0x1f,0xa3, -0xa7,0x8f,0xb6,0xdf,0xe0,0x7, 0x16,0xff,0xe0,0x1, 0xb6,0x9f,0xe0,0x1, 0x9e,0xff, -0xe0,0x7, 0xce,0xfc,0xe0,0x1, 0xb6,0xff,0xe0,0x1, 0x9e,0xdf,0xe3,0xf8,0xc6,0x80, -0xe0,0x1, 0xb6,0xdf,0xe0,0x2, 0x9e,0x9f,0xe7,0x8, 0xce,0xcc,0xe0,0x2, 0xb6,0x9f, -0x16,0x0, 0xe0,0x2, 0x9e,0x9f,0xe7,0xc, 0xce,0x9e,0xe0,0x2, 0xb6,0x9f,0xe0,0x1, -0x9e,0xdf,0xe0,0x4, 0xce,0x80,0xe0,0x1, 0xb6,0xdf,0xe0,0x2, 0x9e,0x9f,0xe7,0xd, -0xce,0x9c,0xe0,0x2, 0xb6,0x9f,0x9e,0xbf,0xce,0xc0,0xb6,0xbf,0xe0,0x0, 0x16,0xc0, -0xb6,0x9f,0xe0,0x1, 0x9e,0xff,0xe3,0xef,0xc6,0xff,0xe0,0x1, 0xb6,0xff,0xe0,0x1, -0x9e,0xff,0xe7,0xf, 0xce,0x9e,0xe0,0x1, 0xb6,0xff,0xe0,0x2, 0x9e,0xbf,0xe7,0xe, -0xce,0x9e,0xe0,0x2, 0xb6,0xbf,0x38,0x82,0xe0,0x3, 0x1f,0x8d,0xe0,0xab,0x17,0x2a, -0xa7,0x8f,0xe0,0x1, 0xb7,0x1f,0x9f,0x1f,0xe7,0x4, 0xcf,0x28,0xb7,0x1f,0x38,0x82, -0x8, 0xb3,0x14,0x1, 0xdf,0xf2,0xe0,0x3, 0x1f,0x8d,0xe0,0x1, 0x19,0x8f,0xa7,0x8f, -0x17,0x1, 0xb7,0x3, 0xe0,0xab,0x17,0x2a,0xe0,0x1, 0xb7,0x1f,0x11,0x1, 0x9f,0x5f, -0xe0,0x2, 0x14,0x2c,0xe7,0x5, 0xcf,0x12,0xb7,0x5f,0xde,0xdf,0xe0,0x4, 0x1f,0xbb, -0x16,0x80,0xa7,0x8f,0x9f,0x1f,0xe7,0x3, 0xcf,0x12,0xb7,0x1f,0x9f,0x3, 0xe4,0x0, -0xc7,0x1c,0xb7,0x3f,0x9f,0x5f,0xe7,0x20,0xcf,0xd, 0xb7,0x5f,0xe0,0x61,0x3f,0x2, -0xe0,0x4, 0xcf,0x0, 0xe0,0x61,0x3f,0x12,0x9f,0x1f,0xe7,0x0, 0xcf,0x12,0xb7,0x1f, -0x9f,0x1f,0xe7,0x7, 0xcf,0x12,0xb7,0x1f,0x9, 0xe1,0xe0,0x1, 0x1f,0x8f,0x16,0x81, -0x9f,0xf, 0xe0,0x4, 0x1f,0xbb,0xe4,0x0, 0xc7,0x1c,0xa7,0x8f,0xb7,0x3f,0x9f,0x1f, -0xe7,0x0, 0xcf,0x1d,0xb7,0x1f,0x9f,0x1f,0xe7,0x7, 0xcf,0x1d,0xb7,0x1f,0x38,0x82, -0xe0,0x3, 0x1f,0x8d,0x17,0x1, 0xa7,0x8f,0x16,0x0, 0x9e,0xdf,0x15,0xaf,0xe7,0x2, -0xce,0x9e,0xb6,0xdf,0x9e,0xdf,0xe7,0xd, 0xce,0x9e,0xb6,0xdf,0xe0,0x3, 0x1f,0x89, -0xa7,0x8f,0x9e,0xbf,0xe7,0x0, 0xce,0x9e,0xb6,0xbf,0x9e,0x9f,0xe7,0x6, 0xce,0x9c, -0xb6,0x9f,0x9e,0xdf,0xe7,0x0, 0xce,0xfb,0xb6,0xdf,0x9e,0xdf,0xe7,0x7, 0xce,0x9c, -0xb6,0xdf,0x9e,0xbf,0xe7,0x1, 0xce,0x9e,0xb6,0xbf,0x9e,0xff,0xe7,0x4, 0xce,0x9e, -0xb6,0xff,0x9e,0x9f,0xe7,0x6, 0xce,0x9e,0xb6,0x9f,0xe0,0x61,0x3f,0x82,0xe0,0x2, -0xcf,0x80,0xe0,0x61,0x3f,0x92,0x38,0x82,0xe0,0x3, 0x1f,0x89,0xa7,0x8f,0x9f,0x5f, -0xe6,0xf9,0xcf,0x1e,0x27,0xa, 0x9f,0x7f,0x16,0x81,0xe7,0x4, 0xcf,0x1d,0xb7,0x7f, -0x9f,0x1f,0xe7,0x6, 0xcf,0x1d,0xb7,0x1f,0x38,0x82,0xe0,0x3, 0x1f,0x8d,0x16,0x81, -0xa7,0x8f,0x16,0x0, 0x9f,0x5f,0xe7,0x1, 0xcf,0x1d,0xb7,0x5f,0xe0,0x3, 0x1f,0xf9, -0xa7,0x8f,0x9f,0x7f,0xe7,0x6, 0xcf,0x1c,0xb7,0x7f,0x16,0x2, 0x9f,0x5f,0xe7,0x4, -0xcf,0x2c,0xb7,0x5f,0xe0,0x2, 0x17,0x0, 0xb7,0x3f,0x9f,0x7f,0xe7,0x6, 0xcf,0x1d, -0xb7,0x7f,0xe0,0x61,0x3f,0x82,0xe0,0x8, 0xcf,0x80,0xe0,0x61,0x3f,0x92,0x38,0x82, -0xe0,0x3, 0x1f,0xa9,0x16,0x80,0x9f,0xf, 0xe7,0xf, 0xcf,0x1d,0xb7,0xf, 0xe1,0xff, -0x17,0x7f,0xe0,0x3, 0x1f,0xa3,0xa7,0x8f,0xe0,0x2, 0xbf,0xf, 0x38,0x82,0xe0,0x3, -0x1f,0xa3,0x16,0x80,0xa7,0x8f,0xe0,0x2, 0x9f,0x3f,0xe7,0xb, 0xcf,0x1d,0xe0,0x2, -0xb7,0x3f,0x16,0x81,0xe0,0x2, 0x9f,0x3f,0xe7,0xb, 0xcf,0x1d,0xe0,0x2, 0xb7,0x3f, -0x38,0x82,0xe0,0x3, 0x1f,0xa3,0x17,0x0, 0xa7,0x8f,0xe0,0x1, 0xb7,0x3f,0xe0,0xab, -0x17,0x2a,0xe0,0x3, 0x1f,0x8d,0xa7,0x8f,0xe0,0x1, 0xb7,0x1f,0x17,0x1, 0xe0,0x1, -0x9e,0xbf,0xe7,0x0, 0xce,0x9e,0xe0,0x1, 0xb6,0xbf,0xe0,0x2, 0x1f,0xc7,0xa7,0x8f, -0x9e,0xff,0xe7,0x7, 0xce,0x9e,0xb6,0xff,0x9e,0xff,0xe7,0x3, 0xce,0x9e,0xb6,0xff, -0xe0,0x61,0x3f,0x82,0xcf,0x84,0xe0,0x61,0x3f,0x92,0xe0,0x61,0x3f,0x82,0xe0,0x1, -0xcf,0x80,0xe0,0x61,0x3f,0x92,0xe0,0x61,0x3f,0x82,0xe1,0x0, 0xcf,0x80,0xe0,0x61, -0x3f,0x92,0x38,0x82,0xe0,0x3, 0x1f,0xa3,0xe0,0x41,0x3f,0x8, 0xa7,0x8f,0xa6,0xcf, -0x3e,0xde,0xbe,0xcf,0x2c,0xa2,0xa7,0x2f,0x3f,0x48,0xbf,0x2f,0x16,0x81,0xe0,0x1, -0x9f,0x3f,0xe3,0xf8,0xc7,0x0, 0xe0,0x1, 0xb7,0x3f,0xe0,0x1, 0x9f,0x3f,0x3c,0x4e, -0xe0,0x1, 0xb4,0x3f,0xe0,0xab,0x17,0x2a,0xe0,0x3, 0x1f,0x8d,0xa7,0x8f,0xe0,0x1, -0xb7,0x1f,0x9f,0x1f,0xe7,0x6, 0xcf,0x1a,0xb7,0x1f,0xe0,0x1, 0x9f,0x3f,0xe7,0x0, -0xcf,0x1d,0xe0,0x1, 0xb7,0x3f,0x38,0x82,0xa6,0xaf,0x3f,0x5d,0x0, 0xdf,0x8, 0xb3, -0xe0,0x3, 0x1f,0xa3,0x39,0xe8,0xa1,0xf, 0x14,0x0, 0xe0,0x2, 0xbc,0x2, 0x3d,0x69, -0xe0,0x0, 0x21,0xf0,0x3f,0x63,0xe3,0x10,0xc7,0x0, 0xe1,0x10,0x17,0x80,0x3f,0x7f, -0x1, 0x87,0xe2,0x0, 0xcc,0x81,0x1, 0x84,0xe0,0x1, 0xc9,0xc0,0x14,0x8, 0xe0,0x2, -0xa7,0x82,0xe2,0x0, 0xcd,0x1, 0x3f,0xc3,0xe0,0x2, 0xbf,0x82,0xe0,0x0, 0x1, 0xdf, -0x3f,0xe3,0xe2,0x1, 0xc7,0xc0,0xe2,0x1, 0xcf,0xc0,0x1, 0x83,0x14,0x80,0xdf,0xab, -0xe0,0x1, 0x1f,0x89,0xe6,0xfd,0xcf,0x53,0xa7,0x8f,0xe2,0x0, 0xcf,0x7, 0x9e,0x9f, -0xe0,0x0, 0x1, 0xc1,0x17,0x1, 0xe7,0x5, 0xce,0x9e,0xb6,0x9f,0xe0,0x1, 0x9f,0xb2, -0xe7,0xa, 0xcf,0x9e,0xe0,0x1, 0xb7,0xb2,0x3f,0xe3,0xe2,0x4, 0xc7,0x80,0x27,0x88, -0xe0,0x1, 0x9f,0xb2,0x17,0x1, 0xe7,0xb, 0xcf,0x9e,0xe0,0x1, 0xb7,0xb2,0x3f,0x63, -0xe2,0x0, 0xc7,0x8, 0xe0,0x1, 0x9f,0xb2,0x27,0x2, 0x17,0x1, 0xe7,0xc, 0xcf,0x9e, -0xe0,0x1, 0xb7,0xb2,0x3f,0x63,0xe0,0x3, 0x1f,0x9d,0xe2,0x0, 0xc7,0x24,0xa7,0x8f, -0xe2,0x0, 0xcf,0x24,0x9e,0xdf,0x1, 0x98,0x17,0x1, 0xe7,0x2, 0xce,0x9e,0xb6,0xdf, -0xe2,0x40,0xc1,0x80,0xe0,0x1, 0x9f,0xb2,0xe7,0xd, 0xcf,0x9e,0xe0,0x1, 0xb7,0xb2, -0xe0,0x1, 0x9f,0xb2,0x21,0x8b,0x17,0x1, 0xe7,0xe, 0xcf,0x9e,0xe0,0x1, 0xb7,0xb2, -0x9, 0xe1,0x17,0x0, 0x0, 0xc1,0x17,0x0, 0x0, 0xe9,0xe7,0xe, 0xcf,0x93,0x0, 0xf7, -0xe2,0x0, 0xcc,0x81,0xe7,0xff,0x1, 0x2e,0x3c,0x63,0x17,0x82,0xe0,0x2f,0x3d,0xf, -0x2f,0x85,0x14,0x85,0xe0,0x2a,0x3d,0x9, 0x25,0x6c,0x3f,0xe3,0xe2,0x1, 0xc7,0xc0, -0xe2,0x1, 0xcf,0xc0,0x1, 0x84,0x15,0x1, 0x14,0x80,0xdf,0x45,0xe6,0xfd,0xcf,0xd3, -0xe2,0x0, 0xcf,0x87,0x1, 0x8f,0xe0,0x1, 0x1f,0x89,0x17,0x1, 0xa7,0x8f,0x9e,0x9f, -0xe7,0x5, 0xce,0x9e,0xb6,0x9f,0xe0,0x1, 0x9f,0xb2,0xe7,0xa, 0xcf,0x9e,0xe0,0x1, -0xb7,0xb2,0x3f,0xe3,0xe2,0x0, 0xc7,0xa4,0xe2,0x0, 0xcf,0xa4,0x1, 0x8f,0xe0,0x3, -0x1f,0x9d,0x17,0x1, 0xa7,0x8f,0x9e,0xdf,0xe7,0x2, 0xce,0x9e,0xb6,0xdf,0xe0,0x1, -0x9f,0xb2,0xe7,0xd, 0xcf,0x9e,0xe0,0x1, 0xb7,0xb2,0xe3,0x10,0xc1,0x80,0xe1,0x10, -0x17,0x80,0x39,0xff,0xe7,0xff,0x1, 0xb6,0xe0,0x4, 0x1f,0xe8,0x16,0x81,0xa7,0x8f, -0x9f,0x5f,0xe7,0xb, 0xcf,0x1d,0xb7,0x5f,0xe7,0xff,0x0, 0xac,0x8, 0xb3,0xe0,0x4, -0x19,0xf9,0x8f,0x83,0xe2,0x1, 0xcf,0x81,0x1, 0x98,0x39,0x68,0x2c,0x19,0xe0,0x3, -0x1f,0x8d,0xe0,0xab,0x16,0x2a,0xa7,0x8f,0x16,0x81,0xe0,0x1, 0xb6,0x1f,0xe0,0x2, -0x9f,0x7f,0xe7,0xf, 0xcf,0x1d,0xe0,0x2, 0xb7,0x7f,0x39,0x80,0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17,0x0, 0xaf,0x3, 0x9, 0xe1,0xe2,0x0, -0xc9,0x1, 0x3c,0x69,0x1, 0xb1,0x3f,0x83,0x3c,0xe2,0xdf,0x12,0xe0,0x3, 0x1f,0x8d, -0xe0,0xab,0x17,0x2a,0xa7,0x8f,0xe0,0x1, 0xb7,0x1f,0xe0,0x2, 0x9e,0xff,0xe7,0xf, -0xce,0x92,0xe0,0x2, 0xb6,0xff,0xe0,0x3, 0x9e,0x9f,0xe7,0xf, 0xce,0x92,0xe0,0x3, -0xb6,0x9f,0x9e,0x9f,0xe7,0x1, 0xce,0x92,0xb6,0x9f,0x3a,0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,0x3, 0x1e,0xa3,0xe1,0xff,0x16,0x7f, -0xa6,0x8d,0xe0,0x2, 0xbe,0xd, 0x16,0x80,0xe0,0x1, 0xb7,0x1f,0x9f,0x1f,0xe7,0x1, -0xcf,0x1d,0xb7,0x1f,0x0, 0xca,0xe2,0x0, 0xc9,0x2, 0x1, 0xb5,0x3f,0x83,0x3c,0xe2, -0xde,0xdf,0xef,0xfe,0xde,0x46,0xe0,0x3, 0x1f,0xd, 0x2c,0x15,0xa7,0x8e,0xe0,0xab, -0x16,0xaa,0xe0,0x1, 0xb6,0x9f,0x16,0x1, 0xe0,0x2, 0x9e,0xff,0xe7,0xf, 0xce,0x9c, -0xe0,0x2, 0xb6,0xff,0x9e,0x9f,0xe7,0x2, 0xce,0x98,0xb6,0x9f,0x9e,0x9f,0xe7,0x0, -0xce,0x9c,0xb6,0x9f,0x3a,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0xe0,0x3, 0x1f,0xa3,0xe1,0xff,0x16,0x7f,0xa7,0x8f,0xe0,0xab,0x16,0xaa, -0xe0,0x2, 0xbe,0xf, 0xa7,0x8e,0xe0,0x1, 0xb6,0x9f,0x16,0x80,0x9f,0x1f,0xe7,0x0, -0xcf,0x1d,0x0, 0xc8,0xe2,0x0, 0xc9,0x5, 0xe7,0xff,0x1, 0x90,0x3f,0x83,0x3c,0xe2, -0xde,0xa7,0xef,0xfe,0xde,0xe, 0xe0,0x3, 0x1e,0x8d,0x2c,0x15,0xa7,0x8d,0xe0,0xab, -0x17,0x2a,0xe0,0x1, 0xb7,0x1f,0x17,0x1, 0xe0,0x2, 0x9e,0x7f,0xe7,0xf, 0xce,0x1e, -0xe0,0x2, 0xb6,0x7f,0x9e,0x1f,0xe7,0x0, 0xce,0x1e,0xb6,0x1f,0x9e,0x1f,0xe7,0x2, -0xce,0x1e,0xb6,0x1f,0x3a,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0xe0,0x3, 0x1f,0xa3,0xe1,0xff,0x16,0x7f,0xa7,0x8f,0xe0,0x2, 0xbe,0xf, -0xa7,0x8d,0xe0,0xab,0x16,0xaa,0xe0,0x1, 0xb6,0x9f,0x16,0x80,0x9f,0x1f,0xe7,0x0, -0xcf,0x1d,0xb7,0x1f,0x9f,0x1f,0xe7,0x2, 0xcf,0x1d,0xe7,0xff,0x0, 0x8c,0xe0,0x0, -0x1c,0xf2,0xe0,0x3, 0x1f,0xb0,0x9f,0x9, 0x2c,0xf, 0xe7,0x7, 0xcf,0x18,0xb7,0x9, -0x15,0x1, 0x9f,0x9, 0xe7,0x6, 0xcf,0x18,0xb7,0x9, 0x9f,0x9, 0xb7,0xf, 0xe0,0x1a, -0x14,0x1, 0xe0,0xd0,0x0, 0xc9,0x15,0x1, 0xe7,0x7, 0xcf,0x1a,0xb7,0x9, 0x9f,0x9, -0xe7,0x6, 0xcf,0x1a,0xb7,0x9, 0x9f,0x9, 0xb7,0xf, 0x0, 0xf2,0x2c,0x3, 0xe0,0xc8, -0x0, 0xfa,0x38,0x82,0x8, 0xb4,0xe0,0x0, 0x19,0x75,0xe6,0xff,0xc9,0xf8,0xe0,0x7, -0x9f,0xe2,0xe0,0x3, 0x1a,0x31,0xe7,0xf, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2,0x15,0x1, -0xe0,0x7, 0x9f,0xe2,0xe0,0x0, 0x1c,0xda,0xe7,0xe, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2, -0xe0,0x20,0x14,0x3e,0xe0,0x7, 0x9f,0xe2,0xe7,0xd, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2, -0xe0,0x7, 0x9f,0xe2,0xe0,0x7, 0xb7,0xe4,0xe0,0x6, 0xd8,0x16,0xe0,0x7, 0x9f,0xa2, -0xe0,0x0, 0x1c,0xd9,0xe7,0xf, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0x15,0x1, 0xe0,0x7, -0x9f,0xa2,0xe0,0x20,0x14,0x3a,0xe7,0xd, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0xe0,0x7, -0x9f,0xa2,0xe7,0x7, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0xe0,0x7, 0x9f,0xa2,0xe7,0x0, -0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0xe0,0x7, 0x9f,0xa2,0xe0,0x7, 0xb7,0xa4,0xe0,0x6, -0xd7,0xf3,0xe0,0x6, 0x9f,0xd2,0xe0,0x0, 0x1c,0xd8,0xe7,0x5, 0xcf,0x93,0xe0,0x6, -0xb7,0xd2,0x15,0x1, 0xe0,0x6, 0x9f,0xd2,0xe0,0x20,0x14,0x35,0xe0,0x6, 0xb7,0xd4, -0xe0,0x6, 0xd7,0xe2,0xe0,0x6, 0x9f,0xe2,0xe0,0x0, 0x1c,0xd7,0xe7,0xf, 0xcf,0x93, -0xe0,0x6, 0xb7,0xe2,0x15,0x1, 0xe0,0x6, 0x99,0x62,0xe0,0x20,0x14,0x36,0xe0,0x6, -0xb1,0x64,0xa, 0x21,0xe0,0xcf,0x0, 0xd0,0x8, 0xb1,0xe0,0x6, 0xd6,0x3d,0xe0,0x3, -0x1f,0xb8,0x8f,0x8f,0x2f,0x84,0x8, 0xa1,0xe7,0xd0,0x0, 0xb2,0x8, 0xe1,0xe0,0x3, -0x1f,0x8d,0x16,0x81,0xa7,0x8f,0x9f,0x5f,0xe7,0x3, 0xcf,0x1d,0xb7,0x5f,0xe0,0x0, -0x16,0xf7,0xe0,0x2, 0x1f,0xb4,0xa7,0x8f,0x9f,0x5f,0xe7,0x20,0xcf,0xd, 0xb7,0x5f, -0x38,0x82,0xe0,0x2, 0x1f,0xb4,0xa7,0x8f,0x9f,0x5f,0xe7,0x20,0xcf,0x8, 0xb7,0x5f, -0x38,0x82,0x24,0x3, 0xe7,0xf7,0x0, 0x82,0x38,0x82,0x8, 0xb4,0xe1,0xff,0x11,0xff, -0x39,0x68,0xe0,0x7, 0x12,0x68,0xc1,0x7f,0xe3,0xff,0xc1,0x7f,0x39,0x73,0x1, 0x82, -0xa, 0x61,0x3c,0x64,0xdb,0x72,0x0, 0xf8,0x17,0x80,0xe2,0x0, 0xcc,0x8, 0x2, 0x83, -0x3c,0x6f,0x38,0x82,0xc4,0x1, 0xc7,0x81,0xe6,0xcf,0xcc,0x8, 0xe2,0x1, 0xc7,0xff, -0x0, 0xf5,0x8, 0xb2,0xe0,0x4, 0x1f,0xb4,0xe0,0x4, 0x19,0x6f,0xe0,0x13,0x8f,0xbf, -0xe4,0x0, 0xc4,0x13,0xe6,0xf9,0xcf,0xff,0xe0,0xe, 0x39,0x18,0xe0,0x1, 0x8e,0x8e, -0x27,0x8a,0xe0,0x2, 0xae,0x9e,0x39,0x18,0x8c,0x42,0x3c,0x3d,0xdf,0xde,0xe0,0x2, -0xac,0x2, 0x9, 0x61,0x8f,0xce,0x3f,0xbd,0x37,0xa1,0xe0,0x2, 0xaf,0x9e,0x0, 0xf4, -0xe0,0x3, 0x1f,0x9a,0xe4,0x0, 0xc4,0x13,0xe0,0x9, 0x8d,0xbf,0xe0,0x4, 0x1f,0xef, -0x3c,0x1f,0x8f,0x88,0x3e,0x68,0xe0,0xe, 0x37,0xa8,0x8f,0x98,0xc6,0xc, 0x3f,0xce, -0x8f,0x28,0xe0,0xd, 0x37,0x28,0x8f,0x38,0x3f,0x4d,0x3f,0x9e,0x3f,0x9b,0xe6,0xf0, -0xcf,0xf, 0xaf,0x2c,0xaf,0xbc,0x38,0x82,0x8, 0xb1,0xef,0xfc,0xd8,0xeb,0xef,0xfc, -0xd7,0x8c,0xef,0xfd,0xd8,0x3f,0xef,0xfc,0xd8,0xb6,0x8, 0xa1,0xe7,0x9d,0x0, 0xab, -0x8, 0xb1,0xef,0xfd,0xd2,0x3d,0xef,0xfd,0xd2,0xd6,0xef,0xfd,0xdb,0x55,0xef,0xfd, -0xd9,0x39,0xef,0xfd,0xd5,0xfc,0x8, 0xa1,0xe7,0xbf,0x0, 0xb5,0xe0,0x4, 0x1e,0xb4, -0xe0,0x1c,0x8f,0xdd,0xe0,0x1c,0x8e,0x4d,0xe0,0xe, 0x37,0xa8,0xe0,0xe, 0x9f,0xbd, -0x37,0xc8,0x3f,0xce,0xe0,0xaf,0x3e,0x8, 0x3f,0x69,0x3c,0x6f,0xe3,0xff,0xc4,0x7f, -0xe0,0xf, 0x3f,0x38,0xe2,0x7c,0xcf,0xff,0x5, 0x5, 0xe2,0x0, 0xcc,0x83,0xc7,0x7f, -0x2, 0x83,0x2d,0x8, 0x38,0x82,0x3f,0xe9,0xc7,0xff,0x3c,0xef,0xe2,0x1, 0xc4,0xff, -0x0, 0xf0,0xac,0x8a,0x0, 0xf8,0x38,0x82,0x8, 0xb3,0xe0,0x2, 0x1f,0xb4,0x39,0x68, -0xa7,0x8f,0xe0,0x1, 0x14,0x7f,0x99,0xdf,0xdf,0x55,0xe2,0x0, 0xc9,0x1, 0xe2,0x1, -0xc1,0xff,0x1, 0x9e,0x3c,0x62,0xe0,0x6, 0xd2,0xb4,0xe0,0x2, 0x1f,0x85,0xe0,0x3, -0x1f,0x2f,0x8f,0x8f,0xe2,0x0, 0xcf,0x82,0xe0,0x0, 0x1f,0xed,0x9e,0x8f,0x5, 0x97, -0x16,0x0, 0xe7,0x9, 0xce,0x9c,0xb6,0x8f,0x9e,0x8e,0xe7,0x9, 0xce,0x9c,0xb6,0x8e, -0xe0,0x1a,0x14,0x5, 0x9c,0x8f,0xe0,0x6, 0xd6,0xd5,0x14,0xa, 0xdf,0x3b,0x3c,0x62, -0xe0,0x6, 0xd2,0xd7,0x3c,0x63,0x9, 0xa1,0xe7,0xfe,0x0, 0xad,0xe7,0x9, 0xce,0x92, -0xb6,0x8f,0x9e,0x8e,0xe7,0x9, 0xce,0x92,0x0, 0xeb,0x3c,0x79,0x5, 0x95,0xe0,0xf, -0x3c,0x29,0xe4,0x4e,0xc7,0x90,0xea,0x1f,0x7e,0x6c,0xe1,0x2f,0x3f,0xb9,0xa6,0x8c, -0xea,0x1f,0x7f,0x68,0x3e,0xff,0x3, 0x8b,0xe0,0xd, 0x3f,0xad,0xe2,0x0, 0xce,0x89, -0x5, 0x8a,0x16,0x80,0x0, 0x8a,0xe0,0xf, 0x3c,0xa8,0x0, 0xec,0x5, 0x83,0x3e,0xaf, -0x0, 0xf6,0x1, 0xf8,0xa6,0x8e,0xc6,0x81,0xbe,0x8e,0xbf,0x8c,0xa7,0x8e,0xe2,0x0, -0xcf,0x84,0x17,0x80,0x5, 0x98,0x3c,0x79,0xbf,0x8e,0x5, 0x91,0x3c,0x29,0xe4,0x7, -0xc4,0x68,0xe0,0x0, 0x17,0xcb,0xe1,0x29,0x3c,0x39,0xe4,0x0, 0xc4,0xe4,0xe1,0x29, -0x3c,0xbf,0xe0,0x2, 0x1f,0xba,0xb4,0x8f,0x14,0x1, 0x0, 0x86,0x3, 0xfe,0xe0,0x8, -0x3c,0xa8,0x0, 0xee,0x3c,0x6f,0x38,0x82,0x8, 0xb2,0xe0,0x0, 0x19,0x75,0xe0,0xd4, -0x17,0x80,0xe0,0xb, 0xb7,0xe2,0x17,0x18,0xe0,0xb, 0x9f,0xf2,0xe0,0x20,0x14,0xde, -0xe7,0x20,0xcf,0x8e,0xe0,0xb, 0xb7,0xf2,0x14,0x0, 0xe0,0xb, 0x9d,0x62,0xe0,0x6, -0xd5,0xa9,0xe0,0xb, 0x9d,0x72,0xe0,0x20,0x14,0xdf,0x14,0x0, 0x9, 0x21,0xe0,0xcb, -0x0, 0xa1,0x8, 0xb2,0xe0,0x1, 0x1f,0x93,0xe0,0x0, 0x19,0x75,0x9f,0xf, 0xe0,0x5, -0x1f,0xc5,0xe0,0x20,0x14,0xdc,0xe0,0x2f,0x3f,0xbe,0x14,0x0, 0xe0,0xb, 0xb7,0xc2, -0xe6,0xe8,0xcf,0x8f,0xe0,0xb, 0x9f,0x52,0xe7,0x20,0xcf,0xf, 0xe0,0xb, 0xb7,0x52, -0xe0,0xb, 0x9d,0x42,0xe0,0x6, 0xd5,0x86,0xe0,0xb, 0x9d,0x52,0xe0,0x20,0x14,0xdd, -0x14,0x0, 0x9, 0x21,0xe0,0xca,0x0, 0xfe,0xe0,0x1, 0x1f,0x93,0xe0,0x20,0x14,0xdb, -0x9f,0xf, 0xe0,0x5, 0x1f,0xc5,0x14,0x0, 0xe0,0x2f,0x3f,0xbe,0xe3,0xd, 0x17,0x20, -0xe4,0x0, 0xc7,0xcb,0xe0,0x2f,0x3f,0xbe,0xe0,0x0, 0x1f,0x75,0xe0,0xb, 0xb7,0xbe, -0xe0,0xb, 0x9d,0x3e,0xe0,0xca,0x0, 0xe6,0x8, 0xb3,0xe0,0xd5,0x15,0x45,0x39,0x68, -0x39,0xe9,0x14,0x0, 0xe0,0x1e,0x14,0x88,0xe0,0x6, 0xd5,0x5c,0x3d,0x63,0x3c,0xe2, -0x14,0x0, 0x9, 0xa1,0xe0,0xca,0x0, 0xd6,0x8, 0xb6,0xe0,0x20,0x12,0xd3,0xe0,0x0, -0x19,0x75,0x3c,0xe5,0x14,0x0, 0xe0,0x6, 0xd5,0x19,0xe0,0x20,0x13,0x56,0x3c,0xe6, -0xe0,0xa, 0xb4,0x32,0x14,0x0, 0xe0,0x6, 0xd5,0x11,0xe0,0x20,0x12,0x64,0x3c,0xe4, -0xe0,0xa, 0xb4,0x62,0x14,0x0, 0xe0,0x6, 0xd5,0x9, 0xe0,0xc, 0xb4,0x42,0x17,0x81, -0xe0,0xa, 0x9f,0x62,0x11,0x80,0xe7,0x9, 0xcf,0x1f,0xe0,0xa, 0xb7,0x62,0x3c,0xe6, -0xe0,0xa, 0x9f,0x32,0x3c,0x63,0xe7,0xd, 0xcf,0x13,0xe0,0xa, 0xb7,0x32,0xe0,0xa, -0x9f,0x32,0xe7,0xb, 0xcf,0x1f,0xe0,0xa, 0xb7,0x32,0xe0,0xc, 0x9f,0x42,0xe7,0x8, -0xcf,0x1f,0xe0,0xc, 0xb7,0x42,0xe0,0xc, 0x9f,0x42,0xe7,0xf, 0xcf,0x1f,0xe0,0xc, -0xb7,0x42,0xe0,0xa, 0x9d,0x62,0xe0,0x6, 0xd5,0x15,0xe0,0xa, 0x9d,0x32,0x3c,0xe5, -0x3c,0x63,0xe0,0x6, 0xd5,0xf, 0xe0,0xc, 0x9d,0x42,0x3c,0xe4,0x3c,0x63,0xe0,0x6, -0xd5,0x9, 0xb, 0x21,0xe0,0xc4,0x0, 0xac,0x8, 0xb5,0xe0,0x0, 0x19,0x75,0x11,0x80, -0xe0,0xa, 0x9f,0xf2,0x12,0x1, 0xe7,0xf, 0xcf,0x93,0xe0,0xa, 0xb7,0xf2,0xe0,0x5, -0x3c,0x54,0xe0,0xa, 0x9f,0xf2,0x17,0x1e,0xe7,0xe, 0xcf,0x99,0xe0,0xa, 0xb7,0xf2, -0x3c,0x63,0xe0,0xa, 0x9f,0xf2,0xe0,0x20,0x14,0xd7,0xe7,0xc, 0xcf,0xa4,0xe0,0xa, -0xb7,0xf2,0xe0,0xa, 0x9f,0xf2,0xe7,0xa, 0xcf,0xa3,0xe0,0xa, 0xb7,0xf2,0xe0,0xa, -0x9f,0xf2,0xe7,0x9, 0xcf,0x95,0xe0,0xa, 0xb7,0xf2,0xe0,0xa, 0x9f,0xf2,0xe7,0x6, -0xcf,0xb4,0xe0,0xa, 0xb7,0xf2,0xe0,0xa, 0x9f,0xf2,0xe7,0x0, 0xcf,0xee,0xe0,0xa, -0xb7,0xf2,0xe0,0xa, 0x9d,0x72,0xe0,0x6, 0xd4,0xcd,0xe0,0xb, 0x9f,0x82,0x17,0x1f, -0xe7,0x9, 0xcf,0x95,0xe0,0xb, 0xb7,0x82,0x3c,0x63,0xe0,0xb, 0x9f,0x82,0xe0,0x20, -0x14,0xd8,0xe7,0x8, 0xcf,0x94,0xe0,0xb, 0xb7,0x82,0xe0,0xb, 0x9f,0x82,0xe7,0x7, -0xcf,0x93,0xe0,0xb, 0xb7,0x82,0xe0,0xb, 0x9f,0x82,0xe7,0x6, 0xcf,0x93,0xe0,0xb, -0xb7,0x82,0xe0,0xb, 0x9f,0x82,0xe7,0x0, 0xcf,0xee,0xe0,0xb, 0xb7,0x82,0xe0,0xb, -0x9d,0x2, 0xe0,0x6, 0xd4,0xa7,0xe0,0xc, 0xb1,0x82,0xe0,0x20,0x14,0xe0,0xe0,0xc, -0x9d,0x2, 0x3c,0x63,0xe0,0x6, 0xd4,0x9e,0xdf,0x20,0xe0,0x82,0x14,0x1e,0xde,0xfa, -0xa, 0xa1,0xe7,0xfd,0x0, 0xdb,0x8, 0xb1,0xdf,0x40,0x14,0x80,0x3c,0x69,0x8, 0xa1, -0xe7,0xff,0x0, 0x8c,0x8, 0xb3,0xc0,0x60,0xeb,0x6e,0x7c,0xac,0x3c,0x60,0x15,0x14, -0xe9,0xff,0xc4,0xfe,0xc4,0x10,0xef,0xf9,0xd6,0xaf,0xeb,0x6e,0x7f,0xc0,0xe9,0xff, -0xc7,0xfe,0xf8,0xf, 0x8, 0x1, 0x9f,0xcf,0x3f,0x60,0x77,0x86,0xc7,0x4, 0xe0,0x0, -0x1f,0xfc,0xf8,0xe, 0x8, 0x11,0x8f,0x8f,0xe2,0x0, 0xcf,0xd5,0x1, 0x86,0xe0,0x3, -0x1f,0x92,0x9f,0x8f,0xe0,0x0, 0x27,0xd1,0xe0,0x20,0x14,0xe2,0x14,0x0, 0xe0,0x6, -0xd4,0x35,0x39,0x68,0xe0,0x20,0x14,0xe3,0x14,0x0, 0xe0,0x6, 0xd4,0x2f,0xe6,0xb8, -0xcc,0x8, 0x39,0x18,0xe0,0x20,0x14,0xdc,0x14,0x0, 0xe0,0x6, 0xd4,0x27,0x39,0xe8, -0xe0,0x20,0x14,0xdd,0x14,0x0, 0xe0,0x6, 0xd4,0x21,0xe6,0xb8,0xcc,0x8, 0x39,0x98, -0x3c,0xe3,0x3c,0x62,0xde,0x53,0x24,0x2d,0x3e,0xe0,0xc6,0x90,0x17,0x80,0x15,0x94, -0xe1,0x80,0xa7,0x1d,0x3f,0x72,0xe1,0x2c,0x3f,0x3b,0x4, 0x87,0xe0,0xa, 0x3f,0x22, -0x3e,0x7a,0x2, 0x87,0x3f,0x72,0x2, 0x99,0xe0,0xa, 0x39,0x2e,0x3e,0x7a,0x5, 0x95, -0xe2,0x0, 0x7e,0xa0,0x37,0xa1,0xe0,0x1, 0x19,0x13,0x3f,0x9d,0xe0,0x41,0x9f,0xef, -0x9e,0x82,0x3e,0xff,0x1, 0x7, 0x3f,0x73,0x1, 0x5, 0x14,0x80,0x3c,0x69,0xb7,0x82, -0xdf,0x24,0x9c,0x2, 0xc0,0x20,0x9, 0xe1,0xc7,0x81,0xe2,0x0, 0xcf,0x85,0x1, 0xd9, -0xe0,0x2e,0x14,0x70,0x0, 0xf8,0x0, 0xf7,0xe0,0x3, 0x1f,0x59,0xe0,0x4, 0x1e,0x83, -0x8e,0xe, 0x3f,0xec,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x8a,0x3e,0x9c, -0xaf,0x8e,0x8c,0xd, 0x5, 0x83,0x17,0x80,0xaf,0x8e,0x38,0x82,0x8, 0xb7,0xf8,0x0, -0xc, 0x3a,0xc0,0x6c,0xeb,0x6e,0x7f,0x40,0xe9,0xff,0xc7,0x7e,0xe0,0x0, 0x1b,0xfc, -0xf8,0xe, 0x8, 0x1, 0x9f,0x4e,0x8a,0x7, 0x3f,0xe0,0x77,0xa, 0xe0,0x2, 0x17,0x1a, -0x11,0x80,0xc7,0x8c,0x77,0x2, 0xe2,0x0, 0xca,0x55,0x17,0x28,0xf8,0xf, 0x8, 0x11, -0x39,0x67,0x79,0x82,0x6f,0x6, 0xe0,0x4, 0x1, 0xfb,0xeb,0xfd,0x7b,0x6e,0xe8,0x0, -0xc3,0x0, 0x8f,0x6, 0xe0,0x0, 0x27,0x70,0xe0,0x4, 0x1a,0x3, 0x17,0x6e,0xaf,0x4, -0xe0,0x4, 0x1f,0x58,0x8f,0xe, 0x37,0x21,0x3f,0x9e,0xe0,0x1, 0x1f,0x13,0x9f,0x8f, -0x9e,0xe, 0x3f,0xfc,0x1, 0x29,0xea,0x1f,0x7e,0xe4,0x9f,0xd, 0xc7,0x1, 0xe3,0xff, -0xc7,0x7f,0xe2,0x0, 0xcf,0x9, 0xb7,0xd, 0xe0,0x3, 0x1f,0x12,0x5, 0x95,0xaf,0x94, -0x37,0xc8,0xaf,0xa4,0x17,0xea,0xae,0x44,0x36,0x48,0xe0,0x1, 0xaf,0xa4,0x17,0xef, -0xa9,0xb4,0xb1,0xb4,0xb1,0xc4,0xb1,0x8d,0xb1,0x8e,0xae,0x54,0xaf,0x87,0xc0,0x14, -0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0x17,0x81,0x3c,0x63,0x3c,0xe3,0xb7,0x8e,0xde,0xad, -0x14,0xa, 0xdc,0xe4,0x0, 0xf5,0x14,0x81,0x3c,0x63,0xaf,0x94,0x37,0xc8,0xaf,0xa4, -0xa9,0xb4,0xde,0xa3,0x14,0x14,0xdc,0xda,0xe0,0x3, 0x1f,0xd9,0xe0,0x20,0x14,0xe2, -0x3c,0x63,0xa9,0x8f,0xe0,0x6, 0xd3,0x6a,0xe0,0x20,0x14,0xe3,0xf0,0x40,0x3c,0x68, -0x3c,0x63,0xe0,0x6, 0xd3,0x63,0xe0,0x20,0x14,0xdc,0x3a,0xe8,0x3c,0x63,0xe0,0x6, -0xd3,0x5d,0xe0,0x20,0x14,0xdd,0x3c,0x63,0xe0,0x6, 0xd3,0x58,0xe0,0x3, 0x1f,0xda, -0x8f,0x8f,0x2f,0x85,0xe0,0x0, 0x17,0xe6,0xaf,0x87,0x0, 0xca,0xe6,0xb8,0xcc,0x5, -0xe8,0x8, 0x3c,0x18,0xe0,0xf, 0x34,0x48,0xac,0x44,0xe4,0x8, 0x34,0x40,0xaf,0xd4, -0xa9,0x86,0xac,0x64,0xea,0x1f,0x7a,0xe2,0x8f,0x85,0xe0,0x20,0x14,0xe1,0xc7,0x81, -0x14,0x0, 0xaf,0x85,0xe0,0x6, 0xd3,0x3a,0x8e,0x85,0xea,0x1f,0x7f,0xc4,0x3f,0x6d, -0xc7,0x7f,0x37,0x21,0xe6,0xfa,0xcc,0x28,0x3f,0x1f,0xe2,0x0, 0xce,0x81,0xb4,0xe, -0xe7,0xff,0x5, 0xa7,0x3f,0x6d,0xc7,0x7e,0x37,0x21,0x3f,0x9e,0x9f,0x8f,0x3f,0xf8, -0x1, 0xa, 0x17,0x80,0xaf,0x85,0xea,0x1f,0x7f,0xc0,0x9f,0xf, 0xc7,0x1, 0xb7,0xf, -0xe7,0xff,0x0, 0x97,0xea,0x1f,0x7f,0x3e,0xe2,0x0, 0xce,0x8a,0x9f,0x8e,0xe0,0x3, -0x5, 0xc0,0xc7,0x81,0xb7,0x8e,0xea,0x1f,0x7f,0xc0,0x17,0x0, 0xe0,0x20,0x14,0xe2, -0x14,0x0, 0xb7,0xf, 0xe0,0x6, 0xd3,0xa, 0x3a,0x68,0xe0,0x20,0x14,0xe3,0x14,0x0, -0xe0,0x6, 0xd3,0x4, 0xe6,0xb8,0xcc,0x8, 0xe0,0x20,0x14,0xdc,0x3a,0x18,0x14,0x0, -0xe0,0x6, 0xd2,0xfc,0x39,0xe8,0xea,0x1f,0x7b,0xbc,0xe0,0x20,0x14,0xdd,0x14,0x0, -0xe0,0x6, 0xd2,0xf4,0x8f,0x87,0xe6,0xb8,0xcc,0x8, 0x3c,0x13,0x2f,0x9c,0xe0,0x5, -0x1f,0x82,0x8f,0xf, 0xe2,0x0, 0xcf,0x3, 0x2, 0x96,0x3a,0x78,0xe0,0x0, 0x5, 0xc3, -0xe2,0x0, 0x7f,0x94,0x3f,0x9e,0xe0,0x42,0x8f,0x9f,0xe3,0xd, 0x16,0x20,0xe4,0x0, -0xc7,0xcb,0xe0,0xd, 0x3a,0x28,0x3f,0xb8,0xe1,0x2f,0x3f,0xbc,0x3e,0xff,0x5, 0xb2, -0x17,0x81,0xaf,0x87,0x8f,0x87,0xe0,0x2, 0x27,0xe8,0x3a,0x78,0xe0,0x4, 0x5, 0xa3, -0x3f,0xe8,0xe4,0x2, 0xc7,0xac,0xe3,0xd, 0x16,0xa0,0xe1,0x2f,0x3f,0xbd,0xe0,0xe, -0x3a,0x28,0x3f,0x7f,0xe0,0x0, 0x5, 0xc7,0xe0,0x1e,0x14,0x8a,0x14,0x0, 0xe0,0x6, -0xd2,0xbd,0x14,0xff,0x3c,0x98,0xea,0x1f,0x79,0x3a,0xe3,0xff,0xc4,0xff,0xe0,0x1e, -0x14,0xa, 0xb4,0x82,0xdd,0x82,0xe0,0x1e,0x14,0x8a,0x14,0x0, 0xe0,0x6, 0xd2,0xae, -0xea,0x1f,0x7f,0xb8,0xb4,0x2, 0x17,0x1, 0xb7,0xf, 0x17,0x80,0xaf,0x85,0xe7,0xfe, -0x0, 0xa0,0x3a,0x78,0x3, 0xd0,0xe2,0x0, 0x7f,0x94,0x3f,0x1f,0xe0,0x42,0x8f,0x9e, -0xe3,0xd, 0x17,0x20,0xe4,0x0, 0xc7,0xcb,0xe0,0xd, 0x3c,0x24,0x3f,0xb8,0xe1,0x2f, -0x3f,0xbe,0x3e,0xff,0xe7,0xff,0x2, 0xbe,0xe7,0xff,0x0, 0xbe,0x3f,0xe8,0xe4,0x2, -0xc7,0xac,0xe3,0xd, 0x16,0xa0,0xe1,0x2f,0x3f,0xbd,0xe0,0xe, 0x3c,0x24,0x3f,0x7f, -0xe0,0x3, 0x5, 0xc7,0xe0,0x1e,0x14,0x8a,0x14,0x0, 0xe0,0x6, 0xd2,0x7f,0x14,0x81, -0x0, 0xc2,0xe4,0x0, 0xc4,0x4b,0xe1,0x28,0x3c,0x3d,0x3f,0x78,0xe0,0x3, 0x5, 0xcd, -0xe0,0x1e,0x14,0x8b,0x14,0x0, 0xe0,0x6, 0xd2,0x71,0x14,0xff,0x3c,0x98,0xea,0x1f, -0x79,0x36,0xe3,0xff,0xc4,0xff,0xe0,0x1e,0x14,0xb, 0xb4,0x82,0xdd,0x36,0xe0,0x1e, -0x14,0x8b,0x14,0x0, 0xe0,0x6, 0xd2,0x62,0xea,0x1f,0x7f,0xb4,0xb4,0x2, 0xe7,0xff, -0x0, 0xb4,0x17,0xd0,0xe0,0x1e,0x14,0x8a,0xaf,0x82,0xe0,0x6, 0xd2,0x57,0xe7,0xfe, -0x17,0xbf,0x3c,0x5f,0xe8,0x0, 0xb4,0xa, 0xe0,0x3, 0x0, 0xc8,0x8f,0x82,0xe0,0x1e, -0x14,0x8b,0xc7,0x8d,0xaf,0x82,0xe0,0x6, 0xd2,0x49,0xe7,0xfe,0x17,0xbf,0x3c,0x5f, -0xb4,0x4, 0xe0,0x3, 0x0, 0xc7,0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xb0, -0xe0,0x4, 0x0, 0x80,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x30,0xef,0xfc, -0xd1,0x29,0x14,0x1, 0xdb,0x9b,0x4f,0x8b,0xe2,0x1, 0xcf,0xff,0x1, 0xb0,0xe8,0x0, -0x9f,0x8a,0xe7,0xfe,0x17,0x0, 0x3f,0xce,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88, -0x14,0x30,0x7f,0x82,0xef,0xfc,0xd1,0x9c,0x14,0xa, 0xdb,0x88,0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0x30,0xef,0xfc,0xd1,0xd, 0x14,0x1, 0xdb,0x7f,0xe8,0x0, -0x9f,0x8a,0x67,0x2, 0xe2,0xf, 0x3f,0xce,0xe6,0xf8,0xcf,0x8f,0x2f,0x8a,0x8f,0x82, -0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xa0,0xaf,0x82,0x17,0xe2,0xe0,0x3, 0x0, 0xcc, -0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xb0,0x0, 0xf7,0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0x32,0xef,0xfc,0xd0,0xed,0x14,0x1, 0xdb,0x5f,0x4f,0x8b, -0xe2,0x1, 0xcf,0xff,0x1, 0xb0,0xe8,0x0, 0x9f,0x8a,0xe7,0xfe,0x17,0x0, 0x3f,0xce, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x32,0x7f,0x82,0xef,0xfc,0xd1,0x60, -0x14,0xa, 0xdb,0x4c,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x32,0xef,0xfc, -0xd0,0xd1,0x14,0x1, 0xdb,0x43,0xe8,0x0, 0x9f,0x8a,0x67,0x2, 0xe2,0xf, 0x3f,0xce, -0xe6,0xf8,0xcf,0x8f,0x2f,0x8a,0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xa0, -0xaf,0x82,0x17,0xe3,0xe0,0x3, 0x0, 0x90,0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff, -0xc7,0xb0,0x0, 0xf7,0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xb0,0xaf,0x82, -0x17,0xe4,0xe0,0x3, 0x0, 0x81,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x31, -0xef,0xfc,0xd0,0xa8,0x14,0x1, 0xdb,0x1a,0x4f,0x8b,0xe2,0x1, 0xcf,0xff,0x1, 0x96, -0x9f,0x84,0xe7,0xfe,0x17,0x0, 0x3f,0xce,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88, -0x14,0x31,0x7f,0x82,0xef,0xfc,0xd1,0x1c,0x14,0xa, 0xdb,0x8, 0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0x31,0xe0,0x3, 0x0, 0x82,0x15,0x80,0x15,0x1, 0xe2,0x0, -0x7c,0x88,0x14,0x33,0xef,0xfc,0xd0,0x86,0x14,0x1, 0xda,0xf8,0x4f,0x8b,0xe2,0x1, -0xcf,0xff,0x1, 0x96,0x9f,0x84,0xe7,0xfe,0x17,0x0, 0x3f,0xce,0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0x33,0x7f,0x82,0xef,0xfc,0xd0,0xfa,0x14,0xa, 0xda,0xe6, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x33,0xe0,0x2, 0x0, 0xe0,0x8f,0x82, -0xe2,0x1, 0xc7,0xf0,0xc7,0x8b,0xe0,0x2, 0x0, 0xea,0x17,0xe5,0xe0,0x1, 0xaf,0xa3, -0x17,0xdd,0xe0,0x2, 0x0, 0xe4,0xe0,0x4, 0x1f,0x83,0xe0,0xe, 0x32,0x48,0xaa,0x7f, -0xe4,0x4, 0x32,0x40,0xe0,0x1, 0xaf,0xf, 0x17,0x65,0xe0,0x1, 0xaa,0x1f,0xe0,0x1, -0xaf,0x2f,0x17,0xdd,0xaf,0x82,0x17,0x81,0xaf,0x86,0xe7,0xfb,0x0, 0xd2,0xe2,0x0, -0xcf,0xb2,0x2, 0x8c,0xea,0x1f,0x7f,0xc0,0x9f,0x8f,0x8f,0x2, 0xe2,0x2, 0xcf,0xac, -0x5, 0x87,0xe2,0x0, 0xcf,0x55,0xe7,0xfb,0x1, 0xc4,0x17,0xef,0x0, 0xec,0xe2,0x0, -0xcf,0x55,0xe7,0xfb,0x1, 0xbe,0x14,0x6, 0xe7,0xfb,0x0, 0xc5,0xe7,0xfb,0x2a,0x39, -0xe0,0x5, 0x19,0x82,0x3d,0xe4,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x32,0xaa,0x3, -0xef,0xfc,0xd0,0x28,0x14,0x1, 0xda,0x9a,0x4f,0x8b,0x3a,0xe3,0xe2,0x1, 0xcf,0xff, -0x1, 0xa6,0x3d,0xe4,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0x31,0xef,0xfc,0xd0,0x1a, -0x14,0x1, 0xda,0x8c,0x4f,0x8b,0xe2,0x1, 0xcf,0xff,0x1, 0x97,0x3d,0xe4,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0xe, 0xef,0xfc,0xd0,0xd, 0x14,0x1, 0xda,0x7f,0x4f,0x8b, -0xe2,0x1, 0xcf,0xff,0x1, 0x88,0x17,0x81,0xaf,0x83,0xe7,0xff,0x17,0x88,0xaf,0x82, -0xe7,0xfb,0x0, 0x87,0x17,0x82,0x0, 0xf9,0x17,0x83,0x0, 0xf7,0x14,0x81,0x3c,0x64, -0xdc,0x34,0x14,0x32,0xda,0x6b,0x3c,0xe4,0x3c,0x64,0xdc,0x2f,0xe0,0x20,0x14,0xe2, -0x3c,0x64,0xe0,0x6, 0xd0,0xfb,0x39,0xe8,0xe0,0x20,0x14,0xe3,0x3c,0x64,0xe0,0x6, -0xd0,0xf5,0xe6,0xb8,0xcc,0x8, 0x39,0x98,0xe0,0x20,0x14,0xdc,0x3c,0x64,0xe0,0x6, -0xd0,0xed,0x3b,0x68,0xe0,0x20,0x14,0xdd,0x3c,0x64,0xe0,0x6, 0xd0,0xe7,0xe6,0xb8, -0xcc,0x8, 0x3c,0x16,0x39,0xf8,0x5, 0x92,0x3f,0xe8,0xe4,0x17,0xc7,0xb8,0xe3,0xd, -0x16,0xa0,0xe1,0x2f,0x3f,0xbd,0xe0,0xe, 0x39,0xa8,0x3f,0x7f,0x5, 0x87,0xe0,0x0, -0x17,0xf7,0xaf,0x82,0x17,0x83,0xe7,0xfc,0x0, 0xab,0x39,0xf8,0x3, 0x8b,0xe0,0x3, -0x3c,0x23,0xe4,0x17,0xc4,0x38,0xe3,0xd, 0x17,0xa0,0xe1,0x28,0x3c,0x3f,0x39,0xf8, -0x2, 0xef,0xe7,0xff,0x17,0x99,0xaf,0x82,0x17,0x84,0xe7,0xfc,0x0, 0x99,0xe0,0xf, -0x3c,0x24,0xe4,0x0, 0xc4,0x4b,0xe3,0xd, 0x17,0x20,0xe1,0x28,0x3c,0x3e,0x3f,0xf8, -0x5, 0x8b,0xe0,0x1e,0x14,0x8b,0x14,0x0, 0xe0,0x6, 0xd0,0xb0,0x14,0x81,0xe7,0xfc, -0x0, 0xbf,0xe7,0xfc,0x4, 0x9d,0xe0,0x4, 0x19,0x83,0xe0,0xe, 0x32,0x48,0xfa,0x1f, -0x7c,0xb8,0xe0,0x1, 0xaf,0x3, 0x17,0x6f,0xe0,0x1, 0xaf,0x23,0x17,0x80,0xe0,0x3, -0x1f,0x59,0xaa,0x73,0xe4,0x4, 0x32,0x40,0xe8,0x0, 0x9c,0x9, 0xfa,0x1f,0x7d,0x3a, -0xaf,0x82,0xe0,0x1, 0xaa,0x13,0xaf,0x8e,0xe7,0xfc,0x24,0x35,0xe8,0x0, 0x9f,0x8a, -0xe3,0xfe,0xc7,0xbf,0xe8,0x0, 0xb7,0x8a,0xfa,0x1f,0x7c,0x34,0xe8,0x0, 0x9c,0x8, -0xea,0x1f,0x7a,0x36,0xe7,0xfc,0x24,0x34,0x9f,0x84,0xe3,0xfe,0xc7,0xbf,0xb7,0x84, -0xe8,0x0, 0x9f,0x89,0x2f,0x85,0xe8,0x0, 0x9f,0x88,0xe7,0xfe,0x27,0x88,0x17,0x80, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0xd, 0xe8,0x0, 0xb7,0x88,0xe8,0x0, -0xb7,0x89,0xef,0xfb,0xdf,0x5f,0x14,0x1, 0xd9,0xd1,0x4f,0x8b,0xe2,0x1, 0xcf,0xff, -0xe7,0xfc,0x1, 0xaa,0xe8,0x0, 0x9f,0x8a,0xe7,0xfe,0x17,0x0, 0x3f,0xce,0x15,0x80, -0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0xd, 0x7f,0x82,0xef,0xfb,0xdf,0xd1,0x14,0xa, -0xd9,0xbd,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0xd, 0xef,0xfb,0xdf,0x42, -0x14,0x1, 0xd9,0xb4,0xe8,0x0, 0x9f,0x8a,0x67,0x2, 0xe2,0xf, 0x3f,0xce,0xe6,0xf8, -0xcf,0x8f,0xe7,0xfc,0x2f,0x82,0x8f,0x82,0xe6,0xfc,0xcf,0xcf,0xe1,0xff,0xc7,0xa0, -0xaf,0x82,0x17,0xe1,0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0xe, 0xe0,0x1, -0xaf,0xa3,0xef,0xfb,0xdf,0x27,0x14,0x1, 0xd9,0x99,0x4f,0x8b,0xe2,0x1, 0xcf,0xff, -0xe7,0xfc,0x1, 0xf3,0x9f,0x84,0xe7,0xfe,0x17,0x0, 0x3f,0xce,0x15,0x80,0x15,0x1, -0xe2,0x0, 0x7c,0x88,0x14,0xe, 0x7f,0x82,0xef,0xfb,0xdf,0x9a,0x14,0xa, 0xd9,0x86, -0x15,0x80,0x15,0x1, 0xe2,0x0, 0x7c,0x88,0x14,0xe, 0xef,0xfb,0xdf,0xb, 0x14,0x1, -0xd9,0x7d,0x67,0x82,0x9f,0x4, 0x16,0xf0,0xe2,0xe, 0x3f,0x4f,0x8f,0x82,0xe6,0xf8, -0xcf,0xe, 0x3f,0xdd,0xe7,0xfd,0x2f,0x18,0xc7,0x8a,0xe0,0x5, 0x1f,0x2, 0xaf,0x82, -0x17,0x81,0xaf,0x86,0x17,0x80,0xaf,0x87,0xaf,0x8e,0xe7,0xfa,0x0, 0xd8,0x8, 0xb1, -0xef,0xfc,0xd0,0x9c,0x14,0x81,0x3c,0x69,0xef,0xfc,0xd1,0x98,0xef,0xfc,0xd3,0xc8, -0xd9,0xb4,0xd9,0xbf,0xe0,0x7, 0x14,0xe8,0x14,0x0, 0xd9,0xef,0xef,0xff,0xd0,0x9f, -0xef,0xfe,0xde,0x32,0xe0,0x61,0x3f,0x82,0xe0,0x40,0xcf,0x80,0xe0,0x61,0x3f,0x92, -0xe0,0x61,0x3f,0x82,0xcf,0x88,0xe0,0x61,0x3f,0x92,0xdb,0x7e,0x14,0x14,0x8, 0xa1, -0xe7,0xf2,0x0, 0xc5,0xe0,0x2, 0x1f,0xee,0x9f,0x8f,0xe6,0xf9,0xcf,0xff,0x3c,0x6f, -0x38,0x82,0xe2,0x0, 0xcc,0x1, 0x1, 0xe, 0x4, 0x86,0xe2,0x0, 0xcc,0x2, 0x1, 0x10, -0x17,0x80,0x0, 0x86,0xe0,0x2, 0x1f,0xee,0x9f,0x8f,0xe6,0xfe,0xcf,0xff,0x3c,0x6f, -0x38,0x82,0xe0,0x2, 0x1f,0xee,0x9f,0x8f,0xe6,0xfc,0xcf,0xff,0x0, 0xf9,0xe0,0x2, -0x1f,0xee,0x9f,0x8f,0xe6,0xfa,0xcf,0xff,0x0, 0xf3,0xe2,0x0, 0xcc,0x1, 0x1, 0xe, -0x4, 0x86,0xe2,0x0, 0xcc,0x2, 0x1, 0x10,0x17,0x80,0x0, 0x86,0xe0,0x2, 0x1f,0xee, -0x9f,0x8f,0xe6,0xff,0xcf,0xff,0x3c,0x6f,0x38,0x82,0xe0,0x2, 0x1f,0xee,0x9f,0x8f, -0xe6,0xfd,0xcf,0xff,0x0, 0xf9,0xe0,0x2, 0x1f,0xee,0x9f,0x8f,0xe6,0xfb,0xcf,0xff, -0x0, 0xf3,0x8, 0xb2,0xe0,0x1, 0x19,0x20,0x17,0x80,0xe0,0x3, 0x1f,0x4e,0xaf,0x82, -0x14,0x0, 0xe0,0x4, 0xaf,0xde,0xe0,0x4, 0x1f,0x3c,0xaf,0x8e,0xef,0xfd,0xdb,0xe4, -0x8f,0x82,0x3c,0x6f,0x9, 0x21,0xe7,0xbc,0x0, 0xe5,0xe0,0x4, 0x1f,0xb4,0xe0,0x13, -0x8f,0xbf,0xe6,0xfe,0xcf,0xff,0x3c,0x6f,0x38,0x82,0x8, 0xb1,0xef,0xfe,0xd5,0xd9, -0x24,0xa, 0x14,0x1, 0xef,0xfe,0xd0,0xde,0xe0,0x4, 0x1f,0xbc,0x17,0x0, 0xaf,0xf, -0xef,0xff,0xd2,0xe8,0x14,0x0, 0x8, 0xe1,0xe0,0x4, 0x1f,0xbe,0xe0,0x3, 0x1e,0xbd, -0xe0,0x2, 0x8f,0x6f,0xe2,0x0, 0xcf,0x1, 0x1, 0xa1,0x8f,0xd, 0xe0,0x1, 0x8d,0x9f, -0x16,0x0, 0x3d,0xfe,0xe0,0x3, 0xae,0xf, 0x5, 0x99,0xc7,0x1, 0xe0,0x2, 0xae,0x6f, -0xaf,0xd, 0xe0,0x3, 0x8f,0xf, 0xe2,0x0, 0xcf,0x1, 0xeb,0xfd,0x7f,0x72,0xe8,0x0, -0xc7,0x0, 0x1, 0x8e,0x8e,0x8e,0xe0,0x1, 0x8e,0xf, 0x3e,0x7d,0x5, 0x89,0x16,0x0, -0xc6,0x81,0xae,0x8e,0xe0,0x3, 0xae,0xf, 0x38,0x82,0x17,0x0, 0x0, 0xea,0x17,0x81, -0xaf,0x8e,0x0, 0xfb,0xe0,0x1, 0x1f,0x84,0x8f,0x8f,0xe0,0x0, 0x2f,0xe9,0x8, 0xb4, -0xe0,0x0, 0x1f,0x25,0x8c,0xe, 0xe0,0x0, 0x24,0x46,0xe0,0x2, 0x1f,0x31,0xe0,0x0, -0x1c,0x8b,0xe0,0xe, 0x88,0xde,0xe0,0x4, 0x1f,0x34,0x3a,0x61,0x89,0x5e,0xe0,0x2, -0x1f,0x43,0xe0,0x2, 0x19,0xf8,0xe0,0x1, 0x95,0xde,0x3e,0x6f,0xe4,0xa, 0x35,0xcf, -0x3d,0x1b,0x35,0x1, 0xc2,0x7f,0x8f,0x19,0x39,0x7e,0x5, 0xb4,0x3e,0xee,0xe0,0x1, -0xc6,0xba,0x36,0xa1,0x3e,0x93,0x96,0x8d,0x3e,0xfb,0x5, 0x5, 0xc7,0x81,0xe2,0x1, -0xc7,0xff,0x0, 0x93,0x27,0x9, 0x3e,0xee,0xe0,0x1, 0xc6,0xb9,0x36,0xa1,0x3e,0x93, -0x96,0x8d,0x3e,0xfb,0x2, 0x74,0x3f,0x74,0x3, 0x8, 0xe0,0x1, 0xc7,0x3b,0x37,0x21, -0x3f,0x13,0x97,0xe, 0x3f,0x7b,0x2, 0x6b,0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, -0xc6,0x7f,0x3c,0x7c,0xc4,0x82,0x1, 0xd8,0xea,0x20,0x7f,0x5, 0x27,0x9a,0x17,0x80, -0xaf,0x8e,0xea,0x20,0x7f,0x85,0x8f,0x8f,0xe0,0x1, 0x14,0x48,0xe1,0x28,0x3c,0x2f, -0xa, 0x61,0x8e,0x89,0xe0,0x1, 0xc7,0x78,0x3e,0x91,0xe0,0x1, 0xc6,0xf8,0x36,0xa1, -0x37,0x21,0x3e,0x93,0x3f,0x13,0x96,0x8d,0x97,0xe, 0x3f,0x1d,0x3f,0x7a,0x0, 0xdc, -0x8f,0x8e,0xe2,0x1, 0xcf,0xf9,0x2, 0xe6,0xc7,0x81,0x0, 0xe3,0x14,0x1, 0x38,0x82, -0x8, 0xb3,0xe0,0x4, 0x19,0x3e,0xe0,0x1, 0xdb,0x28,0x17,0x81,0xe0,0x3, 0xaf,0x82, -0xe0,0x1, 0x9f,0xa2,0xe0,0x43,0x3f,0x1f,0xe2,0x0, 0xcf,0x0, 0x3, 0x4, 0x17,0x0, -0xe0,0x3, 0xaf,0x2, 0xe0,0x3, 0x1f,0x6a,0x8f,0xe, 0x27,0x4, 0x17,0x0, 0xe0,0x3, -0xaf,0x2, 0xe2,0x0, 0xc7,0xa0,0x27,0x84,0x17,0x80,0xe0,0x3, 0xaf,0x82,0xe0,0x2, -0x1f,0xee,0x9f,0xf, 0x39,0xef,0x37,0x4f,0x2f,0x3, 0xe0,0x3, 0xaf,0x2, 0xdf,0x6b, -0x2c,0x9, 0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x83,0xe0,0x3, -0xaf,0x82,0xe0,0x0, 0x1f,0xae,0x8f,0x8f,0x27,0x84,0x17,0x80,0xe0,0x3, 0xaf,0x82, -0x17,0x80,0xe0,0x1, 0xb7,0xb2,0xe0,0x80,0x17,0x0, 0xe0,0x1, 0x9f,0xa2,0x3f,0x5f, -0x27,0x4, 0x17,0x1, 0xe0,0x2, 0xaf,0x62,0x3f,0x6f,0xe2,0x20,0xc7,0x0, 0x27,0x4, -0x17,0x1, 0xe0,0x2, 0xaf,0x62,0x3f,0x6f,0xe2,0x4, 0xc7,0x0, 0x27,0x10,0x3f,0x6f, -0xe2,0x0, 0xc7,0x20,0x27,0x5, 0xe0,0x5, 0x1f,0xb, 0x8f,0xe, 0x27,0x8, 0x9f,0x3, -0x37,0x4f,0x27,0x5, 0x3f,0x6f,0xe2,0x1, 0xc7,0x0, 0x27,0x4, 0x17,0x0, 0xe0,0x2, -0xaf,0x62,0xe0,0x0, 0x1f,0x1b,0x96,0x8e,0xe0,0x2, 0x1f,0x43,0x97,0x3e,0xe0,0xc, -0x37,0x21,0x3e,0xfc,0xe0,0x0, 0x4, 0x61,0x3e,0xfe,0xe0,0x0, 0x4, 0x61,0xe4,0x3, -0x37,0x4f,0x39,0x9e,0x31,0x81,0xe0,0x23,0x39,0x9d,0xc1,0x81,0xe2,0x2, 0xc7,0x80, -0xe2,0x0, 0xcf,0x80,0x17,0x84,0xe0,0x6f,0x39,0x23,0x39,0xef,0xe0,0x2, 0xd4,0xb5, -0xe0,0x2, 0x1f,0x82,0xe2,0x0, 0xcc,0x0, 0x8f,0x8f,0x17,0x1, 0xe0,0xd, 0x37,0xa8, -0xe0,0x2, 0x1f,0x81,0xe0,0x6e,0x39,0x23,0x8f,0x8f,0xe3,0xff,0xc7,0x7f,0x3f,0xcd, -0xe0,0x2, 0x1e,0x80,0x3f,0xbe,0x8e,0x8d,0xe0,0x43,0x3f,0x9f,0xe0,0xc, 0x36,0xa8, -0xe0,0x1, 0x1e,0xff,0xb7,0xb2,0x8e,0x8d,0x3e,0xcc,0x3f,0x3d,0xe0,0x0, 0x1e,0xa5, -0xe0,0x1, 0xb7,0x2, 0xe0,0x1, 0x1f,0x7e,0x8e,0x8d,0x8f,0xe, 0xe0,0x1, 0xaf,0x2, -0x26,0x8b,0xe0,0x1, 0x96,0xa2,0xe2,0x0, 0xce,0x80,0x4, 0x6, 0xe2,0x0, 0xcf,0x81, -0x5, 0x21,0x37,0x81,0xb7,0xb2,0xe0,0x3, 0x1f,0xce,0xe0,0x4, 0x8f,0xdf,0xe2,0x0, -0xcf,0x81,0x1, 0x87,0x9f,0x32,0xe0,0x1, 0xaf,0x82,0xe4,0x0, 0xc7,0x5, 0xb7,0x32, -0xe0,0x0, 0x1f,0xf6,0x8f,0x8f,0x27,0x85,0x17,0x81,0xb7,0xb2,0xe0,0x1, 0xaf,0x82, -0x9, 0xa1,0xe7,0xfd,0x0, 0x9b,0x11,0x84,0xe7,0xff,0x0, 0xaa,0x11,0x83,0xe7,0xff, -0x0, 0xa7,0x37,0x21,0xe0,0x1, 0xaf,0x2, 0x0, 0xdf,0x8, 0xb5,0xe0,0x4, 0x19,0x3e, -0xe0,0x1, 0x9f,0xa2,0xe2,0x10,0xc7,0x80,0x27,0x85,0xea,0x20,0x7f,0x84,0x17,0x1, -0xaf,0xf, 0xdf,0x1f,0xe0,0x2, 0x8f,0xe2,0x27,0xa4,0xea,0x20,0x7f,0x84,0x8f,0x8f, -0x27,0x8d,0xe0,0x1, 0x9f,0xa2,0xe2,0xa0,0xc7,0x80,0xe2,0x20,0xcf,0x80,0x1, 0x86, -0xe0,0x4, 0x1f,0xe6,0xe0,0x1, 0x17,0x48,0xb7,0xf, 0xe0,0x0, 0x1f,0xae,0x8f,0x8f, -0x27,0x88,0xe0,0x3, 0x1f,0x3d,0x17,0x80,0xe0,0x2, 0xaf,0xe2,0xaf,0x8e,0xa, 0xe1, -0xe0,0x4, 0x1f,0xc3,0x17,0x1, 0xaf,0xf, 0x17,0x4, 0xe0,0x3, 0x1f,0xc4,0xaf,0xf, -0xe0,0x3, 0x19,0xc4,0xe0,0x4, 0x1a,0x43,0x8a,0x83,0x2a,0x8a,0xef,0xf9,0xd3,0x4e, -0xef,0xf9,0xdb,0x60,0xef,0xf9,0xdc,0xbc,0x17,0xff,0xaf,0x83,0xaa,0x84,0x8f,0x84, -0xe2,0x0, 0xcf,0x81,0x1, 0x84,0x8f,0x83,0xc7,0xff,0xaf,0x83,0xe0,0x3, 0x8f,0x82, -0x27,0xdf,0xe0,0x4, 0x1e,0xe6,0x9f,0x8d,0x27,0x8b,0xe0,0x0, 0x1f,0x25,0xe0,0x0, -0x1e,0x1a,0x8f,0xe, 0x8e,0xc, 0x3f,0x1c,0x2f,0x3, 0xc7,0xff,0xb7,0x8d,0xa, 0xa1, -0xe7,0x26,0x0, 0xb1,0xe2,0x0, 0xcc,0x0, 0x5, 0x2d,0xe0,0x3, 0x1e,0x91,0xe0,0x4, -0x1f,0xb4,0xe0,0x4, 0x1f,0x73,0x8e,0x7f,0x8f,0x8d,0xe0,0xb, 0x37,0xa1,0x3f,0x1b, -0xad,0x1e,0xc7,0x81,0xac,0x8e,0xe0,0xaa,0x3c,0x8c,0xe0,0x2, 0x1f,0x7a,0xaf,0x8d, -0xe6,0xb0,0xcd,0x7a,0xa7,0x8e,0x3f,0x98,0xbf,0x8e,0xe0,0x4, 0x1f,0xd1,0xe0,0x4, -0x1f,0x6d,0x3f,0x9a,0x96,0x8f,0xe0,0x3, 0x1f,0x9c,0x3d,0x1f,0x96,0xa, 0xa7,0x8e, -0xe0,0xaf,0x3e,0x8, 0xbf,0x8e,0xe0,0x4, 0x1f,0x42,0xa7,0x8e,0xe0,0xaf,0x3e,0x88, -0xbf,0x8e,0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x6c,0xe0,0x0, 0x19,0x24, -0xe0,0x1b,0x34,0xa4,0xe8,0xf, 0x39,0x1b,0x3e,0xef,0x17,0x0, 0xe0,0x4, 0xc6,0xa5, -0xe0,0x4, 0xc7,0xa6,0xaf,0xd, 0xf0,0x40,0x3c,0x68,0xaf,0xf, 0x3b,0x6a,0x3b,0xeb, -0x3a,0x69,0xe0,0x2, 0xdb,0x35,0xe0,0x3, 0x1f,0x91,0x11,0x80,0xa9,0x8f,0xe8,0x40, -0x3f,0xe8,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0xf0,0x18,0x34,0x21,0x3f,0x92,0xf0,0x18, -0x3c,0x12,0xf0,0x0, 0x8d,0x2f,0xf0,0x0, 0x16,0x3, 0xe0,0x2, 0x1a,0xc3,0xf0,0x2, -0xc4,0xf, 0xe8,0x3c,0x3c,0x3c,0xf8,0x0, 0x8c,0x88,0xf0,0xf, 0x3d,0x26,0xe0,0x2, -0x94,0x15,0xe8,0x6, 0x3b,0x1a,0xf8,0x43,0x3e,0x1c,0xe0,0x2, 0x1f,0x7a,0xe0,0x43, -0x3b,0x6, 0xf0,0x1d,0x3c,0xa7,0xe0,0x4, 0x1e,0x6d,0xe0,0x4, 0x1e,0xc2,0xe8,0x7, -0x3b,0x99,0xe8,0x28,0x3c,0x6c,0xe0,0x43,0x3b,0x87,0x7b,0x3, 0xf0,0x40,0x3e,0x6e, -0xe0,0x2, 0x1b,0x31,0x7c,0x2, 0xf0,0x43,0x3f,0xf, 0xb9,0x8c,0xf8,0x43,0x3e,0x8d, -0xb9,0x8d,0xb9,0x8e,0x7b,0x85,0x67,0x3, 0xe8,0x40,0x3f,0x7e,0xe0,0x0, 0x3, 0x64, -0xe8,0x0, 0xa7,0x8c,0x2f,0x84,0x17,0x81,0xe8,0x0, 0xbf,0x8c,0xe0,0x1, 0x1d,0xfd, -0xe0,0x4, 0x1f,0xed,0x8d,0x8b,0xa6,0x8f,0xe0,0xa, 0x35,0xa8,0xe8,0x0, 0xa6,0xc, -0xe0,0x1, 0x1d,0xfc,0xe0,0x4, 0x1f,0x42,0x8d,0x8b,0xe1,0x2d,0x3e,0xbc,0xa7,0x8e, -0x3d,0xca,0xe3,0xff,0xc6,0xff,0xe1,0x2f,0x3f,0xbc,0x3d,0xfd,0xe3,0xff,0xc7,0xff, -0x2, 0x85,0x3e,0xeb,0xc6,0xff,0xe3,0xff,0xc6,0xff,0xe0,0x1, 0x1d,0xfb,0x8d,0x8b, -0xe0,0xa, 0x35,0xa8,0xe0,0x1, 0x1d,0xfa,0x8d,0x8b,0x3d,0xca,0x3d,0xff,0x2, 0x85, -0x3f,0xeb,0xc7,0xff,0xe3,0xff,0xc7,0xff,0xc2,0x22,0x32,0x24,0x3a,0x12,0xb7,0x94, -0xe2,0x0, 0xc9,0x9f,0xe8,0xf, 0x39,0x1b,0xe0,0x11,0xbe,0x3f,0xe0,0x4, 0xc7,0xa6, -0xb6,0x84,0xe0,0x0, 0x2, 0xea,0xa9,0x8f,0xe0,0x4, 0x8f,0x95,0x36,0x5f,0xe2,0x0, -0xce,0x7f,0xe0,0x0, 0x2, 0xe6,0xe8,0x0, 0xbe,0xc, 0xe8,0x2, 0x39,0x1b,0x3f,0xe2, -0xe8,0x0, 0xa7,0xc, 0xe0,0x4, 0xc7,0xa5,0xaf,0xf, 0x3f,0xe2,0xe0,0x4, 0xc7,0xa7, -0xe0,0x4, 0xc1,0x28,0xf0,0x0, 0xac,0x82,0xf0,0x0, 0xad,0xf, 0xc0,0x14,0xf8,0x0, -0xf, 0x28,0xb, 0xe1,0xf2,0x0, 0xcf,0x0, 0x4, 0xd, 0xe0,0xe, 0x8e,0xc6,0xe8,0x40, -0x3e,0xfe,0x5, 0x8, 0xe8,0x40,0x3b,0xed,0xf0,0x0, 0x6f,0x13,0x67,0x85,0x3f,0xf7, -0x3, 0x8, 0xe8,0x40,0x3f,0xee,0xc7,0x81,0xf0,0x43,0x3f,0xf, 0xe7,0xff,0x0, 0x85, -0xe2,0x0, 0xcb,0x80,0xf0,0x40,0x3c,0x67,0xf2,0x1, 0xc4,0x7f,0x4, 0x27,0xe0,0xe, -0x8e,0xd6,0x3e,0xf7,0x5, 0x23,0x4e,0x93,0xe8,0x40,0x3c,0xe8,0xe2,0x1, 0xc6,0xff, -0x3c,0x6d,0x7e,0x81,0xe0,0x2, 0xda,0x60,0x8e,0x15,0x66,0x81,0x3c,0x7c,0x5, 0x16, -0x3c,0x6d,0xe8,0x40,0x3c,0xe8,0xe0,0x2, 0xda,0x57,0x8e,0x95,0x67,0x2, 0x3c,0x2d, -0xe0,0x43,0x3c,0x18,0x3f,0x78,0x2, 0x6, 0x3e,0xe3,0xc6,0x81,0x39,0xed,0xe2,0x1, -0xc1,0xff,0x3d,0x67,0xe8,0x40,0x3c,0xee,0xde,0xce,0xe8,0x40,0x3d,0x68,0xc5,0x1, -0xe0,0x43,0x3b,0x8a,0x0, 0xc4,0x16,0x9f,0xae,0x8f,0xe7,0xff,0x0, 0x97,0xe0,0x0, -0x17,0xff,0xe8,0x0, 0xbf,0x8c,0xe7,0xff,0x0, 0x9a,0x8, 0xb2,0xe0,0x0, 0x1f,0xa5, -0xe0,0x0, 0x1d,0x8b,0x89,0xf, 0xe0,0x1, 0x16,0xff,0x16,0x0, 0x39,0x7c,0x1, 0x83, -0x3c,0x6d,0x9, 0x61,0x3e,0x78,0x1, 0x1b,0x8f,0xb, 0xe0,0xf, 0x3c,0xae,0xe2,0x0, -0xcf,0x80,0x5, 0x1c,0x88,0x9b,0xe2,0x1, 0xc7,0xff,0xe0,0xe, 0x3d,0x21,0xe2,0x0, -0xcf,0x0, 0x5, 0x17,0xe2,0x1, 0xc7,0x7f,0xe1,0x2f,0x3f,0xee,0xe2,0x1, 0xc7,0xff, -0xe1,0x2e,0x3e,0xdf,0x3e,0xee,0xe2,0x1, 0xc6,0xff,0x27,0x8e,0x3f,0xec,0xc7,0x81, -0x3e,0x6f,0xe2,0x1, 0xc6,0x7f,0xc5,0x82,0x0, 0xda,0xe0,0xf, 0x3f,0x29,0x0, 0xe3, -0xe0,0xe, 0x38,0xaa,0x0, 0xe8,0x3e,0xef,0x0, 0xd4,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e, -0xc0,0x64,0x3f,0xe8,0xe0,0x0, 0x19,0x24,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x92, -0x8b,0xaf,0xe0,0xf, 0x34,0x21,0x3f,0x92,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8c,0xf, -0x3a,0x68,0xf0,0x40,0x3c,0xe9,0x3c,0x67,0xe8,0x40,0x3c,0xe8,0xf0,0x40,0x3d,0x6a, -0x3b,0x6b,0xf0,0x40,0x3d,0xec,0xe0,0x2, 0xd9,0xdf,0x3f,0xe4,0xe4,0x0, 0xc7,0x85, -0xc4,0x1, 0x39,0x1f,0x3f,0xe2,0xe0,0x2, 0xc7,0xcb,0x7f,0x85,0x3f,0xe2,0xe0,0x2, -0xc7,0xcc,0x7f,0x86,0x3f,0xe2,0xe0,0x43,0x3c,0x18,0xe0,0x2, 0xc7,0xcd,0xf8,0x40, -0x3f,0x69,0x7c,0x4, 0xe0,0x2, 0xc1,0x4e,0x7f,0x87,0xf8,0x40,0x3f,0x7a,0xe0,0x1, -0x2, 0xaa,0xf0,0x3, 0x3f,0x27,0xe0,0x43,0x3f,0x93,0xe2,0x0, 0xcf,0x80,0xe0,0x41, -0x3e,0xcf,0xe0,0x63,0x3d,0x2d,0xf0,0x40,0x3e,0xe6,0xf0,0x4, 0x1e,0x34,0xe0,0x2, -0x1a,0xea,0xf0,0x0, 0x13,0x80,0xe0,0x0, 0x0, 0xd7,0xe8,0x40,0x3d,0x6d,0xe8,0x40, -0x3c,0xee,0x3c,0x64,0xf0,0x0, 0x7b,0x81,0xdf,0x71,0xf8,0xd, 0x3e,0xa8,0xe0,0x43, -0x3c,0x9d,0xe2,0x0, 0xcc,0x80,0x3d,0x68,0xf0,0x0, 0x63,0x81,0x2, 0x3, 0xe0,0x41, -0x3e,0xc9,0x67,0x85,0x8c,0x8f,0xe8,0x40,0x3c,0xfe,0x2, 0x8f,0x67,0x86,0x8c,0x8f, -0xe8,0x40,0x3c,0xfe,0x4, 0x8a,0x67,0x87,0x8c,0x8f,0xe8,0x40,0x3c,0xfd,0x2, 0x85, -0x8c,0x82,0xe8,0x40,0x3c,0xfd,0x3, 0x8c,0xe8,0x0, 0x8c,0xdc,0xe8,0x40,0x3c,0x6d, -0xe8,0xa8,0x3c,0x8e,0xa4,0x85,0x34,0x21,0x3c,0x98,0xf0,0x0, 0xb3,0x89,0xe8,0x40, -0x3c,0xed,0xe8,0x40,0x3c,0x6e,0xf0,0x0, 0x7b,0x81,0x7d,0x2, 0x7e,0x83,0xe0,0x2, -0xd9,0x73,0x67,0x84,0xf0,0x0, 0x63,0x81,0x3c,0x7f,0x65,0x2, 0x66,0x83,0x4, 0x20, -0xe8,0x0, 0x8e,0xdc,0xe8,0x40,0x3d,0x6d,0xe8,0xaa,0x3e,0x8e,0xa6,0x85,0x35,0x21, -0x3e,0x9a,0xf0,0x0, 0xb3,0x8d,0xe8,0x40,0x3f,0xed,0xc7,0x81,0xf0,0x40,0x3e,0xef, -0xf2,0x1, 0xc6,0xff,0xf8,0x40,0x3e,0xfb,0xe7,0xff,0x5, 0xa9,0xe8,0x40,0x3f,0xee, -0xc7,0x81,0xf0,0x40,0x3f,0x6f,0xf2,0x1, 0xc7,0x7f,0xe7,0xff,0x0, 0x88,0xe0,0x2d, -0x3e,0xe3,0xe2,0x1, 0xc6,0xff,0x3d,0x7d,0x3, 0xe7,0xe2,0x0, 0xcd,0x1, 0x5, 0xd9, -0xf8,0x29,0x3f,0x9, 0x2c,0x84,0xf8,0x29,0x3f,0xa, 0x24,0x87,0xf0,0x29,0x3e,0x86, -0x2c,0xd0,0xf8,0x29,0x3e,0x8b,0x2c,0xcd,0xe2,0x0, 0xce,0x82,0x2, 0xca,0xe2,0x0, -0xcd,0x2, 0x1, 0xd2,0xe8,0x40,0x3c,0xed,0xe8,0x40,0x3c,0x6e,0xf0,0x0, 0x7b,0x81, -0xe0,0x2, 0xd9,0x2a,0xe8,0x0, 0x8e,0xdc,0xe8,0x40,0x3d,0x6d,0xe8,0xaa,0x3e,0x8e, -0xa6,0x85,0x35,0x21,0x34,0x1, 0x3e,0x9a,0xf0,0x0, 0x63,0x81,0xb4,0xd, 0xe7,0xff, -0x0, 0xbc,0xc0,0x1c,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e, -0xe1,0xfe,0xc0,0x48,0xe0,0x4, 0x19,0x67,0x8c,0x2, 0xdb,0x80,0x24,0x7, 0x8c,0x2, -0xdb,0x61,0x24,0x4, 0x14,0x1, 0xef,0xf9,0xd2,0x3, 0xdb,0x55,0x24,0x20,0xe0,0x2, -0x1f,0xee,0x9f,0x8f,0x37,0xcf,0x27,0x9b,0xe0,0x4, 0x1a,0xb4,0xf0,0x0, 0x1d,0xa4, -0x8b,0x65,0x8b,0xf5,0xf0,0x40,0x3b,0xe6,0xf0,0x40,0x3b,0x67,0xf0,0x0, 0x14,0x80, -0xf8,0x40,0x3c,0x6b,0xf1,0xff,0xc3,0xff,0xf1,0xff,0xc3,0x7f,0xe0,0x0, 0x1f,0xa5, -0x8f,0xf, 0xe8,0x40,0x3f,0x79,0x2, 0x88,0xf0,0x0, 0xac,0x8f,0xe0,0x1, 0xc0,0x38, -0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe8,0x40,0x3f,0x69,0xe4,0x0, 0xc7,0x5, 0xe8,0x40, -0x3f,0xe9,0xe8,0xe, 0x3f,0x1b,0xe0,0x1, 0xc7,0x86,0x3e,0xee,0x3e,0x6e,0x37,0xa1, -0xe8,0xf, 0x3f,0x9b,0xe0,0x2, 0xc6,0xcc,0xe0,0x2, 0xc6,0x4b,0x8d,0x2f,0x8e,0x8d, -0x8e,0xc, 0x3e,0xaa,0xe0,0xc, 0x3d,0x2c,0xe0,0x2d,0x3e,0xec,0xf0,0xf, 0x34,0xa1, -0x39,0xed,0xe8,0xf, 0x3f,0x9b,0x3e,0xee,0xe0,0x2, 0xc7,0x8f,0xe0,0x2, 0xc6,0xce, -0xe0,0x2, 0xc7,0x4d,0x8f,0x8f,0x8e,0x8d,0x8f,0xe, 0x3e,0xaf,0xe0,0xe, 0x3f,0xae, -0xe0,0x2e,0x3e,0xee,0x3a,0x6e,0xe2,0x1, 0xc1,0xff,0x17,0x4, 0xe1,0x23,0x39,0xde, -0x3d,0x73,0xe2,0x1, 0xc2,0x7f,0xe1,0x24,0x3a,0x5e,0x5, 0xb1,0xe0,0xe, 0x3d,0x23, -0xf0,0x40,0x3e,0xee,0xf2,0x1, 0xc6,0xff,0xe0,0xe, 0x3b,0x23,0x3d,0x7e,0x3, 0x2a, -0x3d,0x13,0xf0,0x40,0x3d,0x6a,0x3f,0xf4,0xf2,0x1, 0xc5,0x7f,0x5, 0xa6,0xe0,0xe, -0x3f,0xa4,0xf0,0x40,0x3e,0x6e,0xf2,0x1, 0xc6,0x7f,0xe0,0xe, 0x3b,0xa4,0x3f,0xfe, -0x3, 0x1f,0x3f,0x94,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe8,0xb, 0x39,0x2c,0xe8,0x40, -0x3f,0x6d,0xc5,0x81,0xf0,0x40,0x3d,0x7e,0xe0,0x0, 0x4, 0xc2,0xe8,0xc, 0x3f,0x2d, -0x3e,0x3b,0xf8,0x40,0x3f,0x6c,0xe8,0xc, 0x3e,0x2c,0x0, 0xaf,0xf0,0x0, 0x16,0x80, -0x0, 0xd4,0xf8,0x40,0x3d,0x67,0x0, 0xd8,0xf0,0x0, 0x16,0x0, 0x0, 0xdf,0xe8,0x40, -0x39,0x66,0x0, 0xe2,0xe8,0x40,0x3c,0xee,0x3c,0x6e,0xf0,0x0, 0x7b,0x1, 0xf0,0x0, -0x7b,0x82,0x7d,0x83,0x7e,0x4, 0x7f,0x5, 0xe0,0x2, 0xd8,0x5e,0x66,0x4, 0xe2,0x1, -0x7e,0xbc,0xf0,0xf, 0x3f,0x1c,0x37,0xa1,0x3f,0x9d,0xf0,0x0, 0x63,0x1, 0xf0,0x0, -0x63,0x82,0x65,0x83,0x67,0x5, 0xe0,0x4a,0xb4,0x2f,0xe8,0x40,0x3f,0xee,0xc7,0x81, -0xf0,0x40,0x3f,0x6f,0xf2,0x1, 0xc7,0x7f,0xe8,0x40,0x39,0x7e,0x3, 0xdc,0x3f,0xee, -0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xe7,0xff,0x0, 0xbe,0x3e,0x62,0xe8,0x40, -0x3d,0xec,0xe8,0x40,0x3d,0x6a,0xe8,0x40,0x3c,0xed,0xe8,0x40,0x3c,0x69,0xf0,0x0, -0x7b,0x1, 0xf0,0x0, 0x7b,0x82,0xde,0x32,0x3d,0xe4,0x3d,0x63,0xe8,0x40,0x3c,0xe9, -0xe8,0x40,0x3c,0x69,0xdc,0xe0,0xe0,0x2, 0x1f,0xea,0xe8,0xc, 0x39,0x2c,0xf0,0x0, -0x63,0x1, 0xf0,0x0, 0x63,0x82,0xa5,0xf, 0xe8,0x41,0x3d,0xcc,0xc6,0x1, 0xe8,0x40, -0x3c,0xed,0x3f,0xe9,0xe2,0x1, 0xc7,0xff,0xf0,0x40,0x3d,0x7f,0x4, 0x9c,0xe8,0x40, -0x3f,0xec,0x0, 0x94,0x8f,0x55,0x3c,0x6f,0xe0,0xa8,0x3f,0x9, 0xe0,0xd, 0x3f,0x9b, -0x3f,0x68,0x36,0xa1,0xe2,0x1, 0x7c,0x3c,0x3e,0x98,0x37,0x21,0xe0,0x4a,0x9e,0xad, -0x3f,0x1a,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xb6,0x8e,0x39,0x7f,0x3, 0xec,0x3d,0x9c, -0xc4,0x81,0x0, 0xe0,0xe0,0x1, 0x1f,0xf9,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x8b, -0xe8,0x40,0x3f,0xe9,0xc7,0xa2,0x37,0xa4,0xe8,0xf, 0x3f,0x98,0x9f,0xf, 0x9e,0x9f, -0xb7,0x1f,0xb6,0x8f,0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef,0xf2,0x1, -0xc4,0xff,0xe7,0xfd,0x0, 0xf5,0x35,0x41,0xc4,0xfe,0xc4,0x7e,0x17,0x80,0x3f,0xfa, -0x1, 0x82,0x38,0x82,0xe0,0x80,0x9f,0x19,0xc7,0x81,0xe0,0x80,0xb7,0x18,0xe3,0xff, -0xc7,0xff,0x0, 0xf6,0x8f,0x88,0x3f,0xf9,0x2, 0x8b,0x8f,0xa8,0x3f,0xf9,0x5, 0x88, -0x8f,0x98,0x3f,0xfa,0x2, 0x85,0x8c,0x38,0xe1,0x28,0x3c,0x1a,0x38,0x82,0x14,0x0, -0x0, 0xfe,0x97,0x88,0x16,0x0, 0xe0,0x41,0x3f,0xaf,0xe3,0xff,0xc7,0xff,0x17,0x1, -0x3f,0x79,0x4, 0x85,0x25,0x2, 0xae,0xa, 0x3c,0x6f,0x38,0x82,0xe0,0x80,0x96,0x98, -0xe0,0x41,0x3e,0xad,0xe3,0xff,0xc6,0xff,0x3f,0xfd,0x3, 0x83,0x3e,0x6e,0x3f,0xed, -0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0x0, 0xed,0xe0,0x3, 0x1f,0x54,0x9f,0x88,0x9e,0x8e, -0x3f,0xfd,0x5, 0x85,0x9f,0xe, 0x3f,0xae,0xb7,0x88,0x38,0x82,0x17,0x80,0x0, 0xfd, -0xe0,0x2, 0x1f,0xb1,0xe1,0xb1,0x16,0x27,0xe0,0xe, 0x8d,0x4f,0xe0,0xe, 0x8d,0xbf, -0xe0,0xe, 0x8c,0xaf,0x3c,0x6a,0xe0,0xb6,0x0, 0x83,0x8, 0xb4,0xc0,0x48,0x39,0x68, -0x3c,0x60,0x3a,0x69,0x39,0xea,0x14,0x80,0x15,0x36,0xc4,0x6, 0xef,0xf8,0xdc,0x44, -0xe0,0x4, 0x1f,0xb4,0xe2,0x0, 0x7c,0x4, 0x8f,0x5f,0x8f,0xcf,0x6f,0x5, 0x6f,0x84, -0xeb,0xff,0xcf,0xfc,0x3a,0x1f,0x39,0x9f,0x39,0x1f,0x32,0x41,0x17,0x81,0x31,0xc1, -0x31,0x41,0x7a,0x4, 0x79,0x85,0x79,0x6, 0x77,0x8e,0xe0,0x5, 0xdb,0x37,0xc0,0x38, -0xa, 0x61,0x8, 0xb5,0xc0,0x48,0x39,0x68,0x3c,0x60,0x3a,0x69,0x39,0xea,0x14,0x80, -0x15,0x36,0xc4,0x6, 0x3a,0xeb,0xef,0xf8,0xdc,0x1f,0xe0,0x4, 0x1f,0xb4,0xe2,0x0, -0x7c,0x4, 0x8f,0x5f,0x8f,0xcf,0x6f,0x5, 0x6f,0x84,0xeb,0xff,0xcf,0xfc,0x3a,0x1f, -0x39,0x9f,0x39,0x1f,0x32,0x41,0x17,0x82,0x31,0xc1,0x31,0x41,0x6a,0x87,0x7a,0x4, -0x79,0x85,0x79,0x6, 0x77,0x8e,0xe0,0x5, 0xdb,0x11,0xc0,0x38,0xa, 0xe1,0x8, 0xb3, -0xc0,0x48,0x39,0x68,0x3c,0x60,0x15,0x36,0x39,0xe9,0xc4,0x6, 0x14,0x80,0xef,0xf8, -0xdb,0xfb,0xe0,0x4, 0x1f,0xb4,0xe2,0x0, 0x7c,0x4, 0x8f,0x5f,0x8f,0xcf,0x6f,0x5, -0x6f,0x84,0xeb,0xff,0xcf,0xfc,0x39,0x9f,0x39,0x1f,0x31,0xc1,0x17,0x84,0x31,0x41, -0x79,0x84,0x79,0x6, 0x77,0x8e,0xe0,0x5, 0xda,0xf1,0xc0,0x38,0x9, 0xe1,0x8, 0xb7, -0xc0,0x5c,0x3b,0xec,0x39,0x69,0x3a,0xea,0x3a,0x6b,0x39,0xe8,0xe0,0x5, 0xd8,0x4, -0x14,0x80,0x3b,0x68,0x15,0x24,0xe2,0x0, 0x7c,0x4, 0xef,0xf8,0xdb,0xd5,0xe6,0xfe, -0xcc,0xe7,0x2c,0xaf,0xe6,0xfa,0xcf,0xe7,0x2f,0x89,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8f,0x2f,0xe0,0xe, 0x8f,0x8f,0x6f,0xb, 0x6f,0x8a,0xe2,0x0, 0xc3,0x84,0xeb,0xff, -0xcf,0xfc,0x23,0xa7,0x39,0x1f,0x3a,0x9f,0x3a,0x1f,0x39,0x9f,0x4f,0x8b,0x4f,0xa, -0x6f,0x85,0x17,0x80,0xe2,0x0, 0x7c,0x4, 0x6f,0x86,0x31,0x41,0x6f,0x87,0x32,0xc1, -0x17,0x80,0x32,0x41,0x31,0xc1,0x6f,0x4, 0x77,0x84,0x79,0x4, 0x7a,0x85,0x7a,0x6, -0x79,0x87,0xe0,0x5, 0xdd,0x17,0x3c,0x66,0xe0,0x5, 0xd7,0xd6,0xc0,0x24,0xb, 0xe1, -0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0x2f,0xe0,0xe, 0x8f,0xcf,0x6f,0xb, 0x0, 0xd5, -0xe0,0x20,0x17,0x0, 0x77,0x10,0xeb,0xff,0xcf,0x7a,0x39,0x1e,0x0, 0xd5,0x8, 0xb6, -0xc0,0x48,0x39,0xe8,0x3c,0x60,0x3a,0xe9,0x3a,0x6a,0x14,0x80,0x15,0x36,0xc4,0x6, -0x39,0x6b,0x3b,0x6c,0xef,0xf8,0xdb,0x88,0xe0,0x4, 0x1f,0xb4,0x3c,0xe6,0x8f,0x5f, -0x8f,0xcf,0xe2,0x0, 0x7c,0x4, 0x6f,0x84,0xeb,0xff,0xcf,0xfc,0x3a,0x9f,0x3a,0x1f, -0x39,0x9f,0xe6,0xff,0xcf,0xf2,0x6f,0x87,0x32,0xc1,0xe6,0xfe,0xcf,0xf2,0x32,0x41, -0x31,0xc1,0xe6,0xfd,0xc9,0x72,0x6f,0x5, 0x7a,0x84,0x7a,0x5, 0x79,0x86,0x6f,0x9e, -0x69,0x1f,0xe0,0x5, 0xdc,0x5b,0xc0,0x38,0xb, 0x61,0x8, 0xb2,0xe0,0x4, 0x1f,0xb4, -0xe0,0x2, 0x1f,0x6c,0x8e,0xcf,0x3c,0xe8,0xe0,0xc, 0x36,0xa1,0x11,0x0, 0xe0,0xff, -0x15,0xfe,0xe7,0x0, 0x15,0x2, 0x39,0x7d,0x1, 0x93,0x16,0x0, 0xe0,0x2, 0x1c,0x6b, -0xe0,0x2, 0x1d,0x6c,0x3d,0xec,0xdf,0xbc,0x14,0x0, 0xe0,0x2, 0x1f,0x6b,0x3f,0xe8, -0x39,0x7f,0x1, 0x91,0xe0,0x28,0x3c,0x32,0xe0,0x43,0x3c,0x18,0x9, 0x61,0xe0,0xf, -0x3f,0x1c,0xb5,0x8e,0xc7,0x2, 0xb5,0xf, 0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, -0xc1,0x7f,0x0, 0xe2,0xe1,0x80,0x96,0x9e,0xc7,0x81,0x3c,0x1d,0xe2,0x1, 0xc7,0xff, -0x0, 0xe8,0x8, 0xb6,0xc0,0x48,0x39,0x68,0x3c,0x60,0x3a,0x69,0x39,0xea,0x14,0x80, -0x15,0x36,0xc4,0x6, 0x3a,0xec,0x3b,0x6b,0xef,0xf8,0xdb,0x26,0xe0,0x4, 0x1f,0xb4, -0x15,0x0, 0x8f,0x5f,0x8f,0xcf,0x3c,0xe6,0x6f,0x84,0xeb,0xff,0xcf,0xfc,0x3a,0x1f, -0x39,0x9f,0x39,0x1f,0x17,0x81,0x6f,0x87,0xe2,0x0, 0x7c,0x4, 0xe6,0xfe,0xcf,0xf5, -0x32,0x41,0x31,0xc1,0x31,0x41,0xe6,0xfd,0xca,0xf5,0x6f,0x5, 0x7a,0x4, 0x79,0x85, -0x79,0x6, 0x6f,0x9e,0x6a,0x9f,0xe0,0x5, 0xdb,0xa1,0xc0,0x38,0xb, 0x61,0x8, 0xb5, -0xc0,0x48,0x39,0xe8,0x3c,0x60,0x3a,0xe9,0x3a,0x6a,0x14,0x80,0x15,0x36,0xc4,0x6, -0x39,0x6b,0xef,0xf8,0xda,0xf9,0xe0,0x4, 0x1f,0xb4,0xe2,0x0, 0x7c,0x4, 0x8f,0x5f, -0x8f,0xcf,0x6f,0x5, 0x6f,0x84,0xeb,0xff,0xcf,0xfc,0x3a,0x9f,0x3a,0x1f,0x39,0x9f, -0xe6,0xff,0xcf,0xf2,0x6f,0x87,0x32,0xc1,0xe6,0xfe,0xcf,0xf2,0x32,0x41,0x31,0xc1, -0xe6,0xfd,0xc9,0x72,0x7a,0x84,0x7a,0x5, 0x79,0x86,0x6f,0x9e,0x69,0x1f,0xe0,0x5, -0xdc,0xd, 0xc0,0x38,0xa, 0xe1,0xe0,0x2, 0x1f,0x6e,0x9c,0xe, 0xe6,0xf3,0xcc,0x78, -0x2c,0xb, 0x9f,0x8e,0xe6,0xf4,0xcf,0xff,0x2f,0x86,0x9c,0xe, 0xe2,0x1, 0xc4,0x7f, -0xe1,0x28,0x3c,0xf, 0x38,0x82,0x14,0x0, 0x0, 0xfe,0x8f,0xda,0xe6,0xfb,0xcf,0x7f, -0xe0,0x2, 0x1f,0xee,0x9e,0x8f,0xe7,0xc, 0xce,0x9e,0xb6,0x8f,0x8f,0x5a,0x9e,0x8f, -0xe6,0xfc,0xcf,0x7e,0xe7,0xb, 0xce,0x9e,0xb6,0x8f,0x2c,0x85,0x9f,0xf, 0xe3,0xfe, -0xc7,0x0, 0xb7,0xf, 0xe6,0xfb,0xce,0x38,0xe2,0x0, 0xce,0x14,0x2, 0x91,0x17,0x1, -0xe0,0xc, 0x37,0x3c,0x3d,0xec,0xe2,0x8, 0xc5,0xc4,0xe6,0xfb,0xce,0xd8,0x2d,0x92, -0x3d,0xec,0xe2,0x6, 0xc5,0xb3,0x2d,0x85,0xea,0x0, 0xc6,0x11,0x2e,0x13,0x38,0x82, -0xe6,0xfe,0xcc,0x68,0x9e,0xf, 0x37,0x38,0x36,0xa1,0x37,0x3d,0x3f,0x4c,0xb7,0xf, -0x0, 0xf7,0x9e,0xf, 0xe0,0xe, 0x36,0xa1,0x16,0x83,0x36,0xbe,0x3e,0xcc,0xb6,0x8f, -0x0, 0xef,0x9e,0xf, 0xc6,0x82,0x0, 0xf2,0x14,0x0, 0x38,0x82,0x8, 0xb7,0xf8,0x0, -0xc, 0x3a,0xe0,0x2, 0x1e,0xf6,0xe0,0x2, 0x1e,0x71,0xe0,0x4, 0x1f,0xb4,0xbe,0xd, -0xe4,0x13,0xc4,0xd8,0xe0,0x5, 0x1e,0x92,0x8a,0x4f,0x89,0x5f,0x8e,0x8d,0xe0,0x2, -0x1f,0xf8,0xe0,0x63,0xc4,0x94,0xe0,0x2, 0x1f,0x58,0x3c,0x9f,0xe2,0x0, 0xce,0x83, -0xbc,0x8e,0xe0,0x0, 0x1, 0xe1,0x39,0xef,0xe0,0x3, 0x1f,0x9a,0xe0,0x2, 0x8e,0xaf, -0xe2,0x0, 0xce,0x81,0xe0,0x0, 0x1, 0x58,0xe0,0x2, 0x8f,0xaf,0xe2,0x0, 0xcf,0x82, -0xe0,0x0, 0x1, 0xd2,0x17,0x8c,0xe0,0x2, 0x1c,0x74,0xe1,0x24,0x3a,0x5f,0xf0,0x0, -0x14,0x6, 0xe0,0x13,0x15,0x58,0x14,0x80,0xe9,0x38,0x3a,0x58,0xe0,0x5, 0x31,0x21, -0x3b,0xe3,0xf0,0x40,0x3c,0xe3,0x13,0x0, 0xf0,0x2, 0x1d,0x5f,0xbc,0xe, 0xef,0xf8, -0xda,0x43,0x3f,0xe6,0xe2,0x1, 0xc7,0xff,0xf0,0x40,0x3c,0x7f,0x2, 0x94,0x3f,0xe2, -0xe4,0x0, 0xc7,0x8c,0x11,0x6, 0xe0,0x28,0xc7,0x8c,0x3f,0x93,0x39,0x74,0x39,0xe7, -0xe0,0x0, 0xc1,0xd4,0x4, 0x98,0xe0,0x2, 0x1c,0x74,0xf8,0x0, 0xd, 0x28,0xb, 0xa1, -0xe0,0x3b,0x0, 0xd3,0x3c,0xe6,0xe4,0x0, 0xc4,0xd4,0xe8,0x40,0x3c,0x69,0x3d,0x65, -0xe8,0x9, 0x3c,0x9a,0xe0,0x28,0xc4,0xc, 0xef,0xf8,0xd9,0xe6,0xc3,0x1, 0xf0,0x19, -0x3c,0x95,0x0, 0xd8,0x3c,0xe7,0x3c,0x6f,0x3d,0x65,0xe0,0x82,0xc4,0xd8,0xef,0xf8, -0xd9,0xdb,0x3f,0x62,0xc7,0x1, 0x3f,0xe8,0x39,0x6e,0xe2,0x1, 0xc1,0x7f,0x3f,0x95, -0x3b,0xe3,0x0, 0xd5,0xe0,0x2, 0x1c,0x74,0xef,0xf8,0xde,0xbc,0xe0,0x2, 0x1c,0x74, -0xef,0xfd,0xda,0x36,0xe0,0x2, 0x1c,0xf4,0xe0,0x2, 0x1d,0x71,0x3c,0x69,0xef,0xf8, -0xde,0xc6,0xe0,0x2, 0x1c,0x74,0xe0,0x1, 0xde,0xb1,0x0, 0xc6,0x14,0x0, 0x38,0x82, -0xe0,0x4, 0x1f,0xce,0xa7,0x8f,0x8f,0xdf,0xe6,0xfa,0xcf,0xff,0x27,0xa7,0xe6,0xfb, -0xcc,0x58,0x2c,0x24,0x3f,0x69,0xe0,0x4, 0x1f,0xb4,0xe4,0x2, 0xc7,0x74,0xe0,0x2, -0x1e,0xf8,0xe0,0xb, 0xc7,0x4e,0x8e,0x5f,0xe4,0x1, 0xc4,0xba,0x3f,0x1d,0x3d,0xef, -0x15,0x3, 0x3f,0xe8,0xe2,0x1, 0xc7,0xff,0x3f,0xfc,0x4, 0x91,0x3f,0x6c,0xe0,0x5, -0xc7,0x68,0x3f,0x19,0x37,0x21,0xc7,0x7e,0x8d,0x4b,0x3f,0x1d,0x15,0x80,0x14,0x3, -0x3f,0xeb,0xe2,0x1, 0xc7,0xff,0x3f,0xfa,0x4, 0x91,0x38,0x82,0xe1,0x2f,0x3f,0xca, -0xe4,0x0, 0xc7,0xbe,0x3f,0x99,0x3f,0x98,0xe0,0x8, 0xc7,0xdc,0x37,0xa1,0x3f,0x9d, -0x9f,0x8f,0xc4,0x1, 0xe0,0x80,0xb7,0x9e,0x0, 0xdd,0xe1,0x2f,0x3f,0xc8,0xe4,0x0, -0xc7,0xbe,0x3f,0x99,0x3f,0x9b,0x3f,0x9c,0xe0,0x8, 0xc7,0xdc,0x37,0xa1,0x3f,0x9d, -0x9f,0x8f,0xc5,0x81,0xe0,0x80,0xb7,0x9e,0x0, 0xdc,0x8, 0xb7,0xe0,0x4, 0x1f,0xce, -0x3b,0x69,0xe6,0xfb,0xca,0x58,0xe4,0x2, 0xc3,0x74,0xa7,0x8f,0x3a,0xe4,0xe4,0x0, -0xc2,0xfc,0x39,0x66,0x8f,0xdf,0xe0,0xb, 0xc1,0x50,0xe0,0x2, 0x19,0xf8,0x39,0x15, -0xe6,0xfa,0xcf,0xff,0x3b,0xe9,0x39,0x13,0x27,0x8c,0x2a,0xb, 0xe2,0x0, 0xcc,0x3f, -0xe0,0x1, 0x1f,0x11,0xe0,0x5, 0x1f,0x8f,0x5, 0xae,0x16,0x81,0xae,0x8e,0xae,0x8f, -0x3c,0xe7,0xdf,0x8f,0xe2,0x0, 0xca,0x2, 0x16,0x0, 0x3d,0xe4,0x15,0x3e,0x3c,0xe2, -0x3c,0x62,0x1, 0xa4,0xef,0xf8,0xde,0xa, 0x3c,0x66,0xe0,0x10,0xc4,0x3c,0xe0,0x0, -0x15,0x7c,0x3c,0xe2,0x3c,0x13,0xef,0xf8,0xd9,0x37,0x3c,0xe4,0x3c,0x62,0xef,0xfd, -0xd9,0x6c,0x3d,0x65,0x3c,0x65,0xe0,0x8, 0xc5,0x5c,0xe0,0x2, 0xc4,0x74,0x3c,0xe2, -0x3c,0x13,0x3d,0xe4,0x3d,0x13,0xef,0xf8,0xde,0x3e,0x3c,0xe7,0x3c,0x64,0xb, 0xa1, -0xe0,0x89,0x0, 0x98,0xaa,0xe, 0xaa,0xf, 0x0, 0xd4,0xef,0xf8,0xdd,0xe7,0x0, 0xe6, -0x8, 0xb6,0xc0,0x7c,0xef,0xfd,0xd8,0x95,0x24,0x7e,0xef,0xfd,0xd6,0xde,0x3d,0x60, -0x3c,0xe0,0xc5,0x7, 0xc4,0x86,0x39,0x68,0xef,0xfd,0xd6,0xa, 0x4f,0x86,0x4f,0x7, -0xe4,0x0, 0xc7,0x92,0xe0,0x4, 0x1a,0xce,0x3f,0x9e,0xa5,0x5, 0xc7,0x84,0x37,0xa1, -0x3f,0x9a,0x99,0x9f,0x3c,0xe2,0xe2,0x1, 0xc1,0xff,0x3c,0x63,0x9a,0x1f,0xde,0x6e, -0x4f,0x6, 0x4d,0x87,0x3f,0xee,0xe4,0x0, 0xc7,0x92,0xa6,0x85,0xe0,0xe, 0x3f,0x9b, -0xc7,0x4, 0x37,0x21,0x3f,0x1d,0x9e,0x1e,0xe0,0x2, 0x1b,0x6e,0x36,0x4e,0xe6,0xf2, -0xca,0x54,0x26,0x15,0x9f,0x1e,0x37,0x4e,0xe2,0x0, 0xcf,0x1, 0x1, 0xaa,0x9e,0x6, -0xe7,0xf, 0xce,0x1e,0xb6,0x6, 0x3f,0x9b,0xc7,0x84,0x37,0xa1,0x3f,0x9d,0x9f,0x1f, -0x16,0x80,0xe7,0xe, 0xcf,0x2d,0xb7,0x1f,0xef,0xfe,0xd1,0x9b,0x4f,0x86,0x4f,0x7, -0xe4,0x0, 0xc7,0x92,0xa6,0x85,0x3f,0x9e,0xc7,0x84,0x37,0xa1,0x3f,0x9d,0x9f,0x1f, -0xe0,0x3, 0x1f,0xb6,0xe6,0xf5,0xcf,0x7e,0x2f,0x5, 0x8e,0x3d,0xc6,0x7f,0x3e,0x72, -0x2, 0xe, 0x8f,0x3d,0xc7,0x7f,0x3f,0x72,0x2, 0x2, 0xbf,0x85,0x11,0x1, 0x0, 0x88, -0x9f,0x6, 0x16,0x0, 0xe7,0xf, 0xcf,0x1c,0xb7,0x6, 0x0, 0xd6,0x39,0x6e,0x8f,0x4f, -0x8e,0xbf,0x3e,0xfe,0x2, 0xa3,0xe0,0x4, 0x1f,0x62,0xe0,0x17,0x8e,0xce,0x2e,0x9e, -0xe0,0x17,0x8f,0xcf,0x27,0x89,0xe0,0x3, 0x1c,0xb6,0xe0,0x1, 0x15,0x66,0x3c,0x6e, -0xef,0xf8,0xd8,0xa2,0xbc,0x5, 0xef,0xff,0xd6,0xc2,0xef,0xfe,0xd9,0xee,0xe0,0x1, -0xdf,0xc3,0xe0,0x1, 0x1f,0xa0,0x8f,0x8f,0x3c,0x6f,0xef,0xfd,0xd5,0x1c,0xe0,0x1, -0x1f,0x95,0x17,0x1, 0xaf,0xf, 0xef,0xfd,0xd6,0xb4,0x9f,0x86,0xe6,0xf3,0xcf,0xff, -0x2f,0x9f,0x9f,0x86,0x37,0xcf,0x2f,0x87,0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, -0xcf,0x83,0x1, 0x96,0xe0,0x2, 0x1f,0xf9,0x3c,0xe4,0xa9,0x8f,0xe6,0xfb,0xcf,0xb3, -0xe2,0x0, 0xcf,0x8f,0x3c,0x63,0xe0,0x3, 0x1a,0xce,0x5, 0x90,0xde,0x28,0xef,0xf9, -0xd2,0xd2,0xe0,0xc, 0x8f,0x85,0x24,0x7, 0xcf,0x81,0xe0,0xc, 0xaf,0x85,0x3c,0x62, -0xc0,0x4, 0xb, 0x61,0xe2,0x1, 0xc7,0xfe,0x0, 0xf9,0xde,0xf8,0xef,0xf9,0xd2,0x9e, -0xe0,0xc, 0x8f,0x85,0x24,0x3, 0xcf,0x82,0x0, 0xf1,0xe2,0x1, 0xc7,0xfd,0x0, 0xee, -0xe0,0x3, 0x1f,0xb6,0x8f,0xbf,0x27,0x91,0x8, 0xb3,0x24,0xc, 0x39,0xef,0x11,0x0, -0xdf,0x38,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x39,0xf2,0x1, 0xf9, -0x9, 0xe1,0xdf,0x2f,0x24,0x7f,0x0, 0xfd,0xe0,0x2, 0x1f,0x6e,0x9f,0x8e,0xe3,0xfe, -0xc7,0x80,0xb7,0x8e,0x38,0x82,0x8, 0xb1,0xe0,0x3, 0x1f,0x9a,0xe0,0x0, 0x15,0x5c, -0x14,0x80,0x3c,0x6f,0xef,0xf8,0xd8,0x70,0xe0,0x2, 0x1f,0x31,0x15,0x6, 0xe0,0xe, -0x8e,0x4e,0xe0,0xe, 0x8e,0xde,0xae,0x28,0xe0,0x1, 0x1e,0x78,0xae,0xb8,0x16,0x80, -0x8e,0xc, 0xae,0xc8,0xae,0x58,0xe0,0x1, 0x1e,0x77,0xae,0xe8,0x8e,0xc, 0xe0,0x1, -0xae,0x18,0xe0,0x1, 0x1e,0x76,0x8e,0xc, 0xe0,0xb, 0x36,0x28,0xe0,0x1, 0x1e,0x75, -0x8e,0xc, 0x3e,0x4b,0xe6,0xf6,0xce,0xc, 0xe0,0x1, 0xae,0x58,0xe0,0x1, 0x1e,0x74, -0x8e,0xc, 0xe0,0xb, 0x36,0x28,0xe0,0x1, 0x1e,0x73,0x8e,0xc, 0x3e,0x4b,0xe6,0xf4, -0xce,0xc, 0xe0,0x1, 0xae,0x68,0xe0,0x2, 0x1e,0x8, 0xe0,0x2, 0xad,0x48,0x8e,0xc, -0xe0,0xb, 0x36,0x28,0xe0,0x2, 0x1e,0x7, 0x8e,0xc, 0x3e,0x4b,0xe6,0xf6,0xce,0xc, -0xe0,0xb, 0xae,0x28,0xe0,0x1a,0x8e,0x4e,0xe0,0x4, 0xae,0x8, 0xe7,0xff,0x16,0x16, -0xe0,0x3, 0xae,0x78,0xe0,0x1a,0x8e,0x1e,0xe0,0x4, 0xae,0x28,0xe0,0x1a,0x8e,0x2e, -0xe0,0x4, 0xae,0x18,0xe0,0x19,0x8e,0x7e,0xe0,0x4, 0xae,0x38,0xe0,0x1a,0x8e,0x3e, -0xe0,0x3, 0xae,0x68,0xe0,0x16,0x8e,0x7e,0xe0,0x6, 0xae,0x28,0xe0,0x17,0x8d,0x9e, -0xe0,0x17,0x8e,0x2e,0xe0,0x5, 0xad,0xf8,0xe0,0x6, 0xae,0x8, 0xe0,0x17,0x8e,0xe, -0xe0,0x19,0x8f,0x5e,0xe0,0x6, 0xae,0x18,0xe0,0x0, 0x16,0x5a,0xe0,0x6, 0xae,0x48, -0xe0,0x1, 0x1e,0x72,0xe0,0x6, 0xaf,0x38,0x8d,0x8c,0xe0,0x3, 0x1f,0x13,0x8e,0x1c, -0xad,0x8e,0xae,0x1e,0xe0,0x1, 0x1f,0x71,0x8f,0xe, 0xe0,0xc, 0x37,0x28,0xe0,0x1, -0x1f,0x70,0x8f,0xe, 0x3f,0x4c,0xe6,0xf5,0xcf,0xe, 0xe0,0x8, 0xaf,0x8, 0xe0,0x1, -0x1f,0x6f,0x8f,0xe, 0xe0,0xc, 0x37,0x28,0xe0,0x1, 0x1f,0x6e,0x8f,0xe, 0x3f,0x4c, -0xe6,0xf5,0xcf,0xe, 0xe0,0x8, 0xaf,0x18,0x17,0x1, 0xe0,0x9, 0xad,0x38,0xe0,0x3, -0xaf,0x28,0xe0,0x3, 0xae,0xb8,0xe0,0x3, 0xae,0xc8,0xe0,0x3, 0xae,0xd8,0xe0,0x8, -0xaf,0x48,0xe0,0x2, 0xae,0x88,0xe0,0x2, 0xae,0x98,0x8, 0xa1,0xe7,0x72,0x0, 0xfd, -0x8, 0xb4,0xe0,0x4, 0x19,0x34,0xe0,0x1, 0x1c,0xed,0xe0,0x0, 0x15,0x47,0x3c,0x62, -0xef,0xf8,0xd7,0x8a,0x89,0xc2,0xe0,0x4, 0x1c,0xb0,0xe0,0x4, 0x1c,0x28,0x3d,0x63, -0xef,0xf8,0xd7,0x82,0x8a,0x52,0xe0,0x4, 0x1c,0xae,0xe0,0x4, 0x1c,0x27,0x3d,0x64, -0xef,0xf8,0xd7,0x7a,0x8f,0x82,0x8f,0x12,0xe0,0x11,0xaf,0x82,0x39,0xb4,0xe0,0x12, -0xaf,0x92,0x17,0x80,0x8e,0xb2,0xe0,0x12,0xaf,0x82,0xe0,0x12,0xaf,0xa2,0xe0,0x1, -0x1f,0xf9,0xe0,0x11,0xaf,0x22,0x8f,0x22,0xe0,0x11,0xae,0xb2,0x8e,0x8f,0xe0,0x11, -0xaf,0x12,0xe0,0x12,0xaf,0x32,0xe0,0x8, 0xb1,0xb2,0x8f,0x62,0x8f,0xf2,0x2e,0x8e, -0x37,0x26,0x37,0xa6,0xc7,0x7f,0xc7,0xff,0xe0,0x8, 0xb7,0x62,0xe0,0x8, 0xb7,0xf2, -0xef,0xfc,0xd8,0xd4,0xa, 0x21,0xe7,0x7a,0x0, 0xd0,0x37,0xa6,0x37,0x26,0xc7,0xff, -0xc7,0x7f,0xe0,0x8, 0xb7,0xe2,0xe0,0x8, 0xb7,0x72,0x0, 0xf3,0x8, 0xb4,0xe0,0x2, -0x1c,0x71,0xe0,0x2, 0x1f,0xf6,0xe0,0x2, 0x19,0xf4,0xe0,0x13,0x12,0x58,0xbc,0xf, -0x3d,0x64,0xe0,0x2, 0x1f,0xea,0x14,0x80,0xb9,0x8f,0xef,0xf8,0xd7,0x6d,0x3d,0x64, -0x14,0x80,0x3c,0x63,0xef,0xf8,0xd7,0x68,0xe0,0x4, 0x1f,0x67,0x16,0x83,0x8f,0x8e, -0xe0,0x2, 0x19,0x78,0xe1,0x2f,0x3f,0xcd,0xe0,0x2, 0x1e,0xd7,0xaf,0x8e,0xe4,0x0, -0xc7,0xfc,0x3f,0x6f,0xe0,0x8, 0xc7,0x5c,0x3f,0x12,0xbf,0xd, 0xe0,0x2, 0xc7,0xf4, -0xe0,0x2, 0x1f,0x6d,0x3f,0x92,0xbf,0x8e,0x16,0x80,0xe0,0x2, 0x1f,0xee,0x9f,0xf, -0xe7,0xf, 0xcf,0x1d,0xb7,0xf, 0xa, 0x61,0x8, 0xb2,0xe0,0x1, 0x1f,0xf6,0xe0,0x3, -0x19,0x4e,0x8f,0x8f,0xe0,0x1, 0x1c,0xec,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xf5, -0xe0,0x3, 0x1c,0x4c,0x8f,0x8f,0xe0,0x0, 0x15,0x69,0x3f,0xce,0xe6,0xf6,0xcf,0x8f, -0xaf,0x82,0xe0,0x1, 0x1f,0xeb,0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xea, -0x8f,0x8f,0x3f,0xce,0xe6,0xf6,0xcf,0x8f,0xaf,0x92,0xe0,0x1, 0x1f,0xf4,0x8f,0x8f, -0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xf3,0x8f,0x8f,0x3f,0xce,0xe6,0xf4,0xcf,0x8f, -0xaf,0xa2,0xe0,0x1, 0x1f,0xe9,0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xe8, -0x8f,0x8f,0x3f,0xce,0xe6,0xf4,0xcf,0x8f,0xaf,0xb2,0xe0,0x1, 0x1f,0xe7,0x8f,0x8f, -0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xe6,0x8f,0x8f,0x3f,0xce,0xe6,0xf4,0xcf,0x8f, -0xaf,0xc2,0xe0,0x1, 0x1f,0xe5,0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xe4, -0x8f,0x8f,0x3f,0xce,0xe6,0xf4,0xcf,0x8f,0xaf,0xd2,0xef,0xf8,0xd6,0xbd,0xe0,0x3, -0x1f,0xa9,0x9f,0x8f,0x37,0xcf,0xe0,0x2, 0xaf,0xd2,0x9, 0x61,0xe0,0x1, 0x1f,0x78, -0xe0,0x2, 0x1f,0xc3,0x8f,0xe, 0xe0,0x1, 0x1e,0xf5,0xaf,0xf, 0xe0,0x1, 0x1f,0x63, -0x8f,0xe, 0xaf,0x1f,0xe0,0x1, 0x1f,0x76,0x8e,0xe, 0xe0,0xe, 0x36,0x28,0x8e,0xd, -0x3e,0x4e,0xe0,0x1, 0x1f,0x6b,0xb6,0x1f,0x8e,0x8e,0xb6,0x4f,0xe0,0xe, 0x36,0xa8, -0xe0,0x1, 0x1e,0xea,0x8e,0x8d,0x3e,0xce,0xe0,0x1, 0x1f,0x62,0xe0,0x43,0x3e,0x9d, -0x8f,0xe, 0xb6,0xaf,0xe0,0xb, 0x37,0x28,0xe0,0x1, 0x1f,0x61,0xb6,0xdf,0x8f,0xe, -0x3f,0x4b,0xe0,0x41,0x3f,0x4e,0xb7,0x3f,0xb7,0x6f,0xe0,0x1, 0x1f,0x60,0x8f,0xe, -0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x5f,0x8f,0xe, 0x3f,0x4d,0xb7,0x7f,0xe0,0x1, -0x1f,0x5e,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x5d,0x8f,0xe, 0x3f,0x4d, -0xe0,0x41,0x3f,0x4e,0xe0,0x1, 0xb7,0xf, 0xe0,0x1, 0x1f,0x5c,0x8f,0xe, 0xe0,0x2, -0xaf,0x2f,0xe0,0x1, 0x1f,0x74,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x73, -0x8f,0xe, 0x3f,0x4d,0xe0,0x1, 0xb7,0x2f,0xe0,0x1, 0x1f,0x5b,0x8f,0xe, 0xe0,0xd, -0x37,0x28,0xe0,0x1, 0x1f,0x5a,0x8f,0xe, 0x3f,0x4d,0xe0,0x1, 0xb7,0x3f,0xe0,0x1, -0x1f,0x69,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x68,0x8f,0xe, 0x3f,0x4d, -0xe0,0x1, 0xb7,0x4f,0xe0,0x1, 0xb7,0x6f,0xe0,0x1, 0x1f,0x59,0xe0,0x1, 0x1e,0xe7, -0x8f,0xe, 0x8e,0x8d,0xe0,0x4, 0xaf,0xf, 0xe0,0xc, 0x36,0xa8,0xe0,0x1, 0x1f,0x58, -0xe0,0x1, 0x1e,0xe6,0x8f,0xe, 0x8e,0x8d,0xe0,0x4, 0xaf,0x1f,0x3e,0xcc,0xe0,0x1, -0x1f,0x57,0xe0,0x1, 0xb6,0xdf,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x56, -0x8f,0xe, 0x3f,0x4d,0xe0,0x2, 0xb7,0x1f,0xe0,0x1, 0x1f,0x65,0x8f,0xe, 0xe0,0xd, -0x37,0x28,0xe0,0x1, 0x1f,0x64,0x8f,0xe, 0x3f,0x4d,0xe0,0x1, 0xb7,0x7f,0x17,0x0, -0xe0,0x2, 0xb7,0x2f,0x38,0x82,0x8, 0xb3,0xe0,0x0, 0x1c,0x24,0xe0,0x8, 0x15,0x1c, -0x14,0x80,0xef,0xf8,0xd6,0x49,0xe0,0x2, 0x1f,0xad,0xe0,0x1, 0x11,0xff,0x89,0xf, -0xe0,0x0, 0x1c,0xa, 0x31,0x21,0x3d,0x62,0x3c,0xe3,0xef,0xf8,0xd6,0x3d,0xe0,0x0, -0x1c,0x9, 0x3d,0x62,0x3c,0xe3,0xef,0xf8,0xd6,0x37,0xe0,0x2, 0x1f,0xaa,0xe0,0x0, -0x1c,0x8, 0x8d,0xf, 0x3c,0xe3,0x35,0x24,0x9, 0xa1,0xe7,0xc, 0x0, 0xad,0x8, 0xb3, -0xe0,0x1, 0x1f,0xf8,0xe0,0x1, 0x11,0xff,0x89,0xf, 0xe0,0x3, 0x1c,0x6b,0x31,0x24, -0x3d,0x62,0x3c,0xe3,0xef,0xf8,0xd6,0x20,0xe0,0x3, 0x1c,0x67,0x3d,0x62,0x3c,0xe3, -0xef,0xf8,0xd6,0x1a,0xe0,0x3, 0x1c,0x66,0x3d,0x62,0x3c,0xe3,0xef,0xf8,0xd6,0x14, -0xe0,0x3, 0x1c,0x65,0xe0,0x3, 0xdf,0x72,0xe0,0x3, 0x1c,0x6c,0x15,0x10,0x14,0x80, -0xef,0xf8,0xd6,0xa, 0xe0,0x3, 0x1f,0xeb,0xe0,0x3, 0x1f,0x49,0xe0,0x15,0xbf,0x7f, -0xe0,0x5, 0x1f,0x3, 0xe0,0x16,0xbf,0xf, 0x9, 0xa1,0xe0,0x76,0x0, 0xb4,0xe0,0x1, -0x1f,0x55,0xe0,0x4, 0x1f,0xbe,0x8f,0xe, 0xe0,0x1, 0x1e,0x11,0xe0,0xd, 0x37,0x28, -0xe0,0x1, 0x1f,0x54,0x8f,0xe, 0x3f,0x4d,0xb7,0x6f,0xe0,0x1, 0x1f,0x53,0x8f,0xe, -0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x52,0x8f,0xe, 0x3f,0x4d,0xb7,0x7f,0xe0,0x2, -0x1f,0x0, 0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x7f,0x8f,0xe, 0x3f,0x4d, -0xe0,0x1, 0xb7,0xf, 0xe0,0x1, 0x1f,0x77,0x8f,0xe, 0xe0,0x2, 0xaf,0x2f,0xe0,0x1, -0x1f,0x74,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x73,0x8f,0xe, 0x3f,0x4d, -0xe0,0x5, 0x1e,0x8f,0xb7,0x5f,0x17,0x1, 0xaf,0xd, 0xaf,0x1d,0xaf,0x2d,0xaf,0xc, -0xaf,0x1c,0xaf,0x2c,0xe0,0x1, 0x1f,0x51,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, -0x1f,0x50,0x8f,0xe, 0x3f,0x4d,0xb7,0x1f,0xe0,0x1, 0x1f,0x4f,0x8f,0xe, 0xe0,0xd, -0x37,0x28,0xe0,0x1, 0x1f,0x4e,0x8f,0xe, 0x3f,0x4d,0xb7,0x2f,0xe0,0x2, 0x1f,0x2, -0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x2, 0x1f,0x1, 0x8f,0xe, 0x3f,0x4d,0xb7,0x3f, -0x16,0x80,0xe0,0x1, 0x1f,0x7e,0x8f,0xe, 0xe0,0x1, 0xaf,0xf, 0xe0,0x1, 0x1f,0x4d, -0x8f,0xe, 0xe0,0x1, 0xaf,0x1f,0xe0,0x1, 0x9f,0x2f,0xe3,0xe6,0xc7,0x7f,0xe7,0x6, -0xcf,0x1d,0xe0,0x1, 0xb7,0x2f,0x38,0x82,0xe0,0x4, 0x1f,0xef,0x8f,0x7f,0xe0,0x3, -0x8f,0xaf,0xe2,0x0, 0xcf,0x1, 0x1, 0x86,0x3e,0xef,0xc6,0xfe,0xe2,0x0, 0xce,0x81, -0x5, 0xba,0x3e,0xee,0xc6,0xfe,0x3d,0xed,0xe2,0x1, 0xc5,0xff,0xe2,0x0, 0xcd,0x81, -0x2, 0x88,0x3e,0xef,0xc6,0xfe,0xe2,0x0, 0xce,0x81,0x2, 0x8b,0x14,0x2, 0x0, 0xaa, -0xe2,0x0, 0xcf,0x4, 0x1, 0x86,0x3e,0xef,0xc6,0xfe,0xe2,0x0, 0xce,0x81,0x5, 0xa5, -0x16,0x81,0xe0,0x2a,0x3f,0xd, 0xe0,0x2d,0x3f,0x8d,0x25,0x2, 0x2e,0xa1,0x16,0x4, -0xe0,0x2c,0x3f,0xc, 0x26,0x82,0x2e,0x1f,0xe0,0xd, 0x3f,0x4f,0x26,0x9f,0x2f,0x82, -0x2e,0x20,0x16,0x84,0xe0,0x2d,0x3f,0x8d,0x25,0x2, 0x2e,0x9e,0x2f,0x2, 0x2e,0x9e, -0xe2,0x0, 0xcd,0x81,0x2, 0x84,0xe2,0x0, 0xcf,0x84,0x1, 0x1a,0x26,0x2, 0x2e,0x9a, -0x14,0x1, 0x38,0x82,0x14,0x0, 0x0, 0xfe,0xe0,0x1, 0x14,0x0, 0x0, 0xfb,0xe0,0x0, -0x14,0x40,0x0, 0xf8,0xe0,0x1, 0x14,0x40,0x0, 0xf5,0xe0,0x0, 0x14,0x45,0x0, 0xf2, -0xe0,0x1, 0x14,0x44,0x0, 0xef,0x14,0x20,0x0, 0xed,0x14,0x21,0x0, 0xeb,0x14,0x22, -0x0, 0xe9,0xe0,0x1, 0x14,0x20,0x0, 0xe6,0xe0,0x4, 0x1f,0xef,0xe0,0x5, 0x8c,0x5f, -0xe2,0x0, 0xcc,0x1, 0x1, 0x9, 0x24,0x9, 0xc4,0x7e,0xe2,0x0, 0xcc,0x1, 0x17,0x83, -0x14,0x0, 0xe0,0x68,0x3d,0xaf,0x38,0x82,0x14,0x2, 0x0, 0xfe,0x8, 0xb7,0xf8,0x0, -0xc, 0x3e,0xe0,0x4, 0x1a,0x6f,0x11,0x0, 0xf0,0x1, 0x1c,0x4c,0xf0,0x0, 0x1c,0xb5, -0xf0,0x1, 0x1d,0x4b,0xf0,0x5, 0x1d,0x86,0xf0,0x1, 0x1e,0x4a,0x3b,0xe2,0x39,0xe4, -0xf0,0x0, 0x16,0x90,0x13,0x12,0xf0,0x40,0x3f,0x62,0xe0,0x9, 0x33,0xa4,0xe8,0x40, -0x3d,0x6d,0xe8,0x9, 0x3c,0x98,0x3c,0x64,0xef,0xf8,0xd4,0xc6,0x3d,0x66,0xf0,0x9, -0x3d,0x12,0xf0,0x8, 0x3c,0x92,0xef,0xf8,0xd4,0xbf,0x3d,0x66,0xf0,0x9, 0x3e,0x12, -0xf0,0x8, 0x3d,0x92,0xef,0xf8,0xd4,0xb8,0xe2,0x0, 0xcb,0x82,0x3a,0xe7,0xe2,0x1, -0xc2,0xff,0x1, 0x88,0xe0,0x5, 0x8f,0x53,0xe2,0x0, 0xcf,0x4, 0x1, 0x3, 0xf0,0x5, -0xaf,0x53,0x17,0x81,0x8f,0x74,0x3c,0x65,0xe0,0x1, 0xaf,0xd4,0xc3,0x81,0xe0,0x2, -0xaf,0x24,0xef,0xfe,0xdb,0xc8,0x3c,0x65,0xef,0xfe,0xdb,0xe4,0xe2,0x0, 0xcb,0x83, -0xc1,0x12,0xc2,0x13,0x1, 0xcb,0xe0,0x4, 0x1f,0xe7,0x8f,0xf, 0xe2,0x0, 0xcf,0x1, -0x1, 0x8c,0xe0,0x3, 0x8f,0x23,0xe2,0x0, 0xcf,0x4, 0x1, 0x87,0x8f,0x73,0xe2,0x0, -0xcf,0x4, 0x1, 0x3, 0x17,0x0, 0xaf,0xf, 0x8f,0x8f,0xe0,0x3, 0x19,0x1a,0xe4,0x0, -0xc7,0x93,0x39,0x9f,0xe0,0x4, 0x1f,0xb4,0xe0,0x1, 0x8e,0xd3,0xe0,0x13,0x8f,0x3f, -0xe7,0x7, 0xcf,0x1d,0xe0,0x13,0xaf,0x3f,0xdf,0x20,0xe0,0x1, 0xac,0x12,0xdf,0x7d, -0xe0,0x1, 0xac,0x72,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe0,0x3, 0x1f,0xdb,0x17,0x1, -0xaf,0xf, 0xe7,0xff,0x17,0x2a,0xe0,0x4, 0x1f,0xc1,0xaf,0xf, 0xe0,0x1, 0x1f,0xc9, -0x8f,0xf, 0xe0,0x3, 0x1f,0xc6,0xaf,0xf, 0xe0,0x2, 0x1f,0xae,0x8f,0xf, 0xe0,0x5, -0x1f,0x8e,0xaf,0xf, 0x17,0x80,0xe0,0x3, 0x1f,0x10,0xb7,0x8e,0xe0,0x0, 0x1f,0x36, -0xb7,0x8e,0x38,0x82,0x8, 0xb1,0xdf,0xe2,0xdd,0x40,0xdc,0xe, 0xdc,0xba,0xdd,0x7, -0xdf,0x66,0xde,0x86,0xdd,0x94,0xde,0x30,0xde,0x53,0xe0,0x1, 0xdc,0xbb,0xef,0xfc, -0xdd,0xb9,0xef,0xff,0xd2,0x48,0x8, 0xa1,0xe0,0x80,0x0, 0xb8,0x8, 0xb7,0xf8,0x0, -0xc, 0x39,0xe0,0x2, 0x1f,0xc3,0xe0,0x4, 0x1c,0x39,0xe0,0x0, 0x15,0x46,0xe0,0x1, -0x14,0xff,0x11,0x80,0xe0,0x0, 0x1a,0x24,0xe0,0x0, 0x1a,0xa5,0xe0,0x3, 0x1b,0xeb, -0xf0,0x4, 0x1c,0xb9,0x93,0x1f,0x39,0x63,0xef,0xf8,0xd4,0x5e,0xf0,0x0, 0x14,0x10, -0x8f,0x85,0x39,0x7f,0x4, 0x8a,0xe0,0x0, 0x1f,0xe, 0xaf,0x8e,0xe0,0x3, 0x1f,0xec, -0xa9,0x8f,0xf8,0x0, 0xc, 0xa8,0xb, 0xe1,0x3c,0x62,0xe0,0x1, 0xdf,0x91,0x3c,0x76, -0x4, 0x3f,0x3c,0x62,0xe0,0x1, 0xdf,0x5d,0x24,0x3b,0x3c,0xe2,0xc4,0xa2,0xe0,0x8, -0x31,0xa4,0x34,0xa4,0xe8,0x40,0x3d,0x68,0x3c,0x94,0x3c,0x17,0xef,0xf8,0xd4,0x4, -0x3f,0x62,0xe0,0x1, 0xc7,0x6, 0x3f,0xe2,0x37,0x21,0xe4,0x0, 0xc7,0x87,0x3f,0x14, -0x8f,0x2e,0xe8,0xf, 0x3f,0x99,0xaf,0x1f,0xe0,0xe, 0x31,0x21,0x3f,0x14,0xe0,0x2, -0xc7,0xf, 0x8f,0xe, 0xe0,0x2, 0x16,0xcb,0xaf,0x2f,0x3f,0x62,0xe4,0x0, 0xc7,0x5, -0x3f,0x14,0x3e,0x9e,0x8e,0x8d,0xae,0xdf,0x3e,0xee,0xe0,0x2, 0xc6,0xcc,0x8e,0x8d, -0xae,0xbf,0x3e,0xee,0xe0,0x2, 0xc6,0xcd,0xe0,0x2, 0xc7,0x4e,0x8e,0x8d,0x8f,0xe, -0xae,0xef,0xaf,0x4f,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0x3f,0xe2, -0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe7,0xff,0x0, 0xac,0xe7,0xff,0x0, 0x90, -0x8, 0xb6,0xe0,0x2, 0x1f,0xea,0x3f,0x69,0xa6,0xf, 0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8e,0xdf,0x3f,0xeb,0xe0,0xaf,0x3d,0xd, 0xe0,0xae,0x3e,0x88,0x37,0xa1,0x37,0x21, -0x3f,0x9c,0x3f,0x1c,0x97,0x8f,0x97,0xe, 0x3f,0xfe,0xe0,0x0, 0x5, 0x68,0xe0,0xf, -0x37,0x1, 0xe0,0x3, 0x17,0x74,0xe0,0x2f,0x3f,0xde,0xe0,0x3, 0x1f,0x6a,0x39,0xe9, -0x8f,0xe, 0xe2,0x0, 0xcf,0x1, 0x2, 0xa0,0xe0,0xe, 0x3d,0xa9,0xe0,0x43,0x38,0x9e, -0xe2,0x0, 0xc8,0x80,0xe0,0x2, 0x17,0x2c,0xe0,0x2f,0x3f,0xde,0xe0,0x0, 0x5, 0x52, -0xe0,0xe, 0x3d,0xa9,0xe2,0x0, 0xcf,0x9, 0xe0,0x0, 0x10,0xe4,0xe0,0x61,0x3c,0x2f, -0x3f,0xe1,0x10,0x86,0xe0,0x2e,0x3f,0x11,0xe2,0x0, 0xcf,0x0, 0xe0,0x0, 0x17,0x78, -0xe0,0x6e,0x39,0x2f,0x3f,0xee,0x10,0xff,0x3d,0xf9,0x17,0x1, 0x3a,0x61,0xe0,0x64, -0x3c,0xae,0x3d,0x78,0xe0,0x61,0x3c,0xae,0xe0,0x2, 0x3d,0x28,0xe0,0x43,0x3f,0x12, -0xe2,0x0, 0xcf,0x0, 0x2, 0x3, 0xe0,0x41,0x39,0x4e,0xe0,0xe, 0x3d,0xa3,0xe0,0x43, -0x3f,0x1e,0xe2,0x0, 0xcf,0x0, 0x5, 0x2f,0xe0,0xe, 0x3d,0xa9,0x39,0x7e,0x1, 0xb2, -0x3d,0x78,0xe0,0x0, 0x1, 0x43,0xe0,0x6, 0x3d,0x94,0xe0,0x5, 0x38,0x9a,0x3f,0x6b, -0x39,0x66,0xe0,0xae,0x3a,0x8d,0xe0,0xa2,0x3e,0x8a,0x37,0x21,0x31,0x21,0x3f,0x1c, -0x39,0x1c,0x97,0xe, 0x91,0x2, 0x3f,0x72,0x3, 0x19,0x3d,0xe6,0xe2,0x1, 0xc5,0xff, -0x3f,0x62,0x3f,0x7f,0x3, 0x52,0x14,0x0, 0xb, 0x61,0x37,0x81,0xe7,0xff,0x0, 0x9b, -0xe3,0xff,0xc8,0xf7,0xe0,0x0, 0x17,0x64,0xe0,0x6e,0x3a,0x2f,0x3f,0xee,0x17,0x7a, -0xe7,0xff,0x0, 0xb2,0xe0,0x41,0x3f,0x4e,0x0, 0xd2,0x3d,0x65,0xe2,0x1, 0xc5,0x7f, -0x0, 0xe9,0x5, 0xd, 0xe0,0xe, 0x3d,0x11,0x3d,0x6e,0xe2,0x1, 0xc5,0x7f,0x3f,0x6b, -0xe0,0xae,0x3d,0xd, 0x37,0x21,0x3f,0x1c,0x97,0xe, 0x0, 0xdc,0xe0,0xe, 0x3d,0x94, -0x3d,0xee,0xe2,0x1, 0xc5,0xff,0x0, 0xf4,0x14,0x1, 0x0, 0xd7,0xea,0x20,0x7f,0xac, -0xe0,0xe, 0x34,0x24,0x3f,0x1f,0x9f,0x8e,0x9e,0x1e,0xe0,0x3, 0x1f,0x4e,0xe0,0x1, -0x8e,0xce,0x2e,0xbd,0xe0,0x1, 0x1f,0x7d,0xe2,0x0, 0xcf,0xaf,0x8f,0xe, 0xe0,0xb, -0x37,0x28,0xe0,0x1, 0x1f,0x7c,0x8f,0xe, 0x3f,0x4b,0x5, 0x85,0x3d,0xee,0xc5,0xd0, -0x3f,0xfb,0x5, 0x29,0x3f,0x7f,0x4, 0xa9,0xea,0x20,0x7e,0xa0,0x3e,0x98,0x8e,0x8d, -0x14,0x6, 0xe2,0x1, 0xce,0xb4,0x16,0x87,0xe0,0x68,0x3a,0xad,0xe2,0x0, 0xcf,0xe3, -0x5, 0x86,0xe1,0xff,0xc7,0x1c,0x3f,0xfe,0xe0,0x1, 0x5, 0x20,0xe0,0x1, 0x1f,0xfb, -0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xfa,0x8f,0x8f,0x3f,0xce,0xe1,0xfe, -0xc7,0xb8,0x3e,0x7f,0xe0,0x1, 0x4, 0x12,0x3f,0xe8,0xcf,0x8c,0x3c,0x6f,0xe2,0x1, -0xc4,0x7f,0x38,0x82,0x3c,0x6d,0x0, 0xe3,0x14,0x7, 0x0, 0xe1,0x8, 0xb2,0xe0,0x1, -0x8f,0x5e,0xe0,0x1, 0x18,0xfb,0x3d,0x6e,0x17,0x1, 0xe0,0x2e,0x3e,0x8e,0xe0,0x1, -0x19,0x7a,0x27,0x9, 0xe0,0x1, 0x17,0x16,0xe1,0x2e,0x3f,0x2c,0x27,0x4, 0xe2,0x1, -0xcf,0x96,0x5, 0x9c,0xe2,0x0, 0xce,0x82,0xe0,0x0, 0x1, 0xd2,0x8f,0x1, 0xe0,0xb, -0x37,0x28,0x8f,0x2, 0x3f,0x4b,0xe1,0xfe,0xc7,0x6a,0x3e,0x7e,0xe0,0x0, 0x4, 0x48, -0xe0,0x1, 0x1f,0x7d,0x8f,0xe, 0xe0,0xb, 0x37,0x28,0xe0,0x1, 0x1f,0x7c,0x8f,0xe, -0x3f,0x4b,0xe1,0xfe,0xc7,0x6a,0x3f,0xfe,0x4, 0x3a,0x2c,0xbb,0xea,0x20,0x7f,0xc, -0x8f,0xe, 0x2f,0x5, 0xea,0x20,0x7f,0xd, 0x8f,0xe, 0x27,0x35,0xea,0x20,0x7f,0xf, -0x8f,0xe, 0x15,0x84,0xe2,0x0, 0xcf,0x0, 0x17,0x7, 0x3c,0x6e,0xe0,0x68,0x39,0x2b, -0xeb,0x84,0x7f,0x4c,0xe9,0xff,0xc7,0x7e,0x35,0x21,0xe0,0xb, 0x3f,0x1a,0x8c,0x8b, -0x8d,0x81,0x3c,0xfc,0xe0,0x1, 0x35,0xa8,0x8d,0x82,0x3d,0xc1,0x2, 0x85,0xe0,0x9, -0x3d,0xa9,0x3e,0x79,0x5, 0x8, 0xe2,0x0, 0xce,0x81,0x1, 0x97,0x3f,0x1a,0x8f,0x1e, -0x3f,0x7f,0x2, 0xa5,0xe2,0x0, 0xce,0x2f,0x5, 0x84,0xc5,0xd0,0x3e,0x7b,0x5, 0x6, -0x3f,0xe8,0xcf,0x86,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0x9, 0x61,0x14,0x0, 0x0, 0xd9, -0x14,0x7, 0x0, 0xd7,0x14,0x4, 0x0, 0xd5,0xe2,0x0, 0xce,0x82,0x1, 0xec,0xe0,0x1, -0x1e,0xfd,0x3f,0x1a,0x8e,0x8d,0x8f,0x1e,0xe0,0x9, 0x36,0xa8,0xe0,0x1, 0x1e,0xfc, -0x8e,0x8d,0x3e,0xc9,0xe0,0xe, 0x3e,0xae,0x3f,0xfe,0x4, 0x5d,0x3f,0xe8,0xcf,0x8c, -0x3c,0x6f,0xe2,0x1, 0xc4,0x7f,0x0, 0xd7,0x38,0x82,0x8, 0xb4,0xe0,0x3, 0x1f,0x6c, -0xe0,0x3, 0x19,0xeb,0x8f,0x8e,0x3a,0x69,0xc7,0xff,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xa9,0xe, 0x31,0x24,0x39,0x13,0x34,0x24,0x3c,0x13,0x15,0x10,0xe4,0x0, 0xc2,0x6, -0x3c,0xe2,0xef,0xf8,0xd2,0x41,0xe0,0x1, 0x1f,0x6, 0x17,0xff,0x39,0x94,0xe0,0x3, -0xc1,0xe0,0xaf,0xc2,0x17,0x83,0xaf,0x83,0x8f,0x8e,0xc7,0x81,0xaf,0x8e,0xa, 0x61, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0xc0,0x74,0xe0,0x3, 0x1f,0xce,0x3b,0xe8,0xe0,0x1, -0x8f,0xcf,0x3c,0x60,0xf0,0x40,0x3c,0x69,0x39,0x6a,0x3a,0x6b,0x15,0xa, 0x14,0x80, -0xc4,0x4, 0x3a,0xec,0x3b,0x6f,0xf0,0x2, 0x1d,0x31,0xef,0xf8,0xd2,0x55,0xe0,0x1, -0x2a,0x38,0xf2,0x0, 0xcc,0x3, 0xe0,0x1, 0x2, 0x93,0x3c,0xe2,0x3c,0x64,0xe0,0x1, -0xdd,0x80,0x39,0xe8,0x3c,0xe2,0x14,0x1, 0xe0,0x1, 0xdd,0x7b,0xe8,0xe, 0x8f,0xda, -0x3f,0x6f,0xc7,0x7c,0x39,0x7e,0xe0,0x2, 0x4, 0x19,0x17,0x1, 0xe2,0x0, 0xc9,0x3, -0x6f,0x4, 0xe0,0x1, 0x2, 0x98,0x17,0x81,0x9f,0x3, 0xe2,0x0, 0x7e,0x8c,0x31,0x21, -0xe1,0xc0,0xb7,0x4d,0xe0,0x41,0x39,0x42,0xf0,0x0, 0x12,0x1, 0x39,0x92,0xea,0x5, -0x3a,0xc4,0x39,0x18,0xf0,0x0, 0x92,0xad,0x14,0x0, 0xf0,0x0, 0x93,0x3d,0x8d,0x2d, -0x8c,0x9d,0x8d,0xbd,0x37,0xa1,0x10,0x88,0xf0,0x40,0x39,0xe8,0xf0,0x40,0x39,0x68, -0xf0,0x1, 0x10,0xa5,0xf0,0x0, 0x10,0x37,0xf0,0x0, 0x14,0xa, 0xe8,0x5, 0x3a,0xd4, -0xf0,0x0, 0x9b,0x83,0x9f,0x2, 0xe8,0x40,0x3e,0x67,0xc6,0x5f,0xc7,0x5f,0xe3,0xff, -0xc6,0x7f,0xe3,0xff,0xc7,0x7f,0xe0,0x43,0x3e,0x9c,0xf0,0x43,0x3c,0x9e,0xe8,0xe, -0x3f,0x16,0xe8,0xc, 0x3e,0x15,0xf0,0x43,0x3b,0x1e,0xe8,0x2e,0x3e,0x91,0xf0,0x43, -0x3a,0x9c,0xe0,0x1, 0x27,0x35,0xe0,0x1, 0x22,0xb3,0x3b,0x74,0xe0,0x1, 0x1, 0xb3, -0x3f,0x69,0xc7,0x1, 0x3c,0xee,0xe2,0x1, 0xc4,0xff,0xf8,0x40,0x39,0x64,0x3f,0x6d, -0xe0,0x0, 0xc7,0x42,0xf0,0x40,0x3c,0xfe,0x5, 0xb, 0xe2,0x4, 0xce,0xa5,0x2, 0x8, -0x3f,0x6b,0xc7,0x1, 0x3d,0xee,0xe2,0x1, 0xc5,0xff,0xe8,0x40,0x3c,0x64,0x3f,0x61, -0xc7,0x7f,0x38,0xee,0xe2,0x1, 0xc0,0xff,0x39,0x9f,0x39,0x1f,0x28,0xc2,0xf0,0x0, -0x21,0x3, 0x6c,0x85,0xf0,0x0, 0x21,0x83,0x6d,0x6, 0x24,0x2, 0x6d,0x87,0xf0,0x0, -0x72,0x84,0xf0,0x0, 0x73,0x5, 0x3c,0xe0,0x15,0xa, 0xc4,0x84,0x3c,0x67,0xef,0xf8, -0xd1,0x8b,0x3c,0x67,0xc0,0xc, 0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0xf8,0xe, 0x8c,0xca, -0xe8,0x40,0x3f,0xe9,0xc7,0xfc,0xf0,0x40,0x3c,0x7f,0x4, 0x6e,0xe8,0x40,0x3f,0xe9, -0xc7,0xff,0x3c,0x6f,0x3c,0xe2,0xe2,0x1, 0xc4,0x7f,0xe0,0x1, 0xdc,0xe2,0xf1,0xff, -0xc4,0xfe,0x39,0xe8,0xe8,0x40,0x3c,0x69,0x3c,0xe2,0xe2,0x1, 0xc4,0x7f,0xe7,0xfe, -0x0, 0xdd,0xc7,0xf8,0x39,0x2f,0xe3,0xff,0xc1,0x7f,0xe7,0xfe,0x0, 0xe6,0xe2,0x0, -0xc9,0x3, 0xf8,0xe, 0x8c,0xda,0x2, 0xae,0x14,0x80,0xe8,0x40,0x3c,0x68,0xe0,0x1, -0xdc,0xc8,0x39,0xe8,0x14,0x81,0xe8,0x40,0x3c,0x68,0xe0,0x1, 0xdc,0xc2,0xe2,0x0, -0xca,0x2, 0xe8,0xe, 0x8f,0x4a,0x1, 0x86,0x3f,0xee,0xc7,0xfd,0xf0,0x40,0x3c,0x7f, -0x3, 0x9, 0x17,0x81,0xe0,0x2f,0x3a,0xf, 0x27,0x87,0x17,0x82,0xe9,0x2f,0x3f,0xa8, -0x27,0x83,0x17,0x81,0x6f,0x84,0xe8,0x43,0x3f,0x89,0xf2,0x0, 0xcc,0x3, 0x39,0x6f, -0xe3,0xff,0xc1,0x7f,0x2, 0x9f,0xe8,0x2, 0x39,0x38,0xe3,0xff,0xc1,0x7f,0xe7,0xfe, -0x0, 0xb5,0xe8,0x40,0x3f,0xe9,0xc7,0xfc,0x39,0x7f,0xe7,0xff,0x4, 0x1e,0xe8,0x40, -0x3f,0xe9,0xc7,0xff,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0xe8,0x40,0x3c,0x68,0xe0,0x1, -0xdc,0x90,0xe8,0x40,0x3f,0xe9,0xc7,0xfe,0x3c,0xef,0x39,0xe8,0xe2,0x1, 0xc4,0xff, -0x0, 0xc3,0x3e,0xee,0xc6,0xfc,0xf0,0x40,0x3c,0x7d,0x3, 0x5, 0xe6,0xd2,0xc9,0x2, -0xe7,0xfe,0x0, 0x94,0xc7,0x78,0xf0,0x18,0x3c,0x2e,0x0, 0xd6,0xe2,0x0, 0xce,0xcd, -0x5, 0x6, 0xf0,0xe, 0x34,0xa1,0x3e,0xfe,0xe7,0xfe,0x2, 0x4c,0xe8,0x2e,0x3e,0x90, -0x27,0x5, 0xf8,0x2e,0x3c,0x29,0xe7,0xfe,0x2f,0x45,0xf1,0xff,0xc3,0xbd,0xf2,0x0, -0xcb,0xaa,0xe7,0xfe,0x2, 0xc6,0x3f,0x6a,0xc7,0x1, 0x3d,0x6e,0xe2,0x1, 0xc5,0x7f, -0xf8,0x40,0x39,0xe4,0xe7,0xfe,0x0, 0xbd,0xe2,0x0, 0xc9,0x3, 0xe7,0xfd,0x5, 0xed, -0x11,0x4, 0xe7,0xfd,0x0, 0xea,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x64,0xe0,0x3, -0x1f,0xce,0xe0,0x3, 0x19,0x6b,0xe0,0x1, 0x8f,0xcf,0xe0,0x1c,0x34,0x24,0x3a,0x6f, -0xe8,0xf, 0x39,0x1c,0xf0,0x40,0x3d,0xe9,0xf0,0x40,0x3c,0xea,0xf0,0x0, 0x8d,0x7f, -0xe0,0x1, 0x8b,0x8f,0xe0,0x2, 0x22,0x54,0x17,0x81,0xe0,0x2f,0x3a,0xf, 0x27,0x84, -0x2b,0x83,0xf0,0x0, 0x25,0x15,0xe2,0x0, 0xca,0x2, 0xe0,0x2, 0x1, 0xc6,0xe0,0x2, -0x1f,0x31,0xe0,0xe, 0x8f,0xfe,0xc7,0xff,0x3b,0xff,0xe0,0x2, 0x1, 0xbe,0xe0,0xe, -0x8f,0xce,0xc7,0xff,0xf0,0x40,0x3d,0x7f,0xe0,0x2, 0x1, 0xb7,0xea,0x20,0x7f,0x89, -0x8f,0x8f,0x11,0x4, 0xe2,0x0, 0xcf,0x80,0x17,0x81,0xe0,0x62,0x39,0x2f,0xe2,0x0, -0xcb,0x82,0x5, 0x89,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0xdf,0xc7,0xfd,0x3b,0xff, -0xe0,0x2, 0x4, 0x21,0x3c,0x60,0xe8,0x40,0x3e,0x69,0x3d,0xe4,0x3d,0x67,0xe8,0x40, -0x3c,0xea,0xc4,0x8, 0xde,0x66,0x4b,0x8, 0x17,0x82,0xe2,0x0, 0xcb,0x0, 0x49,0x89, -0xe0,0x6f,0x39,0x22,0xf0,0x0, 0x4c,0xa, 0x52,0x86,0xf0,0x0, 0x57,0x7, 0x39,0x6f, -0x2b,0x3e,0xee,0xff,0xcf,0xf9,0x27,0xbb,0xfa,0x22,0x7e,0x6c,0xfa,0x20,0x7e,0xac, -0xe8,0x40,0x3f,0xec,0xc7,0x8a,0xe9,0x80,0x8f,0x1c,0xe2,0x0, 0xcf,0x2, 0x1, 0x8d, -0xe8,0x1, 0x8d,0x8d,0xe8,0x0, 0x8d,0x7d,0x3c,0xe7,0xe8,0x40,0x3c,0x6a,0x7f,0x81, -0xdc,0xa8,0x67,0x81,0xe0,0x2, 0x2c,0x4e,0xe8,0x40,0x3f,0xfc,0xf0,0x0, 0xc6,0x90, -0x1, 0xeb,0x22,0x1e,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0xdf,0xc7,0xfc,0x3f,0xf7, -0x2, 0x17,0x3f,0xe3,0xc7,0x82,0x37,0x82,0xe0,0xf, 0x39,0xaf,0x39,0xef,0xe8,0x40, -0x3f,0xe8,0xc7,0x82,0x37,0x82,0xf0,0xf, 0x3c,0x2f,0xf0,0x40,0x3c,0x6f,0xe2,0x1, -0xc1,0xff,0xf2,0x1, 0xc4,0x7f,0x0, 0x84,0x11,0x2, 0x0, 0xc3,0x23,0x63,0xea,0x22, -0x7f,0xf8,0xe8,0xf, 0x3f,0x9b,0x8e,0x8f,0x57,0x8, 0x36,0xa2,0x3e,0xfe,0x3, 0xe, -0xe2,0x7, 0xcf,0x7f,0xe0,0x1, 0x5, 0x14,0x17,0x7f,0xaf,0xf, 0xea,0x23,0x7f,0x84, -0xe8,0xf, 0x3f,0x9b,0xe8,0xe, 0x39,0x98,0xaf,0xf, 0xe0,0xf, 0x3a,0x46,0xe2,0x1, -0xc7,0xff,0x27,0x89,0xe2,0x0, 0xc9,0x84,0x5, 0x92,0x3f,0xe2,0xc7,0x81,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0xe2,0x0, 0xc9,0x85,0x5, 0x8a,0xe2,0x0, 0xc9,0x86,0xe0,0x0, -0x1, 0xfa,0x17,0x81,0x3f,0x92,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x17,0x80,0xf0,0x2f, -0x3f,0x6f,0xe0,0xe, 0x32,0x82,0x3f,0x7f,0x5, 0xd, 0xf0,0x0, 0x2c,0x8c,0xe0,0xe, -0x3a,0x9f,0xe2,0x6, 0xcf,0x70,0x5, 0x6, 0x3f,0x62,0xc7,0x1, 0x39,0x6e,0xe2,0x1, -0xc1,0x7f,0xe0,0xe, 0x32,0x81,0x3f,0x7f,0x5, 0xb, 0xe0,0xe, 0x3a,0x9f,0xe2,0x19, -0xcf,0x64,0x5, 0x6, 0x3f,0x62,0xc7,0x1, 0x39,0x6e,0xe2,0x1, 0xc1,0x7f,0xe0,0x2e, -0x3f,0x95,0x27,0x18,0x17,0x5, 0xe1,0x2e,0x3f,0x23,0x27,0x14,0xe2,0x1b,0xca,0xa9, -0x2, 0x11,0x3f,0x62,0xc7,0x7f,0xe2,0x1, 0xc7,0x7f,0xe0,0x0, 0x22,0x4d,0x16,0x80, -0xe1,0x2d,0x3f,0xd, 0xe0,0x0, 0x26,0xc8,0x3f,0x62,0xc7,0x7e,0x39,0x6e,0xe2,0x1, -0xc1,0x7f,0xf2,0x0, 0xcc,0x80,0x16,0x83,0x17,0x4, 0xe0,0x6e,0x39,0x2d,0x39,0xfe, -0x5, 0x6, 0x3f,0x62,0xc7,0x1, 0x39,0x6e,0xe2,0x1, 0xc1,0x7f,0x22,0x1e,0x37,0xa1, -0x3a,0xff,0x3, 0xa, 0xf2,0x17,0xcf,0x37,0x2, 0x7, 0xe2,0x1b,0xca,0xab,0x17,0x82, -0xe0,0x6f,0x3a,0x22,0x39,0x6f,0xe2,0x0, 0xca,0x1, 0x1, 0x8f,0xe0,0x2, 0x1f,0xb1, -0xe0,0xe, 0x8f,0xdf,0xc7,0xff,0x3b,0xff,0x1, 0x88,0x17,0x84,0xe1,0x2f,0x3f,0xa3, -0x27,0x84,0x17,0x82,0xe1,0x22,0x39,0x5f,0xea,0x23,0x7c,0x90,0xe0,0x1, 0x21,0x88, -0xe8,0xf, 0x3c,0x9b,0xf0,0x0, 0x24,0x93,0xa9,0xf, 0x0, 0x93,0x37,0x2, 0xe7,0xfe, -0x0, 0xee,0xe2,0x0, 0xc9,0x87,0x1, 0x84,0x17,0x82,0xe7,0xff,0x0, 0x85,0x17,0x83, -0xe7,0xff,0x0, 0x82,0x39,0x6e,0xe7,0xff,0x0, 0xbe,0x8f,0xf, 0x3f,0x72,0x4, 0xed, -0x29,0x11,0xe8,0xf, 0x3c,0x9b,0x8f,0xf, 0x17,0x83,0xe1,0x22,0x3f,0x1f,0xe8,0x9, -0x3c,0x9b,0x8f,0x89,0xe2,0x0, 0xcf,0x85,0x17,0x82,0xe0,0x6f,0x3c,0xa2,0x39,0x6f, -0x0, 0x84,0xe2,0x0, 0xc9,0x1, 0x1, 0x74,0x3c,0x62,0xc0,0x1c,0xf8,0x0, 0xf, 0x28, -0xb, 0xe1,0x11,0x0, 0x0, 0xfa,0x11,0x1, 0xe7,0xfd,0x0, 0xd3,0xf2,0x0, 0xcd,0x2, -0x5, 0x89,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0xcf,0xc7,0xfd,0xf0,0x40,0x3d,0x7f, -0x4, 0x71,0x3c,0x60,0xe8,0x40,0x3e,0x69,0x15,0x80,0x3d,0x67,0xe8,0x40,0x3c,0xea, -0xc4,0x8, 0xdd,0x37,0x4b,0x8, 0x49,0x89,0xf0,0x0, 0x4c,0xa, 0x52,0x86,0xf0,0x0, -0x57,0x7, 0x23,0x3c,0xe8,0x40,0x3e,0x69,0x15,0x81,0x3d,0x67,0xe8,0x40,0x3c,0xea, -0xe2,0x0, 0x7c,0x14,0xdd,0x26,0x4f,0x95,0xe8,0x2, 0x39,0x1c,0x3f,0x93,0x39,0xef, -0x4f,0x96,0x99,0x2, 0xe8,0xf, 0x3f,0x98,0xf0,0x40,0x3c,0x6f,0x5f,0x8c,0xe2,0x0, -0xc9,0x2f,0x3a,0x9f,0x5f,0x8d,0xe2,0x1, 0xc1,0xff,0xf0,0x1e,0x3f,0x1f,0xf2,0x1, -0xc4,0x7f,0xe0,0x43,0x3a,0x95,0xf8,0x43,0x3f,0x1e,0xe7,0xfd,0x5, 0xef,0xe0,0x1, -0x1f,0xfd,0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xfc,0x8f,0x8f,0x3f,0xce, -0xc7,0xd1,0xe0,0x22,0x39,0x2f,0xc1,0x1, 0xe7,0xfd,0x0, 0xa4,0xf7,0xff,0x24,0x93, -0xe8,0xf, 0x3c,0x9b,0xa9,0x8f,0xe7,0xff,0x0, 0x8e,0x11,0x1, 0xe7,0xfd,0x0, 0x9a, -0x11,0x3, 0xe7,0xfd,0x0, 0xb8,0x15,0x1, 0xe7,0xfc,0x0, 0xb7,0x8, 0xb1,0xe0,0xe, -0x3c,0x2a,0xe3,0xff,0xc7,0x7f,0xe0,0x43,0x3f,0x9e,0xe2,0x0, 0xcf,0x80,0x2, 0x5, -0xe0,0xe, 0x3d,0x28,0xe3,0xff,0xc7,0x7f,0xe0,0xf, 0x3c,0xab,0xe3,0xff,0xc7,0xff, -0xe0,0x43,0x3e,0x9f,0xe2,0x0, 0xce,0x80,0x2, 0x5, 0xe0,0xf, 0x3d,0xa9,0xe3,0xff, -0xc7,0xff,0x3f,0x3e,0x3f,0xbf,0xe3,0xff,0xc7,0x7f,0xe3,0xff,0xc7,0xff,0xe0,0x8, -0x3f,0x1f,0xef,0xf7,0xdc,0xbc,0xef,0xf7,0xd8,0x74,0xef,0xf7,0xdd,0x5, 0xe3,0xff, -0xc4,0x7f,0x8, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x60,0xe0,0x3, 0x1b,0x6c, -0xe0,0x1, 0x1f,0x86,0x8e,0x86,0x17,0x0, 0x7e,0x87,0xaf,0xf, 0x2e,0x91,0xea,0x20, -0x7f,0x92,0x8f,0xf, 0x27,0x3, 0xc7,0x7f,0xaf,0xf, 0xea,0x20,0x7f,0x8a,0x8f,0xf, -0x27,0x3, 0xc7,0x7f,0xaf,0xf, 0xea,0x20,0x7f,0x90,0x17,0x0, 0xb7,0xf, 0xf0,0x3, -0x1c,0xce,0xe8,0xa, 0x8f,0x89,0xe2,0x0, 0xcf,0x81,0xe0,0x6, 0x1, 0xe2,0xea,0x22, -0x7c,0x6c,0x15,0xa, 0x14,0x80,0xc0,0x20,0xf8,0x0, 0xf, 0x28,0xb, 0xa1,0xe6,0xfd, -0x0, 0xfb,0xe2,0x0, 0xcb,0x82,0xe0,0x1, 0x1, 0xaf,0xe0,0x3, 0x1f,0xce,0xea,0x22, -0x7b,0xec,0xe0,0x1, 0x8f,0x4f,0xf0,0x40,0x3d,0xee,0xe0,0x1, 0x8f,0x3f,0xea,0x20, -0x79,0x2c,0x3b,0x6e,0xe8,0xe, 0x3b,0x9c,0xf0,0x0, 0x8f,0xe, 0xf0,0x19,0x36,0x24, -0xf2,0x0, 0xcf,0x2, 0xe8,0x1a,0x39,0x19,0xf8,0x0, 0x9c,0xa, 0xe8,0x0, 0x9d,0x9a, -0xe0,0x1, 0x1, 0x19,0xe8,0x0, 0x9c,0x9d,0xe8,0x0, 0x9c,0xd, 0xe8,0x40,0x3d,0x68, -0xdf,0x7e,0xf0,0x40,0x3f,0x68,0xf0,0x0, 0x2d,0xa7,0xea,0x21,0x7e,0x4c,0xe8,0xc, -0x3e,0x19,0xf0,0x0, 0x9d,0xc, 0x9d,0x9c,0xe8,0x0, 0x9c,0x9d,0xe8,0x0, 0x9c,0xd, -0xe8,0x40,0x3d,0x6a,0xdf,0x6c,0xe2,0x1, 0xcc,0x48,0x5, 0x95,0xf2,0x0, 0xcd,0x2f, -0x5, 0x92,0xe0,0x1, 0x1e,0x7d,0x8e,0xc, 0xe0,0xb, 0x36,0x28,0xe0,0x1, 0x1e,0x7c, -0x8e,0xc, 0x3e,0x4b,0xc6,0x50,0xf0,0x40,0x3d,0x7c,0x2, 0x5, 0xea,0x20,0x7e,0xa, -0x15,0xa0,0xad,0x8c,0x16,0xf, 0x36,0x36,0xf0,0x40,0x3f,0x7c,0xea,0x20,0x7d,0x92, -0xea,0x20,0x7e,0x10,0x5, 0x3b,0xf2,0x0, 0xcc,0x2f,0x5, 0xb8,0xe0,0x1, 0x1d,0x7d, -0x8d,0xa, 0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7c,0x8d,0xa, 0x3d,0x49,0xc5,0x50, -0xf0,0x40,0x3c,0x7a,0x2, 0x2b,0xe0,0x0, 0x16,0xc0,0xae,0x8b,0x15,0x80,0xb5,0x8c, -0xe8,0x2, 0x39,0x19,0x15,0x10,0xe0,0x9, 0x39,0x95,0x3c,0x62,0xef,0xf7,0xde,0x4c, -0xe8,0x7, 0x3b,0x9c,0x8f,0x87,0x2f,0xb7,0xea,0x20,0x7f,0x8d,0x17,0x14,0xf2,0x0, -0xcd,0x81,0xaf,0xf, 0x1, 0xa0,0xe0,0x1, 0x1f,0xfb,0x8f,0x8f,0xe0,0xe, 0x37,0xa8, -0xe0,0x1, 0x1f,0xfa,0x8f,0x8f,0x3f,0xce,0x9f,0x12,0x37,0xc1,0x3f,0x7f,0x3, 0xa3, -0xea,0x20,0x7f,0x8f,0x17,0x14,0xaf,0xf, 0x0, 0x9e,0x8d,0xb, 0x25,0x6, 0xf2,0x0, -0xcf,0x4, 0x2, 0x83,0xc5,0x7f,0xad,0xb, 0x9d,0x8c,0xe2,0x3, 0xcd,0xdf,0x2, 0xd1, -0xc5,0x81,0x0, 0xce,0xf2,0x0, 0xcd,0x82,0x1, 0x8e,0xe0,0x1, 0x1f,0xfb,0x8f,0x8f, -0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xfa,0x8f,0x8f,0x3f,0xce,0x9f,0x12,0x37,0xc1, -0x3f,0x7f,0x2, 0xdf,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe0,0x6, -0x0, 0x9e,0xea,0x21,0x7b,0x4c,0xe8,0x8, 0x3b,0x19,0x9c,0x98,0x9c,0x8, 0xe8,0x40, -0x3d,0x68,0xde,0xe5,0x15,0x10,0xe8,0x40,0x3c,0xed,0xe8,0x40,0x3c,0x6a,0xef,0xf7, -0xdd,0xfb,0xea,0x20,0x7f,0x20,0x3d,0xee,0xe8,0xb, 0x3d,0x9c,0x8e,0xb, 0x7f,0x4, -0xe2,0x1, 0xce,0x7f,0x1, 0x3, 0xc6,0x1, 0xae,0xb, 0x15,0x0, 0xe8,0x40,0x3c,0xec, -0x3c,0x64,0xdd,0x2, 0x3d,0xe8,0xc5,0xff,0xe2,0x1, 0xc5,0xff,0xe2,0x0, 0xcd,0x81, -0xf0,0x40,0x3d,0x68,0x2, 0x9c,0xe8,0xb, 0x39,0x19,0x9c,0x8b,0xe0,0x1, 0x1d,0xfd, -0xe2,0x0, 0xcc,0xaf,0x8d,0x8b,0xe0,0xa, 0x35,0xa8,0xe0,0x1, 0x1d,0xfc,0x8d,0x8b, -0x3d,0xca,0xe0,0x9, 0x5, 0xe3,0xc5,0xd0,0x3c,0xfb,0x15,0x83,0xe0,0x6b,0x3d,0x28, -0xf0,0x40,0x3d,0x6b,0xf0,0x0, 0x25,0x88,0xe0,0x3, 0x0, 0x85,0xf0,0x3, 0x2d,0x81, -0xe0,0x0, 0x24,0x4c,0xe8,0xb, 0x3b,0x19,0x98,0x8b,0xe2,0x0, 0xc8,0xff,0x2, 0x9a, -0xe0,0xb, 0x39,0x95,0x9d,0xb, 0xe8,0xb, 0x39,0x19,0x9c,0xb, 0xe0,0x9, 0x3d,0x28, -0xe0,0x43,0x3c,0x99,0xe2,0x0, 0xcc,0x80,0xe0,0x2, 0x5, 0x66,0xe0,0x43,0x3d,0x9a, -0xe0,0x43,0x3c,0x18,0x3d,0xa8,0xe0,0x0, 0x17,0xc0,0xe0,0x2b,0x3d,0x9f,0xe0,0x2, -0x2d,0xfe,0xe0,0x1, 0x1d,0xfd,0x8d,0x8b,0xe0,0xa, 0x35,0xa8,0xe0,0x1, 0x1d,0xfc, -0x8d,0x8b,0x3d,0xca,0xe1,0xff,0xc5,0x81,0x3d,0xf1,0x2, 0x1f,0xe8,0xb, 0x39,0x19, -0x9d,0xb, 0xe0,0xb, 0x39,0x95,0x9c,0xb, 0xe0,0x9, 0x3d,0x28,0xe0,0x43,0x3c,0x99, -0xe2,0x0, 0xcc,0x80,0xe0,0x2, 0x5, 0x5e,0xe0,0x43,0x3d,0x9a,0xe0,0x43,0x3c,0x18, -0x3d,0xa8,0xe0,0x0, 0x16,0xc0,0xe0,0x2b,0x3d,0x9d,0xe2,0x0, 0xcd,0x80,0x15,0x80, -0xe8,0x6b,0x39,0x2a,0xf0,0x40,0x3d,0x6b,0x14,0x80,0xe8,0x40,0x3c,0x6c,0xda,0x4f, -0x3f,0xe8,0xe2,0x0, 0xc7,0x82,0xf2,0x0, 0xcd,0x2, 0x7f,0x86,0xf0,0x40,0x3c,0x68, -0x2, 0x8a,0xe0,0x2, 0x2f,0xc8,0x3d,0xe8,0xe2,0x0, 0xc5,0x86,0xe2,0x0, 0xcd,0x84, -0xe0,0x2, 0x1, 0x47,0x66,0x86,0xe0,0x2, 0x2e,0xca,0xf0,0x0, 0x17,0x2, 0xf9,0x3e, -0x3f,0x2a,0xe8,0x40,0x3d,0x68,0xfa,0x20,0x7e,0x94,0xe2,0x0, 0xc5,0x8, 0xe0,0x2, -0x25,0x42,0xea,0x20,0x7d,0xb, 0x8d,0xa, 0x25,0xf, 0xf8,0xc, 0x3e,0x9c,0x15,0x7f, -0xad,0xc, 0xea,0x23,0x7e,0x10,0x17,0x8, 0xe8,0xc, 0x3e,0x1c,0xf0,0x0, 0x17,0x0, -0xf0,0x0, 0x15,0x8, 0xaf,0xc, 0xe8,0xa, 0x3b,0x19,0x8c,0x7a,0xe2,0x0, 0xcc,0x1, -0x5, 0x8a,0xe0,0x2, 0x1d,0x31,0xe0,0xe, 0x8d,0x4a,0xc5,0x7e,0x3c,0x7a,0x3, 0x3, -0xf0,0x0, 0x25,0xce,0xe8,0x14,0x3b,0x19,0xe8,0x1, 0x8c,0x84,0xf0,0x0, 0x7a,0x2, -0xe0,0x1, 0xd8,0xa2,0xe2,0x0, 0xcc,0x20,0xf0,0x0, 0x62,0x2, 0xe0,0x0, 0x2, 0x40, -0xea,0x20,0x7d,0x12,0xf0,0x0, 0x8a,0x8a,0xf0,0x0, 0x2a,0xba,0xf0,0x2, 0x2d,0x9d, -0xe8,0x1, 0x8d,0x4, 0xe0,0x2, 0x25,0x15,0xc5,0x7f,0x3c,0xea,0xe8,0x0, 0x8c,0x74, -0xe2,0x1, 0xc4,0xff,0xf0,0x0, 0x7a,0x81,0xe0,0x1, 0xd8,0x86,0xf0,0x0, 0x62,0x81, -0x3d,0x68,0xe0,0x2, 0x1c,0x31,0xe8,0x1, 0x3b,0x19,0xe0,0xe, 0x8c,0x78,0xe0,0x1, -0x8c,0x81,0xc4,0x7f,0x3c,0xf8,0x3, 0x10,0x8c,0x71,0xc4,0x81,0xe2,0x1, 0xc4,0xff, -0xf0,0x0, 0x7a,0x81,0x7d,0x3, 0xe0,0x1, 0xd8,0x6f,0x65,0x3, 0xf0,0x0, 0x62,0x81, -0x3d,0x18,0xe0,0x43,0x3d,0x1a,0xe8,0x40,0x3c,0x6a,0xe4,0x0, 0xc4,0xb, 0x3d,0x18, -0xe2,0x1, 0xcd,0x5b,0xe8,0x75,0x3a,0x2a,0xf8,0x40,0x3d,0x65,0xf8,0xa, 0x3e,0x9c, -0x88,0x8a,0xe2,0x0, 0xc8,0xe4,0xe0,0x2, 0x2, 0x97,0xf2,0x0, 0xcd,0x2, 0xe0,0x2, -0x2, 0x93,0xe8,0xa, 0x39,0x19,0xf0,0x1, 0x2d,0xdc,0x9c,0x8a,0xe8,0xa, 0x3b,0x19, -0xf0,0x0, 0x9a,0x8a,0xe0,0x1, 0x1d,0x7d,0xe0,0x1, 0x1c,0x7c,0x8d,0xa, 0x35,0x28, -0x8c,0x8, 0x3d,0x48,0xea,0x23,0x7c,0x10,0xe8,0x8, 0x3c,0x1c,0xf0,0x0, 0x8a,0x8, -0xe8,0x40,0x3c,0x68,0xe2,0x0, 0xc4,0x4, 0xe0,0x1, 0x2c,0x50,0xf2,0x0, 0xca,0x4, -0xe0,0x1, 0x2, 0xe6,0xf0,0x0, 0x64,0x4, 0xf8,0x18,0x3c,0x1c,0xe8,0x0, 0x8c,0x8, -0xe2,0x0, 0xcc,0x63,0xe0,0x1, 0x2, 0xc2,0xe2,0x0, 0xcc,0xaf,0xe0,0x1, 0x5, 0xbe, -0x3c,0x6a,0xc4,0x50,0x3c,0xf8,0xe0,0x1, 0x2, 0x39,0xf0,0x1, 0x2d,0xd1,0xf8,0xa, -0x3e,0x9c,0xf0,0x0, 0xad,0x8a,0xf0,0x1, 0x25,0x51,0xf8,0xc, 0x3e,0x9c,0x8e,0xc, -0xe0,0x6, 0x26,0x55,0xea,0x23,0x7d,0x10,0xe8,0xa, 0x3d,0x1c,0x8d,0xa, 0xe2,0x0, -0xcd,0x2, 0xe0,0x1, 0x2, 0xfd,0xe0,0x0, 0x1d,0x25,0x8d,0xa, 0xe2,0x0, 0xcd,0x1, -0xe0,0x1, 0x2, 0xf6,0x67,0x6, 0xe0,0x1, 0x2f,0x73,0xe0,0x1, 0x1d,0x7d,0x8d,0xa, -0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7c,0x8d,0xa, 0x3d,0x49,0xe8,0x9, 0x39,0x19, -0x9c,0x89,0xf0,0x1, 0x25,0xfd,0xe2,0x0, 0xcc,0xaf,0xe0,0x2, 0x5, 0x82,0x3e,0xea, -0xc6,0xd0,0x3c,0xfd,0xf0,0x0, 0x15,0x81,0xe0,0x1, 0x5, 0x77,0x3d,0x6c,0xc5,0x7f, -0xe2,0x1, 0xc5,0x7f,0xe2,0x1, 0xcd,0x7d,0x2, 0x87,0xf8,0xb, 0x3e,0x9c,0xe8,0x1e, -0x3e,0x2e,0xf0,0x0, 0xaf,0xb, 0xf0,0x6, 0x25,0x9c,0xe0,0x1, 0x1f,0x7b,0xe8,0x2, -0x39,0x19,0x8e,0x8e,0xe0,0x1, 0x1f,0x7a,0x36,0xa8,0x8f,0xe, 0x3f,0x4d,0x9e,0x92, -0x37,0x41,0x3e,0xfe,0xe0,0x2, 0x5, 0xdf,0xea,0x20,0x7f,0xe, 0x16,0x81,0xae,0x8e, -0xe0,0x2, 0x0, 0xd9,0x15,0xc0,0xe0,0x2b,0x3d,0x99,0xe7,0xfd,0x0, 0xa2,0xe7,0xfd, -0x24,0x4d,0xe8,0xb, 0x39,0x19,0x9d,0x1b,0xe0,0xb, 0x39,0x95,0x9d,0x9b,0xe0,0x9, -0x3d,0x2b,0xe0,0x43,0x3c,0x99,0xe2,0x0, 0xcc,0x80,0x5, 0xb, 0xe0,0x43,0x3d,0x9b, -0xe0,0xb, 0x3d,0x2b,0xe0,0x0, 0x17,0x40,0xe0,0x2b,0x3d,0x9e,0xe7,0xfd,0x0, 0xaf, -0x15,0xc0,0xe0,0x2b,0x3d,0x99,0xe7,0xfd,0x0, 0xaa,0xf0,0x0, 0x15,0x0, 0xe7,0xfd, -0x0, 0xad,0xf0,0x0, 0x17,0x0, 0xf0,0x0, 0x15,0x3, 0xe7,0xfd,0x0, 0xc4,0xf8,0x40, -0x3d,0x6e,0xf0,0x0, 0x17,0x1, 0xe7,0xfd,0x0, 0xbe,0xf0,0x0, 0x17,0x0, 0xe7,0xfd, -0x0, 0xba,0xf7,0xfd,0x2c,0x52,0xf8,0xa, 0x3e,0x9c,0x8c,0x8a,0xe2,0x1, 0xcc,0xff, -0xe7,0xfd,0x1, 0xcb,0xe0,0x0, 0x17,0xe4,0xaf,0x8a,0xe7,0xfd,0x0, 0xc6,0xe8,0x40, -0x3d,0x6b,0xe7,0xfd,0x0, 0xf8,0xe8,0x40,0x3d,0x65,0xe7,0xfe,0x0, 0x8e,0x9c,0x9a, -0xe8,0xa, 0x3b,0x19,0xf0,0x0, 0x9a,0x9a,0xe0,0x1, 0x1d,0x7b,0xe0,0x1, 0x1c,0x7a, -0x8d,0xa, 0x35,0x28,0xe7,0xfe,0x0, 0xa6,0xf2,0x0, 0xca,0x3, 0x2, 0x98,0xea,0x20, -0x7c,0x12,0x8c,0x8, 0x2c,0x14,0xf2,0x0, 0xca,0xaf,0x5, 0x87,0x3c,0x6a,0xc4,0x50, -0xf0,0x40,0x3a,0xf8,0xe0,0x0, 0x5, 0x49,0xe2,0x0, 0xcc,0xaf,0x5, 0x88,0xc5,0x50, -0x3c,0xfa,0x15,0x1, 0xe8,0x6a,0x3a,0x2e,0xf0,0x40,0x3f,0x6a,0xf7,0xfe,0x2d,0x37, -0xe2,0x1, 0xc8,0xff,0xe7,0xfe,0x1, 0x33,0xf8,0xc, 0x3e,0x9c,0x15,0x0, 0xad,0xc, -0xe7,0xfe,0x0, 0xad,0xf7,0xff,0x25,0x74,0x15,0x0, 0xf0,0x2a,0x3d,0x8a,0x25,0x6f, -0xea,0x20,0x7d,0xe, 0x8d,0xa, 0x25,0x1d,0xf2,0x0, 0xcd,0x4, 0x2, 0x9a,0xe0,0x1, -0x1e,0x7b,0xe8,0x9, 0x39,0x19,0x8e,0xc, 0xe0,0xa, 0x36,0x28,0xe0,0x1, 0x1e,0x7a, -0x8e,0xc, 0x3e,0x4a,0x9d,0x19,0x36,0x42,0x3d,0x7c,0x3, 0x8b,0xea,0x23,0x7e,0x10, -0xe8,0xc, 0x3e,0x1c,0x15,0x2, 0xf0,0x0, 0x17,0x1, 0xad,0xc, 0xe7,0xfe,0x0, 0x87, -0xe2,0x1, 0xc8,0xff,0xe7,0xfe,0x1, 0x3, 0xf8,0xc, 0x3e,0x9c,0xe0,0x0, 0x16,0xe4, -0xae,0x8c,0xe7,0xfd,0x0, 0xfc,0xf0,0x0, 0x17,0x1, 0x0, 0xc1,0xf0,0x0, 0x2d,0xa1, -0xf0,0x0, 0x15,0x81,0xe0,0x1, 0x1d,0x7d,0xe8,0x8, 0x39,0x19,0x8d,0xa, 0x9c,0x8, -0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7c,0x8d,0xa, 0x3d,0x49,0x3c,0x7a,0x15,0x0, -0xe8,0x6a,0x3d,0xae,0xf0,0x40,0x3f,0x6a,0xe7,0xfe,0x0, 0x92,0xf0,0x0, 0x17,0x1, -0xf8,0x40,0x3d,0xee,0x0, 0xe8,0xf8,0x40,0x3f,0x6b,0xe7,0xfe,0x0, 0x89,0xf0,0x0, -0x15,0x81,0xe7,0xfe,0x0, 0x85,0xef,0xf7,0xdb,0x6f,0xe0,0x4, 0x0, 0xf7,0xeb,0x84, -0x7e,0xc8,0xe9,0xff,0xc6,0xfe,0x17,0x8c,0xa1,0x8d,0x12,0x0, 0x7f,0x85,0xe0,0x3, -0x1f,0x6c,0x8f,0x8e,0x3f,0xf4,0xe0,0x0, 0x5, 0xf9,0xf0,0x3, 0x1e,0xeb,0xe0,0x5, -0x32,0x24,0xf0,0x1d,0x3e,0x95,0xe8,0x0, 0x8f,0xcd,0xf6,0xfc,0xce,0x4f,0xf2,0x0, -0xce,0x9, 0xe7,0xfa,0x2, 0xc1,0xe8,0x40,0x3f,0xec,0xe4,0x0, 0xc7,0x86,0xe0,0x3, -0x1f,0x6b,0x7f,0x88,0x3f,0x1f,0xe0,0x3, 0xc7,0x60,0x8b,0x8e,0xe7,0xf9,0x2b,0x83, -0xea,0x21,0x7c,0xcc,0xf0,0x2, 0x36,0x24,0xe0,0xe, 0x3c,0x92,0x15,0x10,0xe8,0x40, -0x3c,0xed,0x3c,0x6e,0xef,0xf7,0xdb,0x38,0x3f,0x68,0xea,0x20,0x7c,0x2c,0x3c,0xee, -0x3c,0x12,0x15,0x10,0xea,0x20,0x79,0x14,0xef,0xf7,0xdb,0x2e,0xe8,0xe, 0x39,0x1c, -0xab,0x8e,0xea,0x23,0x7f,0x4, 0xe8,0xe, 0x3f,0x1c,0xab,0x8e,0xea,0x22,0x7f,0x78, -0xe8,0xe, 0x3f,0x1c,0xe8,0x40,0x3c,0xec,0x3c,0x64,0xab,0x8e,0xdb,0xfd,0x24,0x2, -0x14,0x2, 0xea,0x22,0x7a,0xec,0xe8,0x7, 0x3a,0x9c,0xac,0x7, 0x14,0x81,0xe8,0x40, -0x3c,0x6c,0xef,0xff,0xd7,0xed,0x24,0x3, 0x17,0x2, 0xaf,0x7, 0xea,0x20,0x7f,0x20, -0xe8,0xe, 0x3f,0x1c,0x16,0x80,0xae,0x8e,0xea,0x23,0x7f,0x10,0xe8,0xe, 0x3f,0x1c, -0xe8,0x5, 0x3a,0x9c,0xae,0x8e,0x8f,0x5, 0xe2,0x0, 0xcf,0x2, 0x1, 0x86,0xe8,0xe, -0x39,0x1c,0xe0,0x0, 0x16,0xe4,0xae,0x8e,0xe8,0xe, 0x39,0x1c,0x8f,0xe, 0xe7,0xf9, -0x27,0x63,0xe8,0x40,0x3c,0xec,0x3c,0x64,0xd8,0x99,0x67,0x85,0xc7,0xff,0xe2,0x1, -0xc7,0xff,0x7f,0x85,0xe7,0xff,0x2f,0x85,0xe0,0x1, 0x1e,0x86,0xea,0x20,0x7f,0x8c, -0x8f,0xd, 0x66,0x87,0xe0,0xe, 0x3e,0xae,0xaf,0xf, 0xea,0x20,0x7f,0x88,0xe0,0x3, -0x1f,0x6c,0x8e,0xe, 0x8e,0x8f,0xea,0x20,0x7f,0xb, 0xe1,0x2d,0x3e,0x1d,0xf0,0x3, -0x1c,0x64,0xf0,0x2, 0x1d,0x43,0xf0,0x3, 0x1d,0xe5,0xe0,0x4, 0x1a,0x6c,0xf0,0x0, -0x14,0x80,0x13,0x9, 0xe0,0x3, 0x13,0xe0,0xae,0x8e,0xae,0xf, 0x3f,0xe6,0xe4,0x0, -0xc7,0x86,0xe8,0x40,0x39,0x69,0xe0,0x3, 0xc7,0xe0,0xe2,0x1, 0xc1,0x7f,0x3e,0x66, -0x3f,0x93,0x3b,0x6c,0xf0,0x40,0x3e,0xec,0x8e,0xf, 0xe2,0x1, 0xc3,0x7f,0xe2,0x0, -0xce,0x3, 0x1, 0xa, 0xe8,0x40,0x3e,0x6d,0xc7,0xfa,0xc6,0x7f,0xf7,0xff,0x2e,0xf3, -0x13,0x0, 0xf0,0x40,0x3e,0xe6,0xe8,0x40,0x3f,0xe9,0xe4,0x0, 0xc7,0x86,0xe0,0x3, -0xc7,0xe0,0x3f,0x93,0x8e,0xf, 0xe2,0x0, 0xce,0x1, 0xe0,0x2, 0x1, 0xa9,0xea,0x22, -0x7f,0xec,0xe8,0xf, 0x3f,0x99,0x8d,0xf, 0xe2,0x0, 0xcd,0x2, 0xe0,0x2, 0x1, 0xa0, -0xae,0xf, 0xea,0x20,0x7f,0xac,0xf0,0x5, 0x34,0xa4,0x3f,0x95,0xe0,0x1, 0x8c,0x8f, -0x8c,0x7f,0xe0,0x1, 0xd6,0x1, 0xe0,0x3, 0x1e,0xce,0xe8,0x0, 0x8c,0x88,0xe0,0x1, -0x8f,0xcd,0xf0,0x40,0x3a,0xe7,0x3e,0x6f,0xea,0x20,0x7f,0x8a,0xf0,0x0, 0x8a,0xf, -0xe0,0x1, 0x17,0x34,0xe8,0xf, 0x3e,0x44,0xe2,0x0, 0xcf,0x80,0xf0,0x40,0x3f,0x68, -0xe0,0x75,0x39,0x2e,0xe0,0x1, 0x2c,0xfc,0x3c,0x62,0xf0,0x0, 0x7a,0x81,0xf0,0x0, -0x7a,0x2, 0x7e,0x3, 0xef,0xff,0xd7,0x44,0xe6,0xff,0xcc,0x78,0xf0,0x0, 0x62,0x81, -0xf0,0x0, 0x62,0x2, 0x66,0x3, 0xe0,0x1, 0x2c,0x6b,0xea,0x20,0x7f,0x92,0x8c,0x8f, -0x24,0x85,0xf2,0x0, 0xcf,0x21,0xe0,0x1, 0x2, 0x63,0xea,0x22,0x7d,0x78,0xe8,0xa, -0x3d,0x19,0x8d,0xa, 0xfa,0x20,0x7b,0xa0,0xe2,0x0, 0xcd,0x57,0xf8,0x1c,0x3c,0x97, -0xe8,0x0, 0x8f,0x8c,0x2, 0x93,0xea,0x23,0x7d,0x4, 0xe8,0xa, 0x3d,0x19,0x8d,0xa, -0xe2,0x0, 0xcd,0x5, 0x5, 0x8b,0xe2,0x0, 0xcf,0x94,0xe0,0x1, 0x2, 0xc9,0xf2,0x0, -0xcf,0x2c,0xe0,0x1, 0x2, 0x45,0xe0,0x1, 0x2c,0xc3,0xc7,0xff,0xe2,0x1, 0xc7,0xff, -0xe2,0x1, 0xcf,0xb2,0xe0,0x1, 0x2, 0xbc,0xe8,0x0, 0x97,0x9a,0xe8,0x40,0x3f,0xfe, -0xe0,0x1, 0x5, 0x36,0xe0,0x3, 0x1f,0xec,0xf0,0x0, 0x8f,0xf, 0xf0,0x0, 0x2f,0x8, -0xea,0x20,0x7f,0x8d,0x8f,0x8f,0x2f,0x83,0xf0,0x0, 0x22,0x2b,0x2e,0x29,0xea,0x20, -0x7f,0x90,0x9f,0x8f,0xe8,0x40,0x3f,0xf5,0x3, 0xa3,0xe0,0x1, 0x1d,0x7d,0xea,0x21, -0x7f,0xcc,0x8d,0xa, 0x3f,0x95,0xe0,0x9, 0x35,0x28,0x9c,0xf, 0xe0,0x1, 0x1d,0x7c, -0xe2,0x0, 0xcc,0x2f,0x8d,0xa, 0x3d,0x49,0x5, 0x84,0xc5,0x50,0x3c,0x7a,0x5, 0x10, -0xe0,0x1, 0x1d,0x7b,0x8d,0xa, 0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7a,0x8d,0xa, -0x3d,0x49,0x9c,0x9f,0xe0,0xf, 0x35,0x41,0x3c,0xff,0xe0,0x1, 0x2, 0x81,0xea,0x20, -0x7f,0x8f,0x8f,0x8f,0x27,0xbe,0x26,0x3d,0xea,0x20,0x7f,0x90,0x9f,0x8f,0xe8,0x40, -0x3f,0xf5,0x3, 0xb7,0xea,0x21,0x7f,0xcc,0x3f,0x95,0x9c,0x1f,0xe2,0x0, 0xcc,0x2f, -0x2, 0x92,0xe0,0x1, 0x1d,0x7d,0x8d,0xa, 0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7c, -0x8d,0xa, 0x3d,0x49,0x9c,0x8f,0x35,0x41,0x3c,0xfa,0x3, 0x85,0xe2,0x0, 0xce,0x1, -0xe0,0x0, 0x1, 0x5e,0xe0,0x1, 0x1d,0x7b,0x8d,0xa, 0xe0,0x9, 0x35,0x28,0xe0,0x1, -0x1d,0x7a,0x8d,0xa, 0x3d,0x49,0xc5,0x51,0x3d,0x78,0x2, 0x13,0xe0,0x1, 0x1d,0x7d, -0x8d,0xa, 0xe0,0x9, 0x35,0x28,0xe0,0x1, 0x1d,0x7c,0x8d,0xa, 0x3d,0x49,0x9c,0x8f, -0xe0,0xf, 0x35,0x41,0x3c,0xff,0x5, 0x85,0xe2,0x0, 0xce,0x2, 0xe0,0x0, 0x1, 0x40, -0xea,0x23,0x7f,0x90,0xe8,0xf, 0x3f,0x99,0x8f,0x8f,0xe2,0x0, 0xcf,0x84,0x2, 0xb7, -0x26,0x2, 0x1, 0x35,0xf2,0x0, 0xcf,0x9, 0x2, 0xb2,0xe8,0x40,0x3f,0xed,0xe4,0x0, -0xc7,0x86,0x16,0x80,0xe8,0xf, 0x3f,0x9b,0xb6,0x8f,0xea,0x21,0x7c,0xcc,0xf0,0xf, -0x37,0x24,0x3f,0x93,0x3c,0x6f,0x15,0x10,0x3c,0x95,0xef,0xf7,0xd9,0x95,0xf0,0x0, -0xc7,0x1, 0xe8,0x40,0x3f,0xee,0xe2,0x1, 0xc7,0xff,0xe0,0x3, 0x1f,0x6c,0xe0,0xc, -0x37,0xa4,0xc6,0x4, 0xab,0x48,0x3e,0x13,0xaf,0x8e,0xe2,0x0, 0xcf,0x8a,0x1, 0xb2, -0xe0,0x1, 0x8f,0xb4,0xe8,0xb, 0x3a,0x1d,0xaf,0x9b,0x17,0x80,0xe8,0x0, 0xaf,0x8c, -0x23,0xc, 0x3f,0xe6,0xc7,0xff,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xf0,0x0, 0xc4,0x81, -0xf2,0x0, 0xcc,0x8a,0xe7,0xfd,0x1, 0xac,0xe0,0x1, 0x1f,0x86,0x8f,0xf, 0x2f,0x4, -0xea,0x20,0x7f,0x8e,0xaf,0xf, 0xea,0x20,0x7f,0x89,0xe0,0x3, 0x1e,0xec,0x8f,0xd, -0xaf,0xf, 0xea,0x20,0x7f,0x8f,0x8f,0xf, 0x27,0x3, 0xc7,0x7f,0xaf,0xf, 0xea,0x20, -0x7f,0x8d,0x8f,0xf, 0x27,0x3, 0xc7,0x7f,0xaf,0xf, 0xc0,0x20,0xf8,0x0, 0xf, 0x28, -0xb, 0xe1,0x8d,0xc, 0x3d,0x72,0x1, 0x3, 0x3d,0x76,0x1, 0x83,0x16,0xff,0xae,0x8c, -0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xc6,0x10,0x0, 0xc1,0xf7,0xfb,0x25,0xb5,0xe0,0x4, -0x1e,0xe5,0x17,0x8, 0xe8,0xd, 0x3e,0x9c,0xaf,0xd, 0xe8,0x7, 0x3b,0x9c,0xe0,0x4, -0x1e,0xec,0x17,0x83,0xe8,0xc, 0x3e,0x9c,0xe0,0x1, 0x8e,0xbd,0xaf,0x87,0xae,0x9c, -0xe8,0xc, 0x3b,0x19,0xe0,0xd, 0x39,0x95,0x9e,0x9d,0x9d,0x9c,0xe0,0xc, 0x3e,0xab, -0xe3,0xff,0xc6,0x7f,0xe0,0x43,0x3d,0x1c,0xe2,0x0, 0xcd,0x0, 0x2, 0x5, 0xe0,0xc, -0x3d,0xad,0xe3,0xff,0xc6,0x7f,0xe0,0xd, 0x39,0x95,0x9d,0x8d,0xe8,0xd, 0x3b,0x19, -0x9d,0xd, 0xe0,0xd, 0x3d,0xaa,0xe3,0xff,0xc6,0xff,0xe0,0x43,0x3c,0x9d,0xe2,0x0, -0xcc,0x80,0x2, 0x5, 0xe0,0xd, 0x3d,0x2b,0xe3,0xff,0xc6,0xff,0x15,0xbb,0xe1,0x2c, -0x3e,0x1b,0x15,0x10,0xe8,0x9, 0x3b,0x19,0xe0,0x8, 0x39,0x95,0xe7,0xfb,0x26,0x15, -0x11,0x9, 0xe1,0x2d,0x39,0x2d,0xe7,0xfb,0x26,0x90,0xef,0xf7,0xd8,0xfd,0xe0,0x4, -0x1f,0xe5,0xe8,0xf, 0x3f,0x9c,0xa9,0xf, 0x17,0x0, 0xe0,0x3, 0x1f,0xe5,0x66,0x88, -0x3f,0x9d,0xb7,0xf, 0xe7,0xf5,0x0, 0xe0,0xf0,0x0, 0x15,0x3, 0xe7,0xf6,0x0, 0xa4, -0xe0,0x2, 0x1f,0x43,0xe0,0x4, 0x1f,0xb4,0x95,0xae,0x8f,0xdf,0x16,0x80,0xe0,0x2, -0x1d,0x78,0x35,0x81,0x3f,0x6d,0xe0,0xc, 0x3f,0xa8,0x3c,0x7c,0x4, 0x6, 0xe4,0x0, -0xc7,0x3, 0xe0,0x28,0x3e,0xae,0x38,0x82,0x3f,0xe8,0xe0,0x2, 0xc7,0xb6,0x37,0xa1, -0x3f,0x9a,0x97,0x8f,0x3f,0xfb,0x5, 0x9, 0x3e,0x9f,0x3f,0xe8,0xe0,0x1, 0xc7,0xba, -0x37,0xa1,0x3f,0x9a,0x97,0x8f,0x3f,0x1f,0x3f,0xe8,0xc7,0x81,0x3c,0x6f,0xe2,0x1, -0xc4,0x7f,0x0, 0xe4,0x8, 0xb3,0xc0,0x7c,0x39,0x68,0x3c,0x6a,0x7d,0x1, 0x39,0xe9, -0xdf,0xd0,0xe2,0x0, 0xcc,0x1, 0x65,0x1, 0x1, 0xd, 0xe0,0x4, 0x1f,0xb4,0xe0,0x2, -0x1e,0x78,0x8f,0x5f,0xe0,0x2, 0x1f,0xc3,0x3f,0x2a,0x96,0xaf,0x36,0x81,0x3d,0x7e, -0x4, 0x4, 0x14,0x0, 0xc0,0x4, 0x9, 0xe1,0x3f,0xea,0xe0,0x1, 0xc7,0xf8,0x37,0xa1, -0x3f,0x9c,0x95,0x8f,0xe0,0x41,0x3f,0xab,0x3f,0xf3,0x3, 0x12,0x3f,0xea,0xe0,0x2, -0xc7,0xb6,0x37,0xa1,0x3f,0x9c,0x97,0x8f,0x3f,0xfd,0x5, 0xa, 0x3f,0xea,0xe0,0x1, -0xc7,0xba,0x37,0xa1,0x3f,0x9c,0x97,0x8f,0x3f,0xab,0x3f,0xf2,0x2, 0x7, 0x3f,0xea, -0xc7,0x81,0x3d,0x6f,0xe2,0x1, 0xc5,0x7f,0x0, 0xdb,0x14,0x1, 0x0, 0xdc,0xe0,0x2, -0x1f,0x43,0xe0,0x4, 0x1f,0xb4,0x96,0xae,0x8f,0xdf,0xe0,0x2, 0x1e,0x78,0x36,0x81, -0xe0,0xe, 0x3f,0xaa,0x3d,0x7e,0x4, 0x3, 0x14,0x0, 0x38,0x82,0x3f,0xea,0xe0,0x2, -0xc7,0xb6,0x37,0xa1,0x3f,0x9c,0x97,0x8f,0x3f,0xfd,0x5, 0x14,0x3f,0xea,0xe0,0x1, -0xc7,0xf8,0x37,0xa1,0x3f,0x9c,0x95,0x8f,0xe0,0x41,0x3f,0xab,0x3f,0xf9,0x3, 0xa, -0x3f,0xea,0xe0,0x1, 0xc7,0xba,0x37,0xa1,0x3f,0x9c,0x97,0x8f,0x3f,0xab,0x3f,0xf8, -0x2, 0x7, 0x3f,0xea,0xc7,0x81,0x3d,0x6f,0xe2,0x1, 0xc5,0x7f,0x0, 0xdc,0x14,0x1, -0x0, 0xdd,0xe0,0x0, 0x1f,0x9a,0x8c,0xf, 0xe0,0x0, 0x24,0x56,0x8, 0xb7,0xe0,0x4, -0x1f,0xb4,0xe0,0x0, 0x1e,0x13,0x8d,0xdf,0x89,0xcf,0xe0,0x2, 0x1f,0xb1,0x3a,0xeb, -0xe0,0xe, 0x8d,0x5f,0xe0,0x4, 0x1f,0xbe,0xe5,0xff,0xc2,0xfe,0x94,0xff,0xe0,0x2, -0x1f,0xea,0xe0,0x2, 0x1b,0x78,0xa0,0x8f,0xe0,0x2, 0x1f,0xc3,0xc5,0x7f,0x91,0x2f, -0x34,0x81,0xe0,0x4, 0x35,0xa1,0x17,0x0, 0x8f,0x9c,0x27,0xab,0x3f,0xfa,0x1, 0x29, -0x3e,0xef,0xe0,0x1, 0xc6,0xba,0x36,0xa1,0x3e,0x96,0x96,0x8d,0x3e,0xf9,0x4, 0x21, -0x37,0xa1,0x3f,0x91,0x16,0x80,0x3e,0xf3,0x1, 0x8a,0x8f,0x8c,0x16,0x80,0x3f,0xbb, -0x37,0xa1,0x3f,0x91,0x3e,0xfb,0x1, 0x8d,0x14,0x1, 0xb, 0xe1,0x3f,0x94,0xe0,0x7, -0x3f,0x95,0x93,0x87,0x3b,0xf2,0x2, 0xd, 0xc6,0x81,0xe2,0x1, 0xc6,0xff,0x0, 0xec, -0xe1,0x80,0x93,0x9f,0x3b,0xf2,0x2, 0x5, 0xc6,0x81,0xe2,0x1, 0xc6,0xff,0x0, 0xeb, -0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x3c,0x7e,0xc6,0x2, 0x1, 0xcd, -0x14,0x0, 0x0, 0xe4,0x38,0x82,0x8, 0xb6,0xe0,0x4, 0x1f,0xb4,0xe0,0x4, 0x19,0xbe, -0x8a,0xdf,0x9c,0x73,0x3e,0x65,0x9c,0xe3,0xe0,0x2, 0x1d,0xf8,0x17,0x0, 0x17,0x81, -0xc6,0x7f,0x3f,0xfc,0xe0,0x0, 0x4, 0x4e,0xe0,0x2, 0x1f,0xc3,0x11,0x0, 0x96,0xaf, -0xe0,0x2, 0x1e,0x69,0x36,0x81,0x3f,0xe2,0x3f,0xf5,0xe0,0x0, 0x1, 0xd3,0xe0,0x5, -0x1a,0x7, 0x15,0x2, 0xe0,0x0, 0x2f,0x5c,0x17,0x80,0xe1,0x2f,0x39,0xf, 0xe0,0x0, -0x27,0xd7,0xdf,0x11,0x3b,0x68,0xdf,0x7e,0x24,0x16,0xe0,0x1, 0x9f,0xa3,0x3e,0xef, -0xe2,0xa0,0xc6,0x80,0x3f,0x6f,0x2e,0x8f,0xe2,0x10,0xc7,0x0, 0x27,0x8, 0x17,0x10, -0xaf,0x4, 0x17,0x1, 0xe7,0xb, 0xcf,0x9e,0xe0,0x1, 0xb7,0xa3,0x17,0x1, 0xe0,0x3, -0x1f,0xd6,0xaf,0xf, 0x29,0x4, 0xe0,0x3, 0x1f,0xd6,0xa9,0xf, 0xe0,0x0, 0x1f,0xae, -0x8f,0x8f,0x2f,0x84,0xc2,0xfc,0x3a,0xf2,0x2, 0x8, 0xe0,0x3, 0x1f,0x3a,0x17,0x80, -0xaf,0x8e,0xe0,0x3, 0x1f,0x56,0xaf,0x8e,0x8f,0x84,0xe0,0x0, 0x23,0x4e,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x90,0x2, 0xbd,0xaf,0x84,0xe0,0x0, 0x0, 0xd1, -0x3e,0xef,0xe0,0x1, 0xc6,0xf8,0x36,0xa1,0x3e,0x9b,0x96,0x8d,0x3e,0xf9,0x5, 0x4, -0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe7,0xff,0x0, 0xa3, -0xe1,0x80,0x95,0x9c,0x3d,0xfd,0x5, 0x6, 0x3d,0xe2,0xc5,0x81,0x39,0x6b,0xe2,0x1, -0xc1,0x7f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe7,0xff,0x0, 0xa0,0xde,0xf9,0xe2,0x0, -0xcc,0x1, 0x1, 0x91,0xe0,0x1, 0x9f,0xa3,0x3f,0x6f,0xe2,0x10,0xc7,0x0, 0x27,0x7, -0x17,0x10,0xe7,0xb, 0xcf,0x98,0xe0,0x1, 0xb7,0xa3,0xaf,0x4, 0x17,0x1, 0xe0,0x3, -0x1f,0xba,0xaf,0xf, 0x29,0x4, 0xe0,0x3, 0x1f,0xba,0xa9,0xf, 0x13,0x0, 0xe7,0xff, -0x0, 0x94,0x17,0x90,0xaf,0x84,0x17,0x1, 0xe0,0x1, 0x9f,0xa3,0xe7,0xb, 0xcf,0x9e, -0xe0,0x1, 0xb7,0xa3,0x0, 0x8d,0xe0,0x1, 0x9f,0x23,0x3e,0xee,0xe2,0x10,0xc6,0x80, -0x2e,0x85,0x27,0x86,0xc7,0xff,0xe7,0xff,0x0, 0xb2,0x27,0x83,0x21,0x7c,0xb, 0x61, -0x3f,0xee,0xe7,0xb, 0xcf,0x96,0x0, 0xed,0x8, 0xb4,0xe0,0x4, 0x1f,0xb4,0x8c,0x5f, -0x89,0xcf,0xe0,0x2, 0x1f,0xea,0x38,0xe8,0xa1,0xf, 0x17,0x80,0x3f,0x6f,0x3d,0xef, -0x3e,0x6f,0x39,0xfc,0x5, 0xad,0xe0,0x9, 0x38,0xbc,0x16,0x80,0xe3,0xff,0xc4,0xff, -0x0, 0x9f,0xe0,0xa, 0x3c,0x9d,0xe6,0xb0,0xcd,0x7a,0x3d,0x12,0x9d,0xa, 0x3a,0x6a, -0xc2,0x4d,0xe2,0x4, 0xca,0x24,0x2, 0x84,0xc5,0x81,0xe3,0xff,0xc5,0xff,0xe0,0x4, -0xc5,0x57,0xe3,0xff,0xc5,0x7f,0xe2,0x4, 0xcd,0x24,0x2, 0x84,0xc7,0x1, 0xe3,0xff, -0xc7,0x7f,0xc7,0x81,0xc6,0x82,0xe3,0xff,0xc7,0xff,0xe2,0x1, 0xc6,0xff,0x3c,0x7d, -0x2, 0xe1,0x3e,0xec,0xc6,0x82,0x3e,0x6d,0xe2,0x1, 0xc6,0x7f,0x0, 0xd3,0x3c,0xef, -0xe4,0x0, 0xc4,0x86,0xea,0x23,0x7e,0x1b,0xe6,0xcd,0xcc,0x89,0xea,0x23,0x7e,0x9a, -0xe1,0x28,0x3d,0x99,0xe6,0xcd,0xcf,0x8f,0xe0,0x3, 0x1d,0x6, 0x24,0x12,0xe1,0x28, -0x3f,0x9e,0x24,0xf, 0x8f,0x8d,0x17,0x0, 0xe2,0x0, 0xcf,0x84,0xaf,0xc, 0x2, 0x85, -0xc7,0x81,0xaf,0x8d,0x8c,0xa, 0xa, 0x61,0x17,0x81,0xaf,0xd, 0xaf,0x8a,0x0, 0xfb, -0xe1,0x2e,0x3f,0x19,0x27,0x10,0xe1,0x2f,0x3f,0x9b,0x27,0x8d,0x8f,0x8c,0x17,0x0, -0xe2,0x0, 0xcf,0x84,0xaf,0xd, 0x2, 0x84,0xc7,0x81,0xaf,0x8c,0x0, 0xec,0x17,0x82, -0xaf,0xc, 0x0, 0xed,0x17,0x80,0xaf,0x8c,0xaf,0x8d,0x0, 0xe9,0x8, 0xb3,0x3f,0x68, -0xe0,0x4, 0x1f,0xb4,0xe4,0x0, 0xc7,0x7c,0xe0,0x2, 0x1d,0x78,0xe0,0x2, 0xc7,0x72, -0x8d,0xdf,0x3f,0x1a,0xe0,0xff,0x16,0x7f,0x16,0x80,0x3e,0xfb,0x1, 0xa2,0xe3,0xf8, -0xce,0x17,0x17,0x3, 0x17,0x80,0xe0,0x6f,0x3a,0x2e,0xe0,0x2, 0x19,0x43,0xe4,0x0, -0xc4,0x3e,0xe0,0xff,0x15,0xff,0xe7,0x0, 0x17,0x1, 0x3e,0xaf,0x3f,0xfd,0x4, 0x1b, -0xe0,0x41,0x3f,0xab,0xe0,0x41,0x3e,0xae,0x3f,0xfd,0x5, 0x31,0xe7,0x0, 0x14,0x1, -0xe1,0x2e,0x3f,0x8, 0xe0,0xff,0x14,0x7f,0xe1,0x28,0x3d,0x88,0x3c,0x5e,0x9, 0xe1, -0xe0,0x80,0x97,0x9e,0xe0,0x2c,0x3f,0xdc,0x3f,0xed,0xc7,0x81,0x3e,0xef,0xe2,0x1, -0xc6,0xff,0x0, 0xd4,0x3e,0x6f,0xe0,0x2, 0xc6,0x36,0x36,0x21,0x3e,0x1a,0x90,0xa2, -0x91,0x8c,0xe0,0xc, 0x30,0x81,0x39,0xfc,0x4, 0xe, 0xe0,0xc, 0x3c,0x1f,0xe0,0x1, -0xc6,0x3a,0x36,0x21,0x3e,0x1a,0x96,0xc, 0x3d,0xfc,0xe0,0x2e,0x3f,0x6c,0x5, 0x3, -0x3d,0xec,0xaf,0x89,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x0, 0xc9,0x14,0x0, 0x0, 0xd8, -0x8, 0xb6,0xe0,0x0, 0x1f,0xa4,0xe0,0x16,0x8f,0x2f,0x3a,0x6f,0x2f,0x12,0xe0,0x2, -0x1f,0xf8,0xe0,0x1, 0xc4,0x3a,0x34,0x21,0x3c,0x1f,0xe0,0x2, 0x1f,0xc3,0x97,0x8, -0xe0,0x1, 0x97,0xdf,0xe0,0x41,0x3f,0xcf,0x3f,0x7f,0x4, 0x3, 0x14,0x0, 0xb, 0x61, -0xe0,0x0, 0x1f,0x9a,0x8f,0xf, 0x39,0xef,0x27,0x7a,0x11,0x0, 0xe0,0x2, 0x1a,0xc3, -0x3b,0x62,0x0, 0x96,0xe0,0xf, 0x31,0x21,0xe0,0x1, 0x9d,0x55,0x3f,0x94,0xe0,0x3, -0xc7,0xe1,0xe0,0x41,0x3d,0x4a,0x8c,0x8f,0xe0,0x43,0x3d,0x1a,0x3c,0x66,0xe0,0x1, -0xd2,0xb, 0x24,0xa, 0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x8f,0x83, -0x3f,0xf2,0x2, 0xe9,0x0, 0xdc,0x14,0x1, 0x0, 0xdb,0xe0,0x0, 0x1f,0xa5,0x8f,0xf, -0x2f,0x3, 0x14,0x0, 0x38,0x82,0x8, 0xb6,0x3a,0x6f,0xe0,0x4, 0x1f,0xbe,0x11,0x0, -0x91,0xef,0xe0,0x0, 0x1a,0xa4,0xe0,0x41,0x39,0xc3,0xe0,0x43,0x39,0x93,0x3b,0x62, -0x8f,0x84,0x3f,0xf2,0x2, 0x83,0x14,0x0, 0xb, 0x61,0xe0,0xf, 0x31,0x21,0x3f,0x95, -0xe0,0x2, 0xc7,0x8f,0x8c,0x8f,0x3d,0x63,0x3c,0x66,0xe0,0x1, 0xd1,0xdd,0x24,0x7, -0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xeb,0x14,0x1, 0x0, 0xed, -0xe0,0x4, 0x1f,0xbe,0xe0,0x3, 0x1f,0x56,0xe0,0x1, 0x9f,0xaf,0x8c,0xe, 0xe6,0xf4, -0xcf,0xff,0x3c,0x4f,0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xc0,0x7c,0xe0,0x4, -0x19,0x3e,0x11,0x80,0xe0,0x1, 0x9f,0xa2,0xe0,0x4, 0x1a,0x34,0xe7,0xf, 0xcf,0x93, -0xe0,0x1, 0xb7,0xa2,0x8f,0xc4,0xe0,0x0, 0x1b,0x25,0x6f,0x86,0x8f,0xd4,0x71,0x82, -0x6f,0x87,0x8f,0x86,0x27,0x8d,0xe0,0x2, 0x1f,0xc3,0xe0,0x0, 0x1a,0xa4,0xf0,0x0, -0x95,0x2f,0xf0,0x0, 0x95,0xdf,0x8f,0x86,0x3f,0xf3,0xe0,0x1, 0x2, 0x89,0x17,0x0, -0xe0,0x1, 0x9f,0xa2,0xe0,0x0, 0x1a,0x99,0xe0,0x0, 0x19,0x9c,0xe7,0xf, 0xcf,0x9e, -0x9e,0x83,0x9f,0x5, 0xe0,0x4, 0x1d,0xd2,0x3f,0x1d,0x9e,0xa2,0xe0,0x3, 0x1d,0x34, -0xe0,0x2e,0x3f,0x1d,0xe7,0xa, 0xcf,0x9e,0x17,0x1, 0xe7,0x9, 0xcf,0x9e,0xe0,0x1, -0xb7,0xa2,0x3b,0xea,0xe0,0x2, 0x1f,0xea,0xe0,0x3, 0x1e,0xa1,0xf0,0x0, 0x9b,0x12, -0x8c,0x54,0xf0,0x0, 0x8b,0x8b,0xa0,0x8f,0x3c,0xed,0x16,0x0, 0xe8,0x40,0x3e,0x77, -0xe0,0x1, 0x1, 0x8c,0x14,0x81,0xf0,0x0, 0x8b,0x86,0xe0,0x0, 0x1e,0xb, 0x17,0x80, -0xe8,0x40,0x3f,0xf7,0xc6,0x2, 0xc6,0x82,0xe0,0x1, 0x1, 0x9e,0xaf,0x8b,0xe0,0x0, -0x17,0x7f,0xe0,0x1, 0x9f,0xa2,0x14,0x0, 0xe7,0x9, 0xcf,0x99,0xe3,0x3f,0xc7,0xff, -0xe7,0xc, 0xcf,0x98,0x6f,0x4, 0xe2,0x0, 0x7c,0x84,0xe0,0x1, 0xb7,0xa2,0xde,0xc7, -0xe2,0x0, 0xcc,0x1, 0x1, 0x97,0x4c,0x4, 0xe2,0x0, 0xcc,0x7f,0x1, 0xc, 0xdf,0x19, -0xe0,0x1, 0x9f,0xa2,0xe6,0xff,0xcc,0x78,0xe7,0xe, 0xcf,0x98,0xe7,0xd, 0xcf,0x98, -0xe0,0x1, 0xb7,0xa2,0xdf,0x4b,0xe0,0x1, 0x9f,0xa2,0xe7,0xc, 0xcf,0x98,0xe0,0x1, -0xb7,0xa2,0xdd,0x8a,0xe0,0x1, 0x9f,0x22,0x16,0x80,0xe7,0x8, 0xcf,0x1d,0xe0,0x8, -0x9f,0xb4,0xe0,0x1, 0xb7,0x22,0x37,0xc2,0x9f,0x5, 0x3f,0x7f,0x2, 0x84,0x9f,0x3, -0x3f,0x7f,0x5, 0x88,0xe0,0x1, 0x9f,0xa2,0x17,0x1, 0xe7,0x8, 0xcf,0x9e,0xe0,0x1, -0xb7,0xa2,0xde,0x23,0x24,0x8, 0xe0,0x1, 0x9f,0xa2,0x17,0x1, 0xe7,0x8, 0xcf,0x9e, -0xe0,0x1, 0xb7,0xa2,0xc0,0x4, 0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0x3f,0xe3,0xe0,0x1, -0xc7,0x86,0x37,0xa1,0x3f,0x95,0xf0,0x0, 0x8c,0x2f,0xe0,0xf, 0x31,0xa1,0x3f,0x95, -0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8c,0x8f,0xe8,0x40,0x3c,0x68,0xe8,0x40,0x3c,0xe9, -0xe0,0x1, 0xd0,0xc2,0x3b,0xe8,0xe8,0x40,0x3d,0x69,0xe8,0x40,0x3c,0xe8,0xe2,0x0, -0x7c,0x4, 0xef,0xfe,0xd8,0xe9,0x24,0xb, 0xf0,0x40,0x3d,0x77,0x4, 0xb, 0x3f,0xe3, -0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe7,0xfe,0x0, 0xcf,0xf0,0x40,0x3d,0xf7, -0x0, 0xf6,0x17,0x1, 0xe7,0xfe,0x0, 0xce,0x3f,0x69,0x8f,0x8e,0x8f,0x1e,0xf1,0x80, -0x92,0x97,0xe0,0xae,0x3f,0x88,0xc4,0x82,0x37,0x21,0x3f,0x11,0x9f,0x8e,0xe8,0xf, -0x3f,0xa5,0xe0,0x43,0x3f,0x9f,0xe0,0x41,0x3f,0xaf,0xe8,0x40,0x3f,0xf6,0x2, 0x8, -0x3f,0xec,0xc7,0x81,0x3e,0x6f,0xe2,0x1, 0xc6,0x7f,0xe7,0xfe,0x0, 0xd9,0x14,0x80, -0xe7,0xfe,0x0, 0xdb,0xe0,0x40,0x8b,0x1c,0xe0,0x40,0x8b,0xac,0x3f,0x66,0xe0,0xae, -0x3b,0x88,0xc7,0x81,0x37,0x21,0x3f,0x11,0x97,0xe, 0xe2,0x1, 0xc7,0xff,0xe1,0x80, -0xb7,0x1a,0xe0,0x40,0xab,0xad,0xe0,0x40,0xab,0x1d,0xe7,0xfe,0x0, 0xcb,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3e,0xc0,0x64,0x3f,0xe0,0xc7,0x90,0xeb,0x84,0x7c,0xd8,0x15,0x10, -0xe9,0xff,0xc4,0xfe,0x3c,0x6f,0xef,0xf7,0xd4,0xef,0xe0,0x0, 0x1f,0x25,0x8e,0x8e, -0x2e,0x87,0x12,0x0, 0x3c,0x64,0xc0,0x1c,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe0,0x3, -0x1f,0x6a,0xf0,0x0, 0x8d,0xe, 0xf7,0xff,0x2d,0x76,0xf0,0x2, 0x1e,0xb1,0xe8,0x40, -0x3b,0x6a,0xf8,0x40,0x3d,0xea,0xf7,0xff,0x14,0x8, 0xf0,0x0, 0x17,0x78,0xe0,0x0, -0x1f,0x25,0x8f,0x8e,0x3f,0xf6,0x5, 0xe6,0xe0,0x0, 0x1e,0xa4,0xe0,0xf, 0x33,0x21, -0x3f,0x9d,0xe0,0x2, 0xc7,0x8f,0x89,0xf, 0xe0,0x1, 0x21,0x46,0xe8,0xe, 0x8b,0xdd, -0xc3,0xff,0x39,0x77,0xe0,0x1, 0x1, 0x40,0x3f,0xe6,0xe0,0x1, 0xc7,0x86,0x37,0xa1, -0x3f,0x9d,0x89,0xaf,0x3f,0x62,0x3f,0xe2,0xf0,0x43,0x3e,0x13,0xc7,0x7f,0xc7,0x81, -0xe8,0x40,0x3a,0xea,0xf8,0x40,0x3c,0xec,0x6f,0x7, 0x6f,0x8b,0xe8,0x40,0x3a,0x69, -0xe2,0x1, 0xc2,0x7f,0x3c,0xe2,0x3c,0x64,0xe0,0x1, 0xd0,0x1e,0xe2,0x0, 0xcc,0x0, -0x3c,0xe2,0x3c,0x64,0xe0,0x1, 0x5, 0x27,0xe0,0x1, 0xd0,0x16,0xe8,0x28,0x3c,0x1e, -0xe0,0x1, 0x2c,0x27,0xe8,0xe, 0x8e,0xcd,0x3f,0x62,0x3f,0xe2,0xc7,0x7f,0xc7,0x81, -0x6e,0x87,0x6f,0xb, 0x6f,0x8f,0xe8,0x40,0x3a,0x6c,0xc2,0x1, 0x4e,0x87,0xe3,0xff, -0xc2,0x7f,0xf0,0x43,0x3e,0x14,0xf0,0x40,0x3e,0x7d,0xf0,0x40,0x3c,0xed,0x3, 0x13, -0xe2,0x1, 0xc2,0x7f,0x3c,0xe2,0x3c,0x64,0xe0,0x0, 0xdf,0xf6,0xe2,0x0, 0xcc,0x0, -0x3c,0xe2,0x3c,0x64,0xe0,0x1, 0x5, 0x22,0xe0,0x0, 0xdf,0xee,0xe8,0x28,0x3c,0x1e, -0xe0,0x1, 0x2c,0x22,0xe0,0x3, 0x1f,0xaa,0x8a,0xf, 0x22,0x2, 0x12,0xa, 0xe2,0x0, -0xca,0x83,0xe7,0xff,0x5, 0x81,0x3f,0xe2,0xc7,0xff,0x3a,0xef,0xe2,0x1, 0xc2,0xff, -0x3c,0xe5,0x3c,0x63,0xe0,0x0, 0xdf,0xd8,0x39,0x77,0xf0,0x40,0x3e,0x68,0x3, 0xd, -0x3f,0xe2,0xc7,0x81,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0x3c,0x63,0xe0,0x0, 0xdf,0xcc, -0xf0,0x1c,0x3e,0x18,0xf8,0x43,0x3e,0x1c,0x17,0x88,0xc7,0xff,0xe2,0x1, 0xc7,0xff, -0xe2,0x1, 0xcf,0xff,0xe0,0x1, 0x1, 0x8e,0x3f,0xe4,0xe2,0x1, 0xc7,0xff,0xe8,0x40, -0x3f,0xfb,0x3, 0x85,0xe8,0x40,0x3a,0x6b,0xe2,0x1, 0xc2,0x7f,0xe7,0xfe,0x2a,0x54, -0x21,0xba,0xf1,0xff,0xc4,0xff,0xe8,0x40,0x39,0xf9,0x1, 0x35,0x3f,0xe3,0xc7,0xff, -0x3c,0x6f,0x3c,0xe2,0xe2,0x1, 0xc4,0x7f,0xe0,0x0, 0xdf,0xa6,0xe8,0x40,0x39,0xf9, -0xf0,0x40,0x3e,0x68,0x3, 0xa, 0x3f,0xe3,0xc7,0x81,0x3c,0x6f,0x3c,0xe2,0xe2,0x1, -0xc4,0x7f,0xe0,0x0, 0xdf,0x99,0x3a,0x68,0x3c,0xe5,0x3c,0x63,0xe0,0x0, 0xdf,0x94, -0x39,0x77,0x3a,0xe8,0xe0,0x0, 0x3, 0x6f,0xc1,0x1, 0x3c,0xe2,0xe2,0x1, 0xc4,0xff, -0x3c,0x63,0xe0,0x0, 0xdf,0x89,0xf0,0x25,0x3c,0x15,0x22,0x85,0xf0,0x24,0x3c,0x14, -0xe0,0x0, 0x2a,0x64,0xf8,0x3c,0x3c,0x1c,0xf0,0x0, 0x26,0x6, 0xf0,0x28,0x3c,0x18, -0xe0,0x0, 0x2c,0x5c,0x3f,0xe6,0xc7,0x81,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe7,0xfe, -0x0, 0xa8,0xe0,0x0, 0xdf,0x71,0xf0,0x28,0x3c,0x18,0xe7,0xfe,0x0, 0xdb,0x4c,0x87, -0x3f,0xe5,0xc7,0x81,0xe2,0x1, 0xc4,0xff,0x3c,0x64,0x3a,0xef,0xe0,0x0, 0xdf,0x64, -0x39,0x77,0xe2,0x1, 0xc2,0xff,0x3, 0x7, 0x4c,0x8b,0x3c,0x64,0xe2,0x1, 0xc4,0xff, -0xe0,0x0, 0xdf,0x5a,0xf1,0xff,0xc4,0xff,0xf8,0x43,0x3c,0x99,0xf3,0xff,0xcc,0xff, -0xe7,0xfe,0x1, 0xae,0xe7,0xfe,0x0, 0xc0,0xe0,0x0, 0xdf,0x4e,0xf0,0x28,0x3c,0x18, -0xe7,0xfe,0x0, 0xe0,0x4c,0x8b,0x3f,0xe5,0xc7,0x81,0xe2,0x1, 0xc4,0xff,0x3c,0x64, -0x3a,0xef,0xe0,0x0, 0xdf,0x41,0x39,0x77,0xe2,0x1, 0xc2,0xff,0xe7,0xfe,0x3, 0x35, -0x4c,0x8f,0x3c,0x64,0xe2,0x1, 0xc4,0xff,0xe0,0x0, 0xdf,0x36,0xe7,0xfe,0x0, 0xad, -0xe2,0x0, 0x7e,0x90,0xe0,0xe, 0x37,0xa1,0x3f,0x1d,0x86,0x8e,0xe8,0x40,0x3e,0xfc, -0xe7,0xfe,0x5, 0x65,0x87,0x1e,0xf0,0x1b,0x3d,0x9e,0xf3,0xff,0xc5,0xff,0xe7,0xfe, -0x0, 0xde,0x14,0x0, 0xe7,0xff,0x0, 0x99,0x12,0xa, 0xe7,0xfd,0x0, 0xbd,0x8, 0xb5, -0xe0,0x0, 0x12,0xc6,0xe0,0x25,0x3c,0x65,0x11,0x0, 0x12,0x20,0x11,0x87,0x3c,0xe4, -0x3c,0x63,0xe0,0x0, 0xdf,0x11,0x3c,0x75,0x5, 0x6, 0x3f,0xe2,0xc7,0x81,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe2,0x0, -0xc9,0x8a,0x1, 0xee,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x0, -0xca,0x24,0x1, 0xe5,0x3f,0xe2,0xe4,0x0, 0xc7,0xe4,0x17,0xc, 0xe0,0x2f,0x3f,0xbe, -0xe0,0x1, 0x1f,0x8, 0x3c,0x62,0xaf,0x8e,0xa, 0xe1,0xe0,0x3, 0x1f,0x6b,0xe0,0xf, -0x34,0x24,0x3f,0x9e,0x8e,0xcf,0xe2,0x1, 0xce,0xff,0x1, 0x2c,0xc4,0xa, 0x34,0x24, -0x3c,0x1e,0x9e,0x8, 0x3f,0x6c,0xe1,0xfd,0xc7,0x20,0xe2,0x2, 0xcf,0x78,0x2, 0xa2, -0x9e,0x98,0x3f,0x6d,0xe1,0xf0,0xc7,0x42,0xe2,0x2, 0xcf,0x78,0x2, 0x9b,0xe0,0x3, -0x1f,0x7e,0x15,0x81,0xad,0x8e,0x14,0x1, 0xe0,0x14,0x8d,0xcf,0xe0,0x3, 0x1f,0xb, -0xad,0x8e,0xe0,0xb, 0x36,0x48,0xe0,0x3, 0x1f,0xf, 0xae,0x1e,0xe0,0xc, 0x36,0xc8, -0xad,0x8e,0xae,0xbe,0xae,0x2e,0xe0,0x14,0x8f,0x6f,0xe0,0x0, 0x1f,0xac,0xaf,0xf, -0x38,0x82,0x14,0x0, 0x0, 0xfe,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xe0,0x3, 0x19,0xfe, -0xe0,0x3, 0x1b,0x55,0x17,0x80,0xaf,0x83,0x17,0x7f,0xaf,0x86,0xe0,0x3, 0x1f,0xce, -0xe0,0x3, 0x1a,0xbb,0xe0,0x9, 0x8f,0xff,0xaf,0x5, 0xe2,0x0, 0xc7,0x82,0xe0,0x0, -0x27,0xfa,0xe0,0x3, 0x1a,0xb, 0xf0,0x3, 0x1c,0x6c,0x8f,0x4, 0xe0,0x3, 0x1b,0xeb, -0xe2,0x1, 0xcf,0x7f,0xe0,0x0, 0x1, 0x7f,0xe8,0x0, 0x8e,0x88,0x14,0x0, 0x3c,0x7d, -0xe0,0x0, 0x1, 0x76,0xc3,0x90,0xe0,0x41,0x8f,0xc7,0x3f,0xfe,0xe0,0x0, 0x1, 0xf5, -0xdf,0x9d,0xe0,0x0, 0x24,0x6d,0x13,0x80,0xf0,0x0, 0x14,0x1, 0x39,0x67,0x3c,0x67, -0x0, 0xbd,0x3c,0x62,0xdf,0x93,0xe0,0x0, 0x24,0x59,0xe0,0xf, 0x31,0x24,0xc1,0xa, -0x31,0x24,0x39,0x17,0x9e,0x82,0x3f,0x97,0x8c,0x7f,0xe0,0x1, 0x8c,0x8f,0x3f,0xed, -0xe1,0xfb,0xc7,0xe4,0xe3,0xff,0xc7,0xff,0xe0,0x43,0x3e,0x1f,0xe2,0x0, 0xce,0x0, -0x9f,0x12,0x2, 0x6, 0xe0,0x4, 0x17,0x9c,0x3f,0xad,0xe3,0xff,0xc7,0xff,0x3d,0x6e, -0xe1,0xef,0xc5,0x6, 0xe3,0xff,0xc5,0x7f,0xe0,0x43,0x3e,0x9a,0xe2,0x0, 0xce,0x80, -0x2, 0x6, 0xe0,0x10,0x15,0x7a,0x3d,0x2e,0xe3,0xff,0xc5,0x7f,0x13,0xb1,0xe1,0x22, -0x3b,0xaf,0xe1,0x27,0x3b,0xaa,0xe0,0x0, 0xde,0x4f,0xe6,0x4e,0xcc,0x8, 0xe0,0x0, -0x17,0xd0,0xe0,0x28,0x3c,0x6f,0xf0,0x0, 0x14,0x0, 0x3d,0x67,0x3c,0xe2,0xdf,0x28, -0xe2,0x0, 0xcc,0x6, 0x2, 0x83,0xf0,0x0, 0x24,0x23,0x8e,0x84,0x16,0x0, 0xe2,0x1, -0xce,0xff,0xeb,0xfd,0x7f,0xf4,0xae,0x3, 0x17,0x1, 0xe8,0x0, 0xc7,0x80,0x1, 0x23, -0xaf,0x3, 0xae,0x5, 0xae,0x8f,0x8f,0x83,0xe2,0x0, 0xcf,0x81,0x1, 0xa6,0x17,0xa6, -0xaf,0x86,0xf8,0x0, 0xc, 0x28,0xb, 0xe1,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, -0xc1,0x7f,0xe8,0x0, 0x8f,0x88,0x3f,0xf2,0xe7,0xff,0x2, 0x9d,0x17,0xff,0xaf,0x84, -0x0, 0xdd,0x11,0x0, 0x0, 0xf7,0x3f,0xe8,0xc7,0x81,0x3c,0x6f,0xe2,0x1, 0xc4,0x7f, -0xe7,0xfe,0x0, 0xff,0x8e,0x8f,0xaf,0x5, 0xe2,0x1, 0xce,0xff,0x1, 0x2, 0xaf,0x3, -0x17,0x7f,0xae,0x84,0xaf,0xf, 0x0, 0xd8,0x17,0x80,0x0, 0xdb,0x38,0x82,0x8, 0xb2, -0xe0,0x2, 0x1f,0xb1,0xe0,0x2, 0x1c,0xe7,0xe0,0xe, 0x89,0x4f,0xe0,0xe, 0x8f,0xdf, -0xe0,0x2, 0x1c,0x78,0x39,0x1f,0x31,0x21,0x3d,0x62,0xef,0xf7,0xd2,0x7d,0xe0,0x2, -0x1c,0xe6,0xe0,0x2, 0x1c,0x56,0x3d,0x62,0xef,0xf7,0xd2,0x76,0xe0,0x2, 0x1c,0xe9, -0xe0,0x2, 0x1c,0x55,0x3d,0x62,0xef,0xf7,0xd2,0x6f,0xef,0xfe,0xd0,0x35,0x24,0x9, -0xe0,0x2, 0x1f,0xea,0xe0,0x2, 0x1c,0x75,0xa4,0x8f,0x9, 0x21,0xe7,0xcd,0x0, 0x99, -0x9, 0x61,0x8, 0xb1,0xdf,0xd5,0xe0,0x5, 0x1f,0x88,0x17,0x0, 0xaf,0xf, 0x8, 0xa1, -0xe7,0xb, 0x0, 0xe8,0x16,0x81,0xe0,0xff,0x17,0xff,0x3f,0x6d,0x3f,0x79,0x4, 0x8a, -0xe4,0x0, 0xc7,0xe4,0xe0,0x0, 0x14,0x50,0xe0,0x2f,0x3f,0xbd,0xe0,0x28,0x3f,0x98, -0x38,0x82,0xe0,0x80,0x96,0x18,0xc7,0x1, 0xe0,0x2f,0x3e,0x5f,0xe0,0x2d,0x3e,0x6d, -0xe2,0x1, 0xc7,0x7f,0x0, 0xec,0x8, 0xb1,0xea,0x24,0x7f,0xe9,0x17,0x0, 0xaf,0xf, -0xea,0x24,0x7c,0x54,0xea,0x24,0x7f,0xe8,0x15,0x14,0x14,0x80,0xaf,0xf, 0xef,0xf7, -0xd2,0x6b,0xea,0x24,0x7c,0x28,0x15,0x2a,0x14,0x80,0xef,0xf7,0xd2,0x65,0xea,0x24, -0x7c,0x0, 0x15,0x28,0x14,0x80,0xef,0xf7,0xd2,0x5f,0xea,0x23,0x7c,0x2c,0xe0,0x0, -0x15,0x54,0x14,0x80,0x8, 0xa1,0xe6,0xe4,0x0, 0xd7,0x8, 0xb5,0xe0,0x2, 0x19,0xc3, -0xe0,0x4, 0x8f,0xc3,0xe0,0x1, 0x27,0xe6,0xe0,0x0, 0x1f,0xa5,0x3a,0x68,0x8f,0xf, -0x39,0x6f,0x2f,0x2, 0xdf,0xd1,0x8f,0x2, 0xe0,0x4, 0x8f,0xd3,0xe0,0x0, 0x27,0x6c, -0xe0,0x0, 0x1e,0x98,0x91,0xd, 0xe2,0x3, 0xc9,0x74,0xe0,0x0, 0x2, 0x65,0xe2,0x0, -0xcf,0x3, 0x5, 0x83,0xe0,0x0, 0x27,0xe0,0xe0,0x0, 0x1e,0x96,0x8e,0xd, 0xe0,0x0, -0x26,0x5d,0xe0,0x4, 0x1d,0xb4,0x8e,0xfb,0xc6,0xff,0x3e,0x7d,0xe0,0x0, 0x1, 0x56, -0xe0,0x0, 0x1e,0x97,0x8e,0xd, 0xe0,0x0, 0x26,0x51,0x8e,0xeb,0xc6,0xff,0x3e,0x7d, -0xe0,0x0, 0x1, 0x4c,0x96,0xa3,0xe0,0xc, 0x36,0xa1,0x39,0x7c,0xe0,0x0, 0x5, 0x49, -0xe0,0xc, 0x36,0xa2,0x39,0x7c,0xe0,0x0, 0x5, 0x46,0xe4,0x0, 0xc6,0x86,0xe0,0x22, -0x39,0x1d,0xc1,0x3, 0xe0,0x0, 0x1e,0xf6,0xa9,0xd, 0xe0,0x1, 0x2f,0xa7,0x3f,0x62, -0xc7,0x7f,0xe2,0x0, 0xcf,0x3, 0xe0,0x1, 0x2, 0x9d,0xe2,0x0, 0xc9,0x4, 0x1, 0x34, -0xe2,0x0, 0xc9,0x3, 0x1, 0x5, 0xe2,0x0, 0xc9,0x2, 0x1, 0xb0,0x11,0x5, 0xea,0x24, -0x7e,0x69,0xe0,0x0, 0x1f,0x17,0x8e,0x8c,0x8c,0x8e,0xea,0x24,0x7f,0x54,0x26,0xa8, -0x3c,0x6e,0x3d,0xef,0xe1,0x80,0x8d,0x18,0x3c,0xfa,0x1, 0x2b,0x3d,0x6b,0xc5,0x1, -0xe2,0x1, 0xc5,0x7f,0x3e,0xfa,0xe0,0x0, 0x1, 0xc6,0x3f,0x1d,0xac,0x8e,0xea,0x24, -0x7f,0x0, 0x36,0xa1,0x3e,0x9e,0xe0,0x0, 0x1f,0x18,0xc5,0x82,0x9f,0xe, 0xad,0x8c, -0xb7,0xd, 0x0, 0x97,0x11,0x0, 0x0, 0xc7,0xe0,0x1, 0x11,0x7f,0x0, 0xc4,0x11,0x1, -0x0, 0xc2,0x11,0x2, 0x0, 0xc0,0x11,0x2, 0x0, 0xd3,0x11,0x8, 0x0, 0xd1,0xe0,0x0, -0x1e,0x98,0xac,0x8e,0xea,0x24,0x7f,0x0, 0x9e,0x8d,0xb6,0x8e,0x17,0x1, 0xaf,0xc, -0xea,0x24,0x7a,0x68,0xe0,0x0, 0x1f,0x16,0x8e,0x84,0x8d,0xe, 0xea,0x24,0x7f,0x28, -0x26,0x9c,0x3c,0xee,0xe1,0x80,0x8d,0x99,0x3d,0x7b,0x1, 0x20,0x3d,0xef,0xc5,0x81, -0xe2,0x1, 0xc5,0xff,0x3e,0xfb,0xe0,0x0, 0x1, 0xc6,0x3f,0x1d,0xad,0xe, 0xea,0x23, -0x7f,0x2c,0x36,0xa1,0x3e,0x9e,0xe0,0x0, 0x1f,0x18,0xc7,0x82,0x9f,0xe, 0xb7,0xd, -0x0, 0x8c,0x3d,0xea,0xe7,0xff,0x0, 0xb0,0xad,0xe, 0xea,0x23,0x7f,0xac,0xe0,0x0, -0x1f,0x18,0x9f,0xe, 0xb7,0xf, 0x17,0x81,0xaf,0x84,0x8a,0x8c,0x39,0x75,0x2, 0x86, -0xea,0x24,0x7c,0x0, 0x3c,0xe5,0xde,0xff,0x2c,0x1a,0x8a,0x4, 0x39,0x74,0x2, 0x86, -0xea,0x23,0x7c,0x2c,0x3c,0xe4,0xde,0xf7,0x2c,0x12,0xe4,0x0, 0xc1,0x3, 0xe0,0xf, -0x3a,0x94,0x31,0x1, 0x3f,0xf2,0x4, 0x15,0xea,0x24,0x7c,0x0, 0x3c,0xe5,0xde,0xeb, -0x24,0x10,0xea,0x23,0x7c,0x2c,0x3c,0xe4,0xde,0xe6,0x24,0xb, 0xde,0xfd,0xe0,0x0, -0x1f,0x98,0x97,0x8f,0xe2,0x2, 0xcf,0xab,0x2, 0x4, 0x17,0x82,0xe0,0x4, 0xaf,0xd3, -0xa, 0xe1,0x3f,0xeb,0xe7,0xff,0x0, 0xb0,0x21,0xd, 0x17,0x82,0x17,0x0, 0xe0,0x4, -0xaf,0xd3,0x14,0x1, 0xe0,0x24,0x3a,0x8, 0x2a,0x3, 0x3f,0x58,0x27,0x72,0x17,0x80, -0x0, 0xee,0x2f,0xa, 0x17,0x81,0xe0,0x4, 0xaf,0xd3,0xea,0x23,0x7f,0xa2,0x9e,0x8f, -0xc6,0x81,0xb6,0x8f,0x0, 0xef,0x17,0x1, 0x0, 0xed,0xe0,0x2, 0x1f,0xc3,0xe0,0x4, -0x8f,0xdf,0xe0,0x1, 0x27,0x94,0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xe0,0x0, 0x1f,0xa5, -0x11,0x0, 0x13,0x32,0x8b,0x8f,0xe0,0x0, 0x1a,0xb, 0xe0,0x4, 0x1a,0xb4,0xf0,0x2, -0x1c,0x6a,0xf0,0x5, 0x1c,0xc6,0xf0,0x5, 0x1d,0x12,0x39,0xe2,0xf0,0x40,0x3d,0xe6, -0x39,0x77,0x1, 0x84,0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0x8e,0x4, 0x8c,0x45,0x3c,0x7c, -0xe0,0x0, 0x1, 0x6a,0x8d,0x14,0x8d,0xd5,0x3f,0x6a,0xe0,0xae,0x3e,0xb, 0xe8,0x0, -0xa6,0x88,0xe3,0xff,0xc7,0x7f,0xe0,0xf, 0x3f,0x2b,0x37,0xa1,0xe0,0x9, 0x3f,0x1b, -0x3f,0x9d,0xe2,0x0, 0xce,0x0, 0x97,0x8f,0x34,0xa1,0xc4,0x7f,0x3c,0x9d,0xe8,0xe, -0x3f,0x19,0xf0,0x40,0x3b,0x63,0xf0,0x0, 0x93,0x89,0xe0,0x76,0x39,0xaf,0x37,0x21, -0x3e,0x78,0xe0,0x9, 0x3e,0x9e,0x3c,0x63,0x90,0x89,0xe8,0x68,0x39,0xa7,0xe2,0x0, -0xcd,0x0, 0xe8,0x40,0x3f,0xe6,0xc5,0xff,0xf0,0x40,0x3b,0x63,0x94,0xa9,0xe0,0x76, -0x39,0xa1,0x3d,0x7b,0xf0,0x40,0x3b,0xe8,0x3c,0x63,0xe0,0x68,0x39,0xa9,0xf2,0x0, -0xcb,0xb2,0xe8,0x40,0x38,0xe6,0x3c,0xe8,0xe0,0x2f,0x3f,0x96,0x5, 0x2, 0xc7,0x81, -0xe2,0x0, 0xc8,0xb2,0x5, 0x4, 0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcc,0xb2, -0x5, 0x4, 0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x9c,0xc7,0x2, -0x3f,0x1d,0x96,0x8e,0x26,0xa, 0x8f,0xe5,0xc7,0xff,0x3e,0x7f,0x1, 0x6, 0x25,0x5, -0x8f,0xf5,0xc7,0xff,0x3d,0x7f,0x1, 0x97,0xe2,0x3, 0xce,0x90,0x2, 0xc, 0xe8,0x0, -0x8f,0x8a,0xe2,0x0, 0xcf,0x83,0x1, 0x83,0xf0,0x0, 0xb5,0x8e,0x3c,0xe3,0x3c,0x62, -0xe0,0x0, 0xdb,0xe5,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xc2,0x2, -0xe7,0xff,0x0, 0x88,0xe2,0x2, 0xce,0xac,0x0, 0xea,0x38,0x82,0xe0,0x4, 0x1f,0xf5, -0x9f,0xf, 0xe1,0xd4,0x17,0xdf,0x3f,0x7f,0x2, 0xb8,0x8, 0xb7,0xea,0x23,0x7f,0xa5, -0x89,0xf, 0x21,0x29,0xb, 0xe1,0x3f,0xe2,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x93, -0x8e,0xaf,0x26,0x90,0x8f,0xe4,0xc7,0xff,0x3f,0xfd,0x1, 0xc, 0xe0,0xf, 0x31,0x21, -0x3f,0x93,0xe0,0x2, 0xc7,0x8f,0x8e,0x8f,0x26,0x85,0x8f,0xf4,0xc7,0xff,0x3f,0xfd, -0x1, 0x86,0x3c,0xe6,0x3c,0x62,0xe0,0x0, 0xdb,0xb2,0x3f,0x67,0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x8f,0x85,0x3f,0xf2,0x2, 0xde,0x27,0x5c,0xb, 0xa1, -0xe0,0x19,0x0, 0x9d,0x3f,0x62,0xe0,0x0, 0x19,0xa4,0xe0,0x0, 0x1a,0xa5,0x3b,0x62, -0x13,0x81,0xe0,0x4, 0x1a,0x34,0x0, 0xf0,0x38,0x82,0xe0,0x4, 0x1f,0xf5,0x9f,0xf, -0xe1,0xd4,0x17,0xdf,0x3f,0x7f,0xe0,0x2, 0x1f,0xc3,0x2, 0xa3,0xe0,0x4, 0x8e,0xdf, -0xe0,0x5, 0x1f,0xa, 0x2e,0x82,0xb6,0x8e,0x9f,0xe, 0xe2,0x4e,0xcf,0x10,0x5, 0x85, -0xea,0x23,0x7f,0x25,0x16,0x81,0xae,0x8e,0xe0,0x4, 0x8f,0x4f,0xe0,0x3, 0x1e,0xce, -0xe0,0x8, 0xaf,0xd, 0x27,0xa, 0xe0,0x0, 0x1f,0x2e,0x8f,0xe, 0x2f,0x6, 0xe0,0xa, -0x8e,0x8d,0xe2,0x0, 0xce,0x81,0x1, 0x90,0x17,0x0, 0xe0,0x4, 0xaf,0x5f,0x38,0x82, -0xe1,0xd4,0x16,0xe0,0x3f,0x7d,0x1, 0x69,0xea,0x23,0x7f,0x25,0x8f,0xe, 0x2f,0x65, -0xe0,0x4, 0xaf,0x4f,0x0, 0xe2,0x8, 0xb1,0xe0,0x0, 0x1f,0x8e,0x14,0x1, 0xaf,0xf, -0xe0,0x0, 0xda,0xdd,0xef,0xf8,0xd6,0xa6,0xef,0xf8,0xd8,0xc9,0xdf,0x80,0xe0,0x4, -0x1f,0xbe,0xe0,0x1, 0x9c,0x2f,0xe2,0x10,0xc4,0x0, 0x2c,0xe, 0xdd,0xd7,0xe0,0x2, -0x1f,0xee,0x9f,0x8f,0x37,0xcf,0x27,0x87,0xe0,0x0, 0x1f,0xa5,0x8f,0xf, 0xe0,0x0, -0x1f,0x8d,0xaf,0xf, 0x8, 0xe1,0x14,0x1, 0x0, 0xf2,0xe0,0x3, 0x1e,0xbe,0xea,0x24, -0x7f,0x6c,0x8c,0xd, 0x9f,0x8e,0xe0,0xd, 0x34,0x22,0xc6,0x81,0x3f,0xfd,0x2, 0x18, -0xc7,0x81,0xe3,0xff,0xc7,0xff,0xe2,0x0, 0xcf,0x81,0xb7,0x8e,0x1, 0x87,0xe0,0x3, -0x1f,0xce,0xe0,0xa, 0x8f,0xbf,0x3c,0x6f,0x38,0x82,0xe2,0x0, 0xcf,0x82,0x1, 0x7d, -0xe0,0x5, 0x1f,0x1, 0xa7,0xe, 0x3f,0x9e,0xe0,0x40,0x8c,0x3f,0x0, 0xf6,0xe0,0x1, -0x14,0x7f,0x0, 0xf3,0xe0,0x3, 0x1f,0xce,0xe0,0x5, 0x1c,0x8d,0xe0,0xa, 0x8f,0xbf, -0xe0,0x1, 0x14,0x53,0xaf,0x89,0xe0,0x3, 0x1f,0xbe,0x8f,0x8f,0xaf,0x99,0xe7,0x94, -0x0, 0xad,0xea,0x24,0x7f,0x6b,0x8f,0x8e,0xe2,0x0, 0xcf,0x88,0x2, 0x8b,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xaf,0x8e,0xe0,0x3, 0x1f,0xa, 0x3f,0x9e,0xe0,0x40,0x8c,0x1f, -0x38,0x82,0xe0,0x1, 0x14,0x7f,0x0, 0xfd,0xe0,0x3, 0x1f,0x9a,0xe0,0x3, 0x1e,0x4e, -0x8f,0xf, 0xe2,0x0, 0xc7,0x70,0xaf,0xf, 0x3f,0x68,0x8e,0x8f,0xe2,0x1, 0xc7,0xf, -0x3f,0x4d,0xaf,0xf, 0xe6,0xf9,0xcc,0x58,0xe0,0x1, 0x1f,0x16,0x16,0x84,0xac,0xe, -0x8f,0xe, 0xe0,0x2d,0x3f,0xd, 0x2e,0x85,0x16,0x82,0xe0,0x2d,0x3f,0xd, 0x26,0x85, -0x17,0x83,0xe0,0x4, 0xaf,0xfc,0x38,0x82,0xe2,0x0, 0xcf,0x1, 0x17,0x1, 0xe0,0x4, -0xaf,0x7c,0x5, 0xfa,0xae,0x8f,0x0, 0xf8,0xe0,0x3, 0x1f,0x9a,0x8f,0xf, 0xe6,0xf9, -0xcf,0x5e,0x3c,0x7e,0x1, 0x5, 0x8f,0xf, 0xe7,0x4, 0xcf,0x38,0xaf,0xf, 0x38,0x82, -0x8, 0xb1,0x3f,0xe8,0x3c,0x69,0x2f,0x87,0xdf,0xc8,0xe0,0x4, 0x1f,0xe9,0x17,0x1, -0xaf,0xf, 0x8, 0xe1,0x3f,0x6f,0xe4,0x1, 0xcf,0x0, 0xe2,0x0, 0xcf,0x6f,0x2, 0x85, -0x3c,0x6e,0xe0,0x0, 0xda,0x7c,0x0, 0xf2,0xe2,0x1, 0xcf,0xfc,0x1, 0xef,0x8, 0xa1, -0xe7,0x34,0x0, 0xd7,0x2c,0x6, 0xe0,0x3, 0x1f,0x9a,0x8f,0x8f,0x3c,0x6f,0x38,0x82, -0xe2,0x0, 0xcc,0x3, 0x2, 0x94,0xe0,0x3, 0x1f,0xb7,0xea,0x0, 0xce,0x86,0xa7,0x8f, -0xe0,0x4, 0x1f,0x77,0xe0,0xc, 0x3f,0x9d,0xbe,0x1e,0x3e,0x6f,0xc6,0x1, 0x3e,0x1d, -0xc7,0x82,0x3f,0x9d,0xbe,0x2e,0x14,0x0, 0xbf,0xbe,0x0, 0xea,0x3f,0xe8,0xc7,0xad, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x90,0xe2,0x1, 0xcc,0x53,0x1, 0x87, -0xea,0x24,0x7f,0xec,0x17,0x0, 0xb7,0xf, 0xe7,0xfe,0x0, 0xc1,0xe0,0x2, 0x1f,0x49, -0x8f,0x8e,0xc7,0xff,0xaf,0x8e,0x0, 0xf9,0x3f,0xe8,0xc7,0x9f,0xe2,0x1, 0xc7,0xff, -0xe2,0x0, 0xcf,0x81,0x2, 0x90,0xe2,0x1, 0xcc,0x61,0x1, 0x87,0xea,0x24,0x7f,0xeb, -0x17,0x0, 0xaf,0xf, 0xe7,0xfe,0x0, 0xdf,0xe0,0x2, 0x1f,0x49,0x8f,0x8e,0xc7,0xff, -0xaf,0x8e,0x0, 0xf9,0xe0,0x1, 0x14,0x7f,0xe7,0xff,0x0, 0xbb,0xe0,0x3, 0x1f,0x9a, -0x8f,0x8f,0xe6,0xf9,0xcf,0xdf,0x2f,0x83,0xe7,0xff,0x0, 0xae,0xe2,0x0, 0xcf,0x84, -0x1, 0x83,0xe7,0x1e,0x0, 0xc1,0x14,0x0, 0x38,0x82,0xe0,0x3, 0x1f,0x9a,0x8f,0x8f, -0xe6,0xf9,0xcf,0xdf,0x2f,0x83,0xe7,0xff,0x0, 0x85,0xe2,0x0, 0xcf,0x84,0x1, 0x83, -0xe7,0x17,0x0, 0xfd,0x38,0x82,0x8, 0xb3,0xe0,0x3, 0x1f,0x9a,0xe0,0x1, 0x11,0xff, -0xe0,0x2, 0x1c,0x4c,0x11,0x0, 0x3c,0xe3,0x15,0x3e,0xa9,0xf, 0xef,0xf6,0xdf,0x14, -0xe0,0x2, 0x1c,0x4b,0x15,0x3e,0x3c,0xe3,0xef,0xf6,0xdf,0xe, 0xe0,0x3, 0x1f,0xd8, -0xe0,0x2, 0x1f,0x4c,0x8f,0x8f,0xe4,0x0, 0xc7,0xda,0x3f,0x9e,0xe0,0x3, 0x1f,0x37, -0xbf,0x8e,0xe0,0x3, 0x1f,0xf5,0xa9,0xf, 0xe0,0x2, 0x1f,0xc9,0xa9,0xf, 0x9, 0xa1, -0xe7,0x85,0x0, 0xed,0xe0,0x2, 0x1f,0xb1,0xe0,0xa, 0x8f,0xef,0xe0,0x0, 0x27,0xc8, -0xe0,0x1, 0x1f,0xfd,0xe0,0x1, 0x1f,0x7c,0x8f,0x8f,0x8f,0xe, 0x37,0xa8,0x3f,0xce, -0xe0,0x1, 0x1f,0x48,0xe0,0x1, 0x1e,0xc7,0x8d,0xe, 0xe0,0xe, 0x35,0x28,0x8d,0xd, -0x3d,0x4e,0xe0,0x1, 0x1f,0x46,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x45, -0x8f,0xe, 0x3f,0x4d,0xe0,0x1, 0x1e,0xc4,0x8e,0xd, 0xe0,0xd, 0x36,0x28,0xe0,0x1, -0x1e,0x43,0x8e,0xc, 0x3e,0x4d,0xe0,0x1, 0x1e,0xc2,0x8d,0x8d,0xe0,0xd, 0x35,0xa8, -0xe0,0x1, 0x1d,0xc1,0x8d,0x8b,0x3d,0xcd,0xe0,0x1, 0x1e,0x84,0x8e,0x8d,0xe2,0x0, -0xce,0x81,0x1, 0x86,0x15,0xab,0xe0,0xa, 0x17,0x14,0x3e,0x6b,0x3d,0x6e,0x3e,0x78, -0x5, 0x8f,0xe0,0x8, 0x3e,0x28,0x3c,0x3a,0x34,0x48,0x3e,0x78,0x2, 0x83,0x3c,0x6c, -0xc4,0x7f,0xc6,0x7f,0xe0,0x8, 0x3e,0x28,0xe3,0xff,0xc4,0x7f,0x38,0x82,0x3e,0xef, -0xc6,0xff,0xe3,0xff,0xc6,0xff,0x3e,0xab,0x3e,0xf8,0x3, 0x77,0x3c,0x2d,0x3c,0x3e, -0xe0,0xe, 0x34,0x48,0x3d,0xfe,0x2, 0x83,0x3f,0x6b,0xc7,0x7f,0xe0,0x8, 0x3f,0xab, -0x3c,0x1e,0x0, 0xeb,0xe0,0x2, 0x1f,0xb1,0xe0,0xa, 0x8f,0xef,0xe0,0x0, 0x27,0xca, -0xe0,0x1, 0x1f,0xfb,0xe0,0x1, 0x1f,0x7a,0x8e,0xf, 0xe0,0xf, 0x36,0x28,0x8e,0xe, -0xe0,0x1, 0x1f,0x40,0x3e,0x4f,0xe0,0x1, 0x1f,0xbf,0x8d,0xf, 0xe0,0xf, 0x35,0x28, -0x8d,0xe, 0xe0,0x1, 0x1f,0x3e,0x3d,0x4f,0xe0,0x1, 0x1f,0xbd,0x8d,0x8f,0xe0,0x1, -0x1f,0xbc,0x35,0xa8,0x8f,0x8f,0x3d,0xcf,0xe0,0x1, 0x1f,0xbb,0x8e,0x8f,0xe0,0xf, -0x36,0xa8,0x8e,0x8e,0x3e,0xcf,0xe0,0x1, 0x1f,0xba,0x8f,0xf, 0xe0,0xf, 0x37,0x28, -0xe0,0x1, 0x1f,0x39,0x8f,0xe, 0x3f,0x4f,0xe0,0x1, 0x1f,0x84,0x8f,0x8f,0xe2,0x0, -0xcf,0x81,0x1, 0x87,0x17,0x23,0x3e,0xee,0xe0,0x4, 0x15,0x9c,0xe0,0x6, 0x15,0x20, -0x3e,0xf8,0x3f,0xe8,0x5, 0x8f,0xe0,0x8, 0x3e,0xa8,0x3c,0x3a,0x3f,0xed,0x34,0x8, -0x3e,0xf8,0xc7,0xff,0x2, 0x2, 0x3c,0x6f,0x3f,0xa8,0x3c,0x6f,0xe3,0xff,0xc4,0x7f, -0x38,0x82,0x3d,0x6c,0xc5,0x7f,0xe3,0xff,0xc5,0x7f,0xe0,0xd, 0x3d,0x2e,0x3e,0xf8, -0x3, 0x75,0x3d,0x78,0x4, 0x8d,0xe0,0xf, 0x3c,0x2d,0x3f,0xbb,0x37,0x88,0x3f,0x7f, -0x2, 0x3, 0x3f,0xee,0xc7,0xff,0xe0,0xe, 0x3e,0x2e,0x3f,0x9e,0x0, 0xe7,0x17,0x80, -0x0, 0xe5,0x8, 0xb4,0xe0,0x3, 0x1f,0xea,0xe0,0x3, 0x1e,0xe3,0x8f,0xf, 0xe0,0x3, -0x1f,0xec,0x8f,0x8f,0x2f,0xa1,0xaf,0x8d,0x27,0x8, 0xe0,0x3, 0x1f,0x62,0x16,0x81, -0xae,0x8e,0xe0,0x3, 0x1f,0x61,0xaf,0x8e,0xe0,0x1, 0x1f,0xf8,0xe0,0x3, 0x1c,0xeb, -0x8a,0xf, 0xe0,0x3, 0x1c,0x66,0xe0,0xa, 0x32,0x24,0xef,0xf6,0xdd,0xdd,0xe0,0x2, -0x1f,0xb1,0xe0,0xa, 0x8f,0xef,0x27,0x87,0xe0,0x3, 0x19,0x6b,0x11,0x80,0x3a,0x73, -0xc1,0x10,0x1, 0x88,0xa, 0x61,0x17,0x81,0xaf,0x8d,0x2f,0x67,0xe0,0x3, 0x1f,0x68, -0x0, 0xe3,0xe0,0x41,0x9c,0x2, 0xdf,0x7, 0xe0,0x9, 0xb4,0x2, 0xe0,0x40,0x9c,0x72, -0xdf,0x62,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe0,0x9, 0xb4,0x12, -0x0, 0xe7,0xe0,0x4, 0x1f,0xb4,0xe4,0x0, 0xc4,0xc, 0xe0,0xe, 0x3f,0x98,0x3e,0xee, -0xe0,0x2, 0xc6,0xaa,0x8e,0xd, 0x3e,0xee,0xe0,0x2, 0xc6,0xab,0x8e,0x8d,0x3d,0xee, -0xe0,0x2, 0xc7,0x2c,0x8f,0xe, 0x3e,0x7d,0xe0,0x2, 0xc5,0xae,0x8d,0x8b,0x3c,0xbe, -0x5, 0x99,0xe0,0xd, 0x3e,0x2d,0x34,0xdd,0x3f,0x98,0xe0,0x2, 0xc7,0xaf,0x8f,0xf, -0xe0,0xf, 0x35,0xc1,0xe0,0xaf,0x3f,0x9, 0xe0,0x4, 0x1f,0x24,0xe1,0x2f,0x3f,0xbb, -0x8f,0xe, 0xe0,0x8, 0x37,0x41,0x3c,0x1f,0xe1,0x28,0x3c,0x3e,0xe3,0xff,0xc4,0x7f, -0x38,0x82,0x3e,0xac,0x34,0xbd,0x0, 0xe9,0x8, 0xb1,0xe0,0x1, 0x1c,0x2, 0x15,0x1c, -0x14,0x80,0xef,0xf6,0xdd,0xb9,0xe0,0x1, 0x1c,0x25,0xe0,0x1, 0x15,0x74,0x14,0x80, -0x8, 0xa1,0xe6,0xdb,0x0, 0xb1,0xe0,0x4, 0x1e,0x34,0x17,0x80,0x3f,0x6f,0xe4,0x0, -0xc7,0xc, 0x3e,0xef,0xe0,0x2, 0xc7,0x29,0x3f,0x1c,0x8f,0xe, 0xe2,0x1, 0xc6,0xff, -0x3f,0x78,0x1, 0x6, 0xc7,0x81,0xe2,0x0, 0xcf,0x86,0x1, 0xf1,0x16,0x80,0x3c,0x6d, -0x38,0x82,0x8, 0xb4,0xe0,0x2, 0x1d,0xbf,0x17,0x0, 0xe0,0x2, 0x1e,0xbe,0xe0,0xc, -0x3d,0x9e,0x17,0x89,0xe0,0xc0,0x9d,0x1c,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0xb5,0x1c, -0x2f,0xfa,0xc7,0x1c,0xe2,0x1, 0xcf,0x28,0x1, 0xf1,0xe0,0x1, 0x1e,0x2, 0xe0,0x1, -0x1d,0x81,0x3f,0x6d,0xe1,0x80,0x9d,0x1c,0xe0,0x1, 0xb7,0xbe,0x3e,0x7b,0xb5,0x1e, -0xc7,0x1c,0xe0,0x40,0xb7,0x9e,0x1, 0xf7,0xe0,0x2, 0x1f,0x3d,0xe0,0x2, 0x1c,0x3c, -0x3d,0x6d,0x94,0x9a,0x3d,0xee,0x17,0x8a,0xe2,0x27,0xcc,0x88,0xe0,0x1, 0x9e,0x4e, -0xe0,0x0, 0x5, 0x4b,0xe0,0x27,0xc6,0x8, 0xe0,0x1, 0xb6,0x4e,0xe0,0x1, 0x90,0xae, -0xe1,0x80,0x96,0x1b,0x38,0xfc,0x3, 0x3, 0xe0,0x1, 0xb6,0x2e,0xc7,0xff,0xe2,0x1, -0xc7,0xff,0x2f,0xeb,0xc7,0x1c,0x3f,0x78,0xc5,0x1e,0x1, 0xe4,0xe0,0x3, 0x1e,0x7, -0xe0,0x4, 0x1f,0x45,0xe0,0x2, 0x19,0xbb,0x3d,0x6f,0x3c,0x6f,0x3c,0xef,0x3d,0xec, -0x12,0xa, 0x10,0x81,0xb7,0x8c,0xb7,0x8e,0xe0,0x1, 0x9e,0x5d,0xe0,0x1, 0x91,0x3d, -0xe1,0x2c,0x3e,0x34,0x3c,0xf2,0xe0,0x1, 0xb6,0x5d,0x3, 0x5, 0x3c,0xe2,0xe3,0xff, -0xc4,0xff,0x3c,0x61,0x3e,0x7a,0x5, 0x83,0x3d,0x6c,0x3f,0xe1,0xc6,0x9c,0x39,0xfd, -0x1, 0xec,0xe0,0x3, 0x1e,0x8e,0x24,0x14,0xb4,0x8e,0x27,0x82,0xb5,0xb, 0x9f,0x8e, -0xe2,0x0, 0xcf,0xf8,0x5, 0x84,0xe7,0xff,0x17,0x96,0xaf,0x8d,0x8f,0x8d,0x27,0x83, -0xc7,0xff,0xaf,0x8d,0xa, 0x61,0x98,0x8b,0x3e,0x11,0xe7,0xff,0x0, 0xb7,0x27,0xf7, -0x0, 0xee,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x74,0xe0,0x4, 0x1f,0xb4,0xf0,0x0, -0x14,0x80,0xe0,0x1c,0x8c,0x3f,0x89,0x5f,0xe0,0x1, 0x19,0x82,0xdf,0x5d,0xf0,0x2, -0x1d,0x54,0xf0,0x2, 0x1d,0xdf,0xf0,0x3, 0x1e,0x6a,0xf0,0x5, 0x1e,0x93,0xf0,0x5, -0x1c,0x12,0xe0,0x2, 0x1b,0x5a,0xf0,0x3, 0x1f,0x1a,0xe8,0x40,0x3a,0xe9,0x13,0x81, -0x7c,0x3, 0xf2,0x0, 0xcc,0x82,0xe8,0x40,0x3a,0x69,0xe8,0x40,0x3f,0xe9,0xe2,0x1, -0xc2,0x7f,0xe4,0x0, 0xc7,0xd4,0xe0,0x0, 0x2, 0xfc,0xe8,0xf, 0x3f,0x9b,0x3c,0x6f, -0x3c,0xe2,0x7f,0x81,0xef,0xf7,0xda,0x22,0xe0,0x43,0x3d,0x18,0xe0,0x0, 0x1c,0x26, -0xf0,0xd, 0x34,0xa1,0x3c,0x1d,0x3c,0xe7,0xef,0xf7,0xd6,0xcd,0x3c,0xe8,0xe3,0xff, -0xc4,0xff,0x3c,0x64,0xde,0xe7,0x67,0x81,0x3c,0xe2,0xb4,0x73,0x3c,0x6f,0xef,0xf7, -0xd9,0xae,0x3c,0xe8,0x24,0x25,0x3c,0x64,0xde,0xdd,0xe8,0x0, 0x8f,0x8c,0x2f,0x86, -0xe8,0x0, 0x8f,0x88,0xe2,0x0, 0xcf,0x83,0x1, 0x9b,0xe8,0x40,0x3e,0xe9,0xe4,0x0, -0xc6,0x8a,0xe0,0x43,0x3f,0x98,0xe8,0xd, 0x3e,0x9d,0x3d,0x6f,0x3c,0x6d,0x14,0x85, -0x7f,0x81,0x7e,0x82,0xef,0xf7,0xd6,0xa7,0x67,0x81,0x66,0x82,0x3f,0xf8,0x3, 0x7, -0xe0,0xf, 0x3c,0x2f,0x37,0x84,0xe0,0xf, 0x3c,0x2f,0xb7,0x8d,0xb4,0x3, 0xe1,0x80, -0x9f,0x93,0x9e,0x86,0x3e,0xff,0x3, 0x8e,0xe8,0x3, 0x8e,0xbe,0x26,0x8b,0xe8,0x0, -0x8e,0x88,0xe2,0x0, 0xce,0x83,0x1, 0x86,0x67,0x3, 0x3f,0x74,0x1, 0x83,0x3a,0xe7, -0xb7,0x86,0xf0,0x0, 0xc4,0x81,0xf2,0x0, 0xcc,0x86,0xe7,0xff,0x1, 0x9c,0x22,0x9a, -0xe0,0x2, 0x1f,0xd3,0xe0,0x2, 0x1a,0x54,0xe0,0x2, 0x1a,0xdf,0x31,0x21,0x11,0x80, -0xe2,0x0, 0xc9,0x82,0x3c,0xe3,0x3d,0x62,0xe4,0x0, 0xc4,0xd4,0x2, 0x95,0x3c,0x95, -0x3c,0x6f,0xef,0xf6,0xdc,0x49,0xc1,0x81,0xe2,0x0, 0xc9,0x86,0x3f,0xe8,0x3f,0x92, -0x1, 0xf0,0xc0,0xc, 0xf8,0x0, 0xf, 0x28,0xb, 0xa1,0xe7,0xfd,0x0, 0xdc,0xe8,0xf, -0x3f,0x9a,0xe7,0xff,0x0, 0x86,0x3c,0x94,0x0, 0xec,0x8, 0xb3,0xe0,0x4, 0x1f,0xb4, -0xe0,0x1, 0x19,0x2, 0xe0,0x1c,0x89,0xbf,0x3c,0x63,0xde,0xb6,0x34,0x21,0x3c,0x12, -0x9f,0x88,0x3c,0x63,0xb7,0xe2,0xde,0xb0,0xc4,0x6, 0x34,0x21,0x3c,0x12,0x9f,0x98, -0xe0,0x1, 0xb7,0xd2,0x9, 0xe1,0x8, 0xb3,0xc0,0x7c,0x7c,0x1, 0xdf,0x3b,0x64,0x1, -0xea,0x24,0x79,0xfb,0xdf,0xe3,0x89,0x3, 0xe0,0x1, 0x1c,0x25,0x3f,0xe2,0xe4,0x0, -0xc7,0x9c,0xe0,0x1, 0x1c,0x82,0x15,0x1c,0x3c,0x1f,0xc1,0x1, 0xef,0xf6,0xdc,0xc, -0xe2,0x1, 0xc1,0x7f,0xe2,0x0, 0xc9,0x7, 0x2, 0x84,0xa9,0x3, 0xc0,0x4, 0x9, 0xe1, -0x17,0x80,0xaf,0x83,0x0, 0xfc,0xe0,0x1, 0x1f,0xa5,0xe0,0x1e,0x8c,0xf, 0x38,0x82, -0xe0,0x2, 0x1f,0xfc,0x17,0x0, 0xe0,0x2, 0x1e,0xfb,0xaf,0x1f,0x17,0x0, 0xb7,0x3f, -0xc7,0x90,0xe0,0x40,0xb7,0x4f,0xe0,0x40,0xb7,0x3f,0x3f,0xfd,0x1, 0xf9,0x38,0x82, -0x8, 0xb2,0xdf,0xef,0xe0,0x4, 0x1e,0xb4,0xe0,0x2, 0x1f,0xfc,0x17,0x0, 0xe0,0x1c, -0x8c,0x3d,0x8d,0xf, 0x3c,0xee,0x3d,0xed,0x3e,0x6f,0x10,0x81,0x3e,0xee,0xe4,0x0, -0xc6,0x8c,0x39,0x6e,0xe0,0x2, 0xc6,0xa9,0x3e,0x9b,0x8e,0x8d,0xe2,0x1, 0xc1,0x7f, -0x3c,0x7d,0xc7,0x1, 0xe0,0x62,0x39,0xaa,0x3c,0x7d,0x3d,0x62,0x39,0x61,0xe0,0x62, -0x39,0xa9,0xe2,0x0, 0xcf,0x6, 0xae,0xcf,0x3c,0xe2,0xc7,0x90,0x1, 0xe8,0x21,0x2, -0xad,0xc, 0x8f,0x8c,0xe2,0x0, 0xcf,0x85,0x5, 0x83,0x17,0x80,0xaf,0x8c,0x8f,0xc, -0xe0,0x0, 0x1f,0xfd,0xaf,0xf, 0x9, 0x61,0xe2,0x0, 0xcc,0x5, 0xe0,0x1, 0x2, 0xa5, -0x8, 0xb2,0xe0,0x0, 0x1d,0xf5,0x15,0x0, 0x3e,0xeb,0xe6,0xfc,0xcf,0x48,0x3f,0xea, -0xe0,0x1, 0xc7,0x9e,0x37,0xa1,0x3f,0x9b,0x9e,0xf, 0x9e,0xf, 0xe2,0xbf,0xce,0x7f, -0x2, 0x85,0x9e,0xf, 0xe7,0xc, 0xce,0x4e,0xb6,0xf, 0x3f,0xea,0xe0,0x1, 0xc7,0x9e, -0x37,0xa1,0x3f,0x9d,0x9e,0xf, 0x9e,0xf, 0xe6,0xf4,0xce,0x4c,0xe2,0x0, 0xce,0x5, -0x2, 0x85,0x9e,0xf, 0xe7,0x8, 0xce,0x4e,0xb6,0xf, 0x3f,0xea,0xe0,0x1, 0xc7,0x9e, -0x37,0xa1,0x3f,0x9d,0x9e,0xf, 0x9e,0xf, 0xe6,0xf8,0xce,0x4c,0xe2,0x0, 0xce,0x5, -0x2, 0x85,0x9e,0xf, 0xe7,0x4, 0xce,0x4e,0xb6,0xf, 0x3f,0xea,0xe0,0x1, 0xc7,0x9e, -0x37,0xa1,0x3f,0x9d,0x9e,0xf, 0x9e,0xf, 0xe6,0xfc,0xce,0x4c,0xe2,0x0, 0xce,0x5, -0x2, 0x85,0x9e,0xf, 0xe7,0x0, 0xce,0x4e,0xb6,0xf, 0xc5,0x1, 0xe2,0x0, 0xcd,0x8, -0xe7,0xff,0x1, 0xbf,0xe0,0x0, 0x1c,0xd6,0x39,0x68,0xe0,0x22,0x14,0x20,0xe0,0x3, -0xda,0x13,0x3c,0x62,0xe0,0x4, 0x1f,0xb4,0xe4,0x0, 0xc4,0xc, 0x3c,0x1f,0x3f,0x68, -0xe0,0x2, 0xc7,0x29,0x8c,0x8e,0x3f,0x68,0xe0,0x2, 0xc7,0x2a,0x8d,0xe, 0x3f,0x68, -0xe0,0x2, 0xc7,0x2b,0x8f,0xe, 0xe0,0x1c,0xac,0xbf,0xe0,0x1f,0xaf,0x4f,0x3f,0x68, -0xe0,0x2, 0xc7,0x2c,0x8d,0x8e,0x3f,0x68,0xe0,0x2, 0xc7,0x2d,0x8e,0xe, 0x3f,0x68, -0xe0,0x2, 0xc7,0x2f,0x8f,0xe, 0xe0,0x1f,0xad,0x3f,0xe0,0x1f,0xaf,0x2f,0x3f,0x68, -0xe0,0x2, 0xc7,0x2e,0x8e,0x8e,0xe0,0x1f,0xad,0xdf,0xe0,0x1f,0xae,0x6f,0xe0,0x1f, -0xae,0x9f,0x3f,0xe8,0xe0,0x2, 0xc7,0xb0,0x8f,0xf, 0xe0,0x4, 0x1f,0x99,0xe0,0x2, -0xc4,0x34,0x8c,0x8, 0xaf,0xf, 0xe0,0x4, 0x1f,0xb2,0xac,0xf, 0xe0,0x3, 0x1f,0x9a, -0xe0,0x4, 0x1c,0x7c,0xe0,0x6, 0xac,0xaf,0x14,0x81,0xe0,0x4, 0xad,0x3f,0x15,0x6, -0xe0,0x4, 0xad,0xaf,0xe0,0x4, 0xae,0x1f,0xe0,0x6, 0xae,0xbf,0xe0,0x6, 0xaf,0x5f, -0x9, 0x21,0xe6,0xd6,0x0, 0xc9,0x38,0x82,0x38,0x82,0x2c,0xb6,0xe0,0x1, 0x1f,0xb8, -0xe0,0x0, 0x15,0xe4,0x8f,0xf, 0xe0,0x0, 0x16,0x50,0xe0,0xf, 0x37,0x28,0xe0,0x1, -0x1f,0x37,0x8f,0xe, 0x3f,0x4f,0xe6,0xd1,0xcd,0xe, 0xe0,0x3, 0x1f,0xc3,0x3d,0x78, -0x8e,0x8f,0x3, 0xab,0xe2,0x0, 0xce,0x83,0x2, 0x83,0x17,0x4, 0xaf,0xf, 0xea,0x24, -0x7f,0x7a,0x8e,0x8f,0xe0,0x2, 0x1e,0x6e,0xe0,0x2, 0x1d,0xd2,0x26,0xb1,0x8d,0xe, -0xe2,0x0, 0xcd,0x5, 0x2, 0x86,0x9d,0xc, 0x14,0x80,0xe7,0xf, 0xcd,0x19,0xb5,0xc, -0xc6,0xff,0xae,0x8f,0x17,0x81,0xaf,0x8b,0x9f,0x8c,0x37,0xcf,0x2f,0xa3,0x8f,0x8e, -0xc7,0x81,0xaf,0x8e,0x38,0x82,0xe0,0x3, 0x15,0x74,0xe0,0x1, 0x15,0xc8,0xe0,0x1, -0x16,0x16,0xe0,0x0, 0x17,0x64,0x0, 0xd2,0x3d,0xf8,0x3, 0x86,0xe2,0x0, 0xce,0x82, -0x2, 0xd7,0x17,0x3, 0x0, 0xd4,0x3e,0x78,0x3, 0x86,0xe2,0x0, 0xce,0x81,0x2, 0xd0, -0x17,0x2, 0x0, 0xcd,0x3f,0x78,0x3, 0xcc,0x2e,0xcb,0x17,0x1, 0x0, 0xc8,0xae,0x8b, -0x0, 0xdc,0x17,0x80,0x0, 0xdf,0xe2,0x0, 0xcc,0x2, 0xea,0x24,0x7f,0xf8,0x5, 0x9d, -0xe0,0x1, 0x1f,0x2, 0x9e,0x8e,0xe2,0x0, 0xce,0xbb,0x5, 0x9a,0x9e,0x9e,0xe2,0x0, -0xce,0xbb,0x5, 0x96,0x9f,0x2e,0xe2,0x0, 0xcf,0x3b,0x5, 0x92,0x17,0x0, 0xb7,0xf, -0x9f,0xf, 0xe2,0x0, 0xcf,0x32,0x5, 0x8b,0xe0,0x2, 0x1e,0xfc,0x17,0x1, 0xaf,0x1d, -0xe0,0x1, 0x1e,0xa5,0xe0,0x1e,0xaf,0x2d,0x17,0x0, 0xb7,0xf, 0x38,0x82,0x9f,0xf, -0xc7,0x1, 0x0, 0xee,0x8, 0xb7,0xe0,0x2, 0x1b,0xfc,0x8a,0x17,0xe0,0x1, 0x2a,0x26, -0xe0,0x1, 0x1f,0x82,0x9e,0xef,0xe0,0x1, 0x9d,0xdf,0xe0,0x2, 0x1f,0x88,0x8f,0x8f, -0xe0,0xe, 0x37,0xa8,0xe0,0x2, 0x1f,0x87,0x8f,0x8f,0x3f,0xce,0xe0,0xe, 0x37,0xc1, -0x3e,0xfe,0x5, 0x89,0xe0,0x1, 0x1f,0x25,0x16,0x1, 0xe0,0x1e,0xae,0xe, 0xea,0x24, -0x7f,0x76,0xb2,0xe, 0x3e,0xff,0xe0,0x1, 0x5, 0x8a,0xea,0x24,0x7f,0xf4,0x8f,0xf, -0x3e,0xee,0xc6,0x81,0xae,0x8f,0xe0,0x1, 0x1f,0xa5,0x3f,0x9e,0x17,0x1, 0xe0,0x1c, -0xaf,0xf, 0xea,0x24,0x7f,0xf6,0x17,0x0, 0xb7,0xf, 0x3a,0xe4,0xe0,0x1, 0x1f,0xa4, -0xe0,0x1, 0x1e,0xa3,0xe1,0x80,0x8f,0x1f,0x3f,0x15,0x3f,0xfd,0x3a,0xee,0xe2,0x1, -0xc2,0xff,0x1, 0xf9,0xea,0x24,0x7b,0x73,0xea,0x24,0x79,0x72,0xe0,0x1, 0x19,0xa5, -0xe0,0x1, 0x2a,0x83,0xe0,0x1, 0x1e,0xb8,0x8f,0x86,0x8e,0x8d,0x3f,0x6f,0xe0,0xc, -0x36,0xa8,0xe0,0x1, 0x1e,0xb7,0xc7,0x1, 0x8e,0x8d,0xe2,0x1, 0xc7,0x7f,0x3e,0xcc, -0x3d,0xfd,0xaf,0x6, 0x3f,0x93,0xe0,0x0, 0x5, 0xe9,0x17,0x1, 0xaa,0x82,0xe0,0x1d, -0xaf,0xf, 0x3a,0x65,0xe0,0x1, 0x1f,0xa3,0xe0,0x1, 0x1e,0xa2,0xe1,0x80,0x8f,0x1f, -0x3f,0x14,0x3f,0xfd,0x3a,0x6e,0xe2,0x1, 0xc2,0x7f,0x1, 0xf9,0xea,0x24,0x7f,0xf4, -0x8f,0xf, 0xe2,0x0, 0xcf,0x7, 0x5, 0x83,0x17,0x0, 0xaf,0xf, 0x8f,0x86,0xe2,0x0, -0xcf,0x87,0x5, 0x83,0x17,0x80,0xaf,0x86,0xe2,0x0, 0xca,0x82,0x5, 0x8c,0xe0,0x1, -0x1c,0x24,0x15,0x8, 0x14,0x80,0xef,0xf6,0xda,0x47,0x17,0x82,0xe0,0x1e,0xaf,0x83, -0x17,0x81,0xaf,0x97,0xe0,0x1e,0x8c,0x83,0x2c,0x8b,0x22,0xa, 0xe0,0x1, 0x1c,0x23, -0x15,0x8, 0xef,0xf6,0xda,0x39,0x17,0x81,0xe0,0x1e,0xaf,0x93,0xaf,0x97,0xea,0x24, -0x7f,0xf6,0x9f,0xf, 0xe2,0x1, 0xcf,0x47,0x5, 0x87,0x17,0x0, 0xe0,0x1e,0xaf,0x3, -0xe0,0x1, 0x17,0x48,0xb7,0xf, 0x8f,0x82,0xe2,0x0, 0xcf,0x9f,0x5, 0x86,0x17,0x80, -0xe0,0x1e,0xaf,0x93,0x17,0xa0,0xaf,0x82,0xb, 0xe1,0xe0,0x3, 0x1f,0xea,0x8f,0x8f, -0xe7,0xff,0x27,0x85,0xea,0x24,0x7f,0xf4,0x8f,0xf, 0x3e,0xee,0xc6,0x81,0xae,0x8f, -0xe0,0x1, 0x1f,0xa5,0x3f,0x9e,0x17,0x0, 0xe0,0x1c,0xaf,0xf, 0xea,0x24,0x7f,0xf6, -0x9f,0xf, 0xc7,0x1, 0xe7,0xfe,0x0, 0xf2,0xe0,0x1d,0xaa,0x8f,0x8f,0x82,0xc7,0x81, -0xaf,0x82,0xe7,0xff,0x0, 0x98,0xe0,0x1, 0x1c,0x23,0x15,0x8, 0x14,0x80,0xef,0xf6, -0xd9,0xfb,0xe7,0xff,0x0, 0x9d,0x8, 0xb3,0xc0,0x74,0xe0,0x1, 0x1e,0xa5,0x3e,0x60, -0x3c,0xe0,0xe0,0x2, 0x1d,0xfc,0xc6,0x4, 0xc4,0x90,0x39,0xed,0x17,0x0, 0x3f,0xee, -0x3d,0x6e,0xe4,0x0, 0xc5,0x1c,0xc7,0x1, 0x3d,0x1d,0x9d,0xa, 0xe2,0x0, 0xcf,0x8, -0x3f,0x9a,0x1, 0xf7,0xe6,0xcd,0xcf,0x8f,0xe1,0x80,0xb7,0x9c,0x3e,0x79,0xb7,0xbb, -0xc6,0x82,0xc5,0x90,0x1, 0xec,0xe2,0x0, 0x7e,0xc, 0xe0,0xc0,0x9e,0xcc,0xe0,0x4, -0x1d,0x7b,0x17,0x81,0x11,0x0, 0x14,0x82,0x14,0x3b,0xe1,0x80,0x8d,0x9a,0x3f,0x6f, -0xe2,0x0, 0xcd,0x81,0xe2,0x1, 0xc7,0x7f,0x1, 0x8f,0xe0,0xb, 0x37,0xa1,0x3d,0x9c, -0x9d,0x8b,0x3d,0xfd,0x3, 0x83,0x39,0x6e,0x3e,0xeb,0xe0,0x2e,0x3f,0x9, 0x27,0x4, -0xe1,0x2e,0x3c,0x2d,0x2f,0x5, 0xc7,0x81,0xe2,0x0, 0xcf,0x86,0x1, 0xe7,0xe0,0x4, -0x1f,0xb4,0xe0,0x1c,0x8c,0x3f,0xdc,0x0, 0x39,0x78,0x1, 0x2b,0xe2,0x0, 0x7e,0x84, -0x34,0x21,0xe0,0xe, 0x31,0x21,0x3c,0x1d,0x3f,0x1d,0x9f,0xe, 0x9f,0x88,0x3f,0xae, -0xe0,0x43,0x3f,0x1f,0xe2,0x0, 0xcf,0x0, 0x2, 0x3, 0xe0,0x41,0x3f,0xce,0xe0,0x1, -0x1f,0x36,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x35,0x8f,0xe, 0x3f,0x4d, -0x3f,0x7f,0x3, 0xf, 0xe0,0x0, 0x1f,0xab,0x17,0x4, 0xb7,0xf, 0xef,0xf7,0xd4,0x92, -0xef,0xf7,0xd5,0xee,0x17,0x81,0xe0,0x1e,0xaf,0x83,0x3c,0x62,0xc0,0xc, 0x9, 0xe1, -0xe0,0x1, 0x11,0x7f,0x0, 0xfb,0x8, 0xb2,0xc0,0x74,0xe0,0x2, 0x1e,0x7c,0x3c,0xe0, -0xe0,0x1, 0x1c,0x25,0xc4,0x84,0x16,0x80,0x17,0x80,0xe0,0xa, 0x3e,0x98,0x3f,0x6f, -0xc7,0x1, 0x9d,0xfa,0xe2,0x1, 0xc7,0x7f,0xe1,0x81,0x98,0xea,0xe2,0x0, 0xcf,0x8, -0x3d,0x91,0x3f,0x9b,0x1, 0xf6,0xc6,0x82,0xe6,0xcd,0xcf,0x8f,0xe2,0x0, 0xce,0x8c, -0xb7,0xcc,0xc6,0x10,0xe1,0x80,0xb7,0x99,0x1, 0xe8,0xe2,0x0, 0x7f,0xc, 0xe0,0xc0, -0x9e,0x4e,0xe0,0x4, 0x1d,0xfb,0x17,0x81,0x11,0x0, 0xe1,0x80,0x8e,0x9b,0x3d,0x6f, -0xe2,0x0, 0xce,0x81,0xe2,0x1, 0xc5,0x7f,0x1, 0x89,0xe0,0xd, 0x37,0xa1,0x3e,0x9e, -0x9e,0x8d,0x3e,0xfc,0x3, 0x83,0x39,0x6a,0x3e,0x6d,0xc7,0x81,0xe2,0x0, 0xcf,0x86, -0x1, 0xed,0xe0,0x4, 0x1f,0xb4,0xe0,0x1c,0x8c,0x3f,0xdb,0x8e,0x39,0x78,0x1, 0x28, -0xe2,0x0, 0x7e,0x84,0x34,0x21,0xe0,0xe, 0x31,0x21,0x3c,0x1d,0x3f,0x1d,0x9f,0xe, -0x9f,0x88,0x3f,0xae,0xe0,0x43,0x3f,0x1f,0xe2,0x0, 0xcf,0x0, 0x2, 0x3, 0xe0,0x41, -0x3f,0xce,0xe0,0x1, 0x1f,0x34,0x8f,0xe, 0xe0,0xd, 0x37,0x28,0xe0,0x1, 0x1f,0x33, -0x8f,0xe, 0x3f,0x4d,0x3f,0x7f,0x3, 0xc, 0xe0,0x0, 0x1f,0xab,0x17,0x4, 0xb7,0xf, -0xef,0xf7,0xd4,0x20,0xef,0xf7,0xd5,0x7c,0x3c,0x62,0xc0,0xc, 0x9, 0x61,0xe0,0x1, -0x11,0x7f,0x0, 0xfb,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xe0,0x4, 0x19,0x34,0xe0,0x1, -0x19,0x82,0xe0,0x1c,0x8c,0x32,0xdb,0x58,0x9f,0x83,0x3a,0x68,0xe2,0x0, 0xcf,0x93, -0xea,0x24,0x7f,0xf0,0x2, 0xab,0x9f,0x73,0xe2,0x0, 0xcf,0x13,0x2, 0xa7,0x9f,0xf, -0xe2,0x7, 0xcf,0x67,0x2, 0x83,0xc7,0x1, 0xb7,0xf, 0xea,0x24,0x7e,0xee,0xe0,0x3, -0x1f,0x4e,0x22,0x22,0xe0,0x1, 0x8e,0x3e,0x2e,0x5, 0x8e,0xd, 0xe2,0x0, 0xce,0x1, -0x1, 0x5, 0x9f,0x8f,0xe2,0x3, 0xcf,0xf4,0x5, 0x97,0xea,0x24,0x7f,0xef,0x16,0x1, -0xae,0xf, 0xe0,0x4, 0x8f,0xde,0x3f,0xfc,0x1, 0x8f,0xe0,0x1, 0x8f,0xbe,0xaf,0x8d, -0xf8,0x0, 0xc, 0x28,0xb, 0xa1,0xe7,0x93,0x0, 0xcd,0xea,0x24,0x7f,0x6f,0x16,0x80, -0xae,0x8e,0x17,0x0, 0x0, 0xda,0xe0,0x1, 0x8f,0xbe,0xaf,0x8d,0xe0,0x12,0x8f,0xc2, -0xe0,0x0, 0x27,0xf8,0xe0,0x4, 0x8f,0xde,0xe2,0x0, 0xcf,0x81,0xe0,0x0, 0x1, 0x72, -0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0xe0,0x0, 0x1, 0x6b,0x3c,0x64, -0xdd,0xf2,0xe0,0x1, 0x1f,0xe5,0xe0,0x1, 0x19,0x25,0x8f,0x8f,0xe0,0x4, 0x1e,0xec, -0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xe4,0x8f,0x8f,0x3f,0xce,0xe0,0x1e,0x8f,0x12, -0xe2,0x0, 0xcf,0x1, 0xe0,0x2, 0x1f,0x43,0x1, 0x9, 0xe0,0x1e,0x8e,0x2, 0x2e,0x6, -0xe0,0x0, 0x1e,0x2e,0x8e,0xc, 0xe0,0x0, 0x26,0x50,0x16,0x3, 0x37,0xa1,0xe0,0x1, -0xae,0x4d,0x3c,0x64,0xe0,0x1, 0xb7,0xfe,0xdd,0xa7,0xea,0x24,0x7f,0xef,0x8f,0xf, -0xe0,0x2, 0x1b,0x7c,0x27,0xc, 0xe0,0x3, 0x1f,0x6a,0x8f,0xe, 0x2f,0x8, 0x9f,0x73, -0xe2,0x0, 0xcf,0x13,0x2, 0xbd,0x22,0x3c,0x17,0x1, 0xaf,0x16,0x8f,0x16,0xe2,0x0, -0xcf,0x1, 0x1, 0xaf,0x8a,0x8f,0x22,0xb7,0xe0,0x1, 0x1e,0x9c,0x17,0x0, 0x11,0x80, -0xe0,0x1e,0xaf,0x2, 0xaf,0xd, 0xaf,0xf, 0xe0,0x1, 0x17,0xff,0xe1,0x2f,0x39,0x8f, -0x27,0x9e,0xe1,0x24,0x39,0x84,0x22,0x1b,0xe0,0x0, 0x1f,0xab,0x9f,0xf, 0xe2,0x0, -0xcf,0x1, 0x2, 0x83,0x17,0x2, 0xb7,0xf, 0x3c,0x63,0xdc,0x77,0x17,0x80,0xe0,0x1e, -0xaf,0x92,0xe0,0x1e,0xaf,0xa2,0xe0,0x1e,0xaf,0xb2,0xe0,0x1, 0x1f,0x9c,0xa9,0x86, -0x8f,0xf, 0xe2,0x0, 0xcf,0x1, 0x1, 0x83,0x17,0x3, 0xaf,0xf, 0x17,0x80,0xaf,0x96, -0xf8,0x0, 0xc, 0x28,0xb, 0xe1,0xe0,0x1, 0xae,0x4d,0xe7,0xff,0x0, 0xb4,0x17,0x0, -0xaf,0xf, 0x0, 0xc5,0xe0,0x1e,0x89,0xa2,0xe2,0x0, 0xc9,0x81,0x1, 0x94,0xe0,0x4, -0x1c,0x7a,0x15,0x4, 0x3c,0xe5,0xef,0xf6,0xd8,0x3f,0xe0,0x4, 0x1f,0xfc,0xe0,0x2, -0x17,0x1, 0xa9,0xaf,0xb7,0xf, 0xde,0x40,0x39,0xe8,0xe0,0x1, 0x1f,0x9c,0xaa,0x8f, -0xe7,0xff,0x0, 0xbc,0xe0,0x1e,0x8f,0x82,0xe2,0x0, 0xcf,0x82,0x1, 0x85,0xde,0x34, -0x39,0xe8,0xe7,0xff,0x0, 0xb3,0xf0,0x1e,0x8c,0x12,0xf2,0x0, 0xcc,0x1, 0x1, 0x8a, -0xe0,0x1, 0x1b,0x9c,0xaa,0x87,0xde,0xa0,0x39,0xe8,0xf0,0x0, 0xac,0x7, 0xe7,0xff, -0x0, 0xa5,0xe0,0x1e,0x89,0xb2,0xe2,0x0, 0xc9,0x81,0x1, 0x60,0xe0,0x1, 0x11,0xff, -0xe7,0xff,0x0, 0x9c,0xe0,0x2, 0x1f,0xfc,0xe0,0x2, 0x1e,0xfb,0x3f,0x6f,0x8e,0x4f, -0x3e,0x78,0x1, 0xc, 0xc7,0x90,0x3e,0xff,0x1, 0xfb,0xe0,0x0, 0x1f,0xfd,0x8f,0x8f, -0x37,0xa4,0x3f,0x9e,0xac,0x4f,0x14,0x1, 0x0, 0x82,0x14,0x0, 0x38,0x82,0x8, 0xb3, -0xe2,0x1, 0xcc,0x0, 0x39,0x68,0xe0,0x2, 0x19,0xfc,0x1, 0xa0,0x3f,0x63,0xe0,0x1, -0x16,0xff,0x17,0x80,0x8e,0x4e,0x3e,0x7d,0x3, 0x83,0x3e,0xec,0x39,0x6f,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x86,0xc7,0x10,0x1, 0xf5,0xe2,0x0, 0xc9,0x5, -0x5, 0x82,0x11,0x0, 0x8f,0x83,0x3f,0xf2,0x1, 0x4, 0x3c,0x62,0xdb,0xee,0xa9,0x3, -0xe0,0x3, 0x1f,0x9a,0xe0,0x1, 0xa9,0x2f,0x9, 0xe1,0xe2,0x1, 0xcc,0x1, 0x1, 0xef, -0x16,0x80,0x3f,0x63,0x3f,0xed,0x8e,0x4e,0x3e,0x7d,0x5, 0x83,0x3e,0xec,0x39,0x6f, -0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x86,0xc7,0x10,0x1, 0xf5,0x0, 0xdf, -0xe0,0x4, 0x1f,0xba,0x17,0x0, 0xb7,0xf, 0xb7,0x1f,0x38,0x82,0x8, 0xb7,0xf8,0x0, -0xc, 0x3e,0xc0,0x74,0xe0,0x0, 0x1b,0xa4,0x11,0x0, 0x3a,0x62,0x3b,0x62,0xf0,0x40, -0x3e,0xe2,0x3a,0xe7,0xe0,0x0, 0x1e,0x25,0x8f,0x8c,0x3f,0xf6,0x2, 0xba,0xe0,0x1, -0x1f,0xb2,0x8f,0x8f,0xe8,0x40,0x3f,0xfd,0x3, 0xa4,0xe0,0x3, 0x1f,0xce,0xe0,0xa, -0x8f,0x8f,0x2f,0x9f,0x3a,0x72,0xe0,0x2, 0x5, 0xf4,0x3f,0xe2,0xe2,0x1, 0xc7,0xff, -0x3f,0xbf,0xe2,0x1, 0xcf,0xff,0x2, 0x89,0xe2,0x1, 0xc7,0xff,0xe9,0x2f,0x3f,0xdd, -0xf0,0x40,0x3e,0xef,0xf2,0x1, 0xc6,0xff,0xe0,0x5, 0x8f,0xb5,0xe2,0x0, 0xcf,0x81, -0x5, 0x88,0xe8,0x40,0x3f,0xed,0xc7,0xf9,0xf0,0x40,0x3e,0xef,0xf2,0x1, 0xc6,0xff, -0xef,0xff,0xd1,0x38,0xe2,0x0, 0xcc,0x0, 0x17,0xbc,0x16,0x28,0xe0,0x6c,0x39,0xaf, -0xea,0x25,0x7f,0x86,0xf0,0x2, 0x2e,0xdc,0xf0,0x0, 0xae,0x8f,0xe0,0x2, 0x0, 0xdd, -0x3f,0xe6,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x97,0x89,0xaf,0xe0,0xf, 0x33,0x21, -0x3f,0x97,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8c,0x8f,0x3c,0x63,0xe8,0x40,0x3c,0xe9, -0xd2,0xa2,0xf0,0x40,0x3c,0x68,0xe0,0x1, 0x21,0xbe,0xc1,0xff,0x3c,0x63,0xe8,0x40, -0x3c,0xe9,0xe2,0x1, 0xc4,0x7f,0xd2,0x97,0xe0,0x0, 0x16,0x64,0xe0,0x2f,0x3c,0x6c, -0xe8,0x40,0x3c,0x68,0xe4,0x0, 0xc4,0x3, 0xe6,0x50,0xcf,0xaf,0x34,0x2, 0x3f,0x98, -0xe0,0x43,0x3f,0x9f,0xe4,0x0, 0xc7,0x85,0xe0,0x1b,0x37,0x83,0xf2,0x3, 0xcc,0xf, -0xe0,0x1, 0x2, 0x28,0xf0,0xf, 0x35,0x82,0xe0,0x0, 0x17,0x50,0xe0,0x3b,0x3f,0xee, -0x3c,0x66,0xd2,0x4e,0xe0,0x1, 0x24,0x10,0xf0,0x40,0x3f,0x66,0xf4,0x0, 0xc7,0x5, -0xe8,0xd, 0x3a,0x9e,0x3d,0xed,0xe0,0x2, 0xc5,0xcc,0xf0,0x0, 0x8d,0xb, 0xe0,0x2, -0xc6,0xcb,0xf0,0x0, 0x8c,0x8d,0xe8,0x40,0x3e,0xea,0xc6,0x81,0xe8,0xd, 0x3e,0xa9, -0xe2,0x0, 0xce,0x80,0xe0,0x1, 0x5, 0x12,0xe8,0x9, 0x3a,0x9e,0x3c,0x69,0xe0,0x2, -0xc4,0x4e,0xf0,0x0, 0x8e,0x8, 0xe0,0x2, 0xc4,0xcd,0x8c,0x89,0xe8,0x40,0x39,0xec, -0xc1,0x81,0x39,0xa9,0xe2,0x0, 0xc9,0x80,0xe2,0x1, 0xc6,0xff,0xe0,0x1, 0x5, 0x4, -0x3c,0xe3,0x17,0x4, 0x39,0xed,0xe1,0x2d,0x3e,0x9e,0xe2,0x1, 0xc4,0xff,0xe2,0x1, -0xc1,0xff,0x26,0x84,0xe1,0x2d,0x3c,0x9e,0x2e,0x8e,0xe0,0x3, 0x1f,0xce,0xe0,0xa, -0x8e,0x8f,0xe2,0x0, 0xce,0x81,0x1, 0x7, 0xe0,0x1, 0x1e,0xa7,0x8e,0x8d,0xe2,0x0, -0xce,0x81,0x1, 0x98,0x39,0xb9,0xe8,0x18,0x3a,0x9e,0xf0,0x2, 0xc4,0x4d,0xe3,0xff, -0xc1,0xff,0x16,0x80,0xf0,0x0, 0x7c,0x3, 0xf8,0x40,0x3d,0x79,0xe0,0x0, 0x3, 0xe2, -0x3f,0xed,0xe2,0x1, 0xc7,0xff,0x39,0xff,0xe0,0x1, 0x5, 0xa4,0x39,0xaf,0xe3,0xff, -0xc1,0xff,0xe0,0x1, 0x17,0x7a,0xe1,0x23,0x39,0xde,0xe3,0xff,0xc1,0xff,0xe2,0x1, -0xc1,0xff,0xf0,0x40,0x3e,0xf3,0x3, 0xa7,0xe8,0xe, 0x3a,0x9e,0x3f,0xee,0xe0,0x2, -0xc7,0xcc,0x8f,0x8f,0xe0,0x2, 0xc7,0x4b,0x8f,0xe, 0x3a,0x6f,0xc2,0x1, 0x3a,0x2e, -0xe2,0x0, 0xca,0x0, 0xe0,0x1, 0x5, 0x9, 0xe8,0xc, 0x3a,0x9e,0x3f,0xec,0xe0,0x2, -0xc7,0xce,0x8f,0x8f,0xe0,0x2, 0xc6,0x4d,0x8f,0xc, 0x39,0x6f,0xc1,0x1, 0x39,0x2e, -0xe2,0x0, 0xc9,0x0, 0xe2,0x1, 0xc2,0x7f,0xe0,0x0, 0x5, 0x7d,0xe2,0x1, 0xc1,0x7f, -0xf0,0x40,0x3e,0xe3,0x3f,0xe6,0xc7,0x81,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe7,0xfd, -0x0, 0xf3,0x3f,0xe8,0xe4,0x0, 0xc7,0x85,0xf6,0x4d,0xcd,0x8f,0xe7,0xfe,0x0, 0xd8, -0xf2,0x4, 0xcc,0x57,0xe7,0xfe,0x2, 0x5e,0xf0,0xf, 0x35,0x81,0xe0,0x0, 0x16,0x64, -0xe0,0x3b,0x3f,0xec,0xe7,0xfe,0x0, 0xd6,0xf8,0xd, 0x3d,0x29,0xe0,0x41,0x3e,0x8d, -0xe7,0xfe,0x0, 0xec,0xf0,0x9, 0x3e,0x29,0xe0,0x41,0x3c,0x89,0xe7,0xfe,0x0, 0xfb, -0x66,0x3, 0xf0,0x0, 0x8c,0xc, 0xf8,0x40,0x3e,0x78,0x3, 0x84,0xf8,0x40,0x3a,0xec, -0x0, 0xa6,0xe8,0x40,0x3c,0xe8,0xe8,0x40,0x3c,0x69,0x7e,0x81,0xd1,0xb4,0xf0,0x40, -0x3d,0xf8,0x66,0x81,0x5, 0x74,0xe2,0x1, 0xce,0xf9,0x2, 0x84,0xc6,0x81,0xe2,0x1, -0xc6,0xff,0xe8,0x40,0x3c,0xe8,0xc4,0x81,0xf0,0x40,0x3c,0x69,0xf2,0x1, 0xc4,0x7f, -0x0, 0xe3,0xe2,0x1, 0xce,0xf9,0x2, 0x84,0xc6,0x81,0xe2,0x1, 0xc6,0xff,0xe8,0x40, -0x3c,0xe5,0xc4,0xff,0xf0,0x40,0x3a,0xe9,0xf2,0x1, 0xc2,0xff,0xf8,0x40,0x3c,0x75, -0x3, 0x8f,0xe8,0x40,0x3c,0xe5,0xe8,0x40,0x3c,0x69,0x7e,0x81,0xf0,0x0, 0x7a,0x82, -0xd1,0x8a,0xf0,0x40,0x3d,0xf8,0x66,0x81,0xf0,0x0, 0x62,0x82,0x2, 0x63,0xe8,0x40, -0x3d,0xe9,0xc5,0x81,0xf0,0x40,0x3c,0xeb,0xf2,0x1, 0xc4,0xff,0xe7,0xfe,0x0, 0xd6, -0x11,0x80,0xe7,0xfe,0x0, 0xe6,0x3f,0xae,0xe0,0x41,0x3f,0x8f,0x3a,0x6f,0xe7,0xfe, -0x0, 0xf5,0x3f,0xae,0xe0,0x41,0x3f,0x8f,0x39,0x6f,0xe7,0xff,0x0, 0x81,0xe0,0xf, -0x39,0x24,0xe6,0xfa,0xcf,0x8f,0x16,0x94,0xe1,0x2f,0x3f,0xdd,0xe8,0x40,0x3f,0xfd, -0xe7,0xfd,0x3, 0xa0,0xf0,0xf, 0x3e,0xaf,0xe7,0xfd,0x0, 0x98,0x8e,0x8f,0xe8,0x40, -0x3e,0xfd,0xe7,0xfd,0x4, 0xa3,0x8f,0x8f,0xe2,0x0, 0xcf,0xc5,0xe0,0x0, 0x2, 0xd4, -0xe0,0x0, 0x1f,0x99,0x16,0x81,0x9f,0x8f,0xe2,0x0, 0xcf,0xa2,0x17,0x9e,0xe0,0x6d, -0x3a,0xaf,0xf0,0x40,0x3e,0xfc,0xea,0x25,0x7f,0x85,0x2, 0x88,0x8e,0xf, 0xe0,0x0, -0x26,0x46,0xf0,0x40,0x3e,0xfd,0xe0,0x0, 0x5, 0xc2,0x17,0x14,0xaf,0xf, 0xea,0x25, -0x7f,0x4, 0x8e,0x8e,0xe2,0x0, 0xce,0x81,0x2, 0x9f,0xe0,0x0, 0x1e,0x25,0x8e,0x8c, -0xe0,0x0, 0x26,0xd6,0x16,0x81,0xae,0x8e,0xe0,0x0, 0x1e,0x9a,0x8e,0x8d,0xe0,0x0, -0x2e,0xd1,0xe0,0xc, 0x96,0x85,0xe3,0xfd,0xce,0xd4,0xe0,0x0, 0x4, 0x4b,0xe0,0xb, -0x96,0xf5,0xe3,0xfd,0xce,0xd4,0xe0,0x0, 0x4, 0x45,0xe0,0x5, 0x8e,0xc5,0xe0,0x0, -0x26,0xc1,0x16,0x82,0xae,0x8e,0x8f,0xf, 0xe0,0x1, 0x1e,0xa7,0xe0,0x0, 0x27,0x44, -0xe0,0x0, 0x1e,0x1c,0x9e,0xc, 0xe2,0x0, 0xce,0x13,0x2, 0x83,0xc7,0x7f,0xaf,0xf, -0x17,0x80,0xe0,0x0, 0x1f,0x25,0xaf,0x8e,0x17,0x81,0xaf,0x8d,0xc0,0xc, 0xf8,0x0, -0xf, 0x28,0xb, 0xe1,0x16,0x9e,0xe7,0xff,0x0, 0xb6,0xf0,0x0, 0x2e,0x86,0xf0,0x0, -0xae,0x8f,0xe7,0xff,0x0, 0xbe,0xe0,0x0, 0x1f,0x19,0xe0,0x4, 0x1d,0xb4,0x9e,0xe, -0xe0,0x0, 0x1f,0x1c,0x9e,0x8e,0x8f,0x4b,0x8d,0xdb,0xe0,0xa, 0x3e,0x1d,0x3f,0x3b, -0xe0,0xb, 0x37,0x1, 0x3d,0x7b,0xe7,0xff,0x2, 0x2a,0x37,0x2, 0x3e,0x7e,0xe7,0xff, -0x2, 0x26,0x3e,0xfe,0xe7,0xff,0x5, 0x25,0xe7,0xff,0x0, 0xa1,0x1, 0xc5,0x0, 0xc2, -0x8f,0xf, 0xe2,0x0, 0xcf,0x1, 0x5, 0x85,0x17,0x14,0xaf,0xf, 0xe7,0xff,0x0, 0xbd, -0x17,0x1, 0x0, 0xfc,0xaf,0xd, 0x0, 0xcb,0xe0,0x1, 0x1f,0xa1,0x8f,0xf, 0x27,0x1d, -0x17,0x0, 0xaf,0xf, 0xe0,0x3, 0x1f,0xce,0xe0,0x2, 0x1f,0x43,0x8e,0x8f,0x36,0xa2, -0xb6,0x9e,0x8e,0x9f,0x36,0xa2,0xb6,0xae,0x8e,0xaf,0x36,0xa2,0xb6,0xce,0x8e,0xbf, -0x36,0xa2,0xb6,0xde,0x8e,0xdf,0x36,0xa4,0xe0,0x1, 0xb6,0xfe,0xe0,0x8, 0x8e,0x8f, -0xe0,0x4, 0xae,0xce,0xe0,0x8, 0xae,0x8f,0xe0,0x3, 0x1f,0xec,0x8f,0x8f,0x27,0x8d, -0xe0,0x1, 0x1f,0xf6,0x8f,0x8f,0xe0,0xe, 0x37,0xa8,0xe0,0x1, 0x1f,0xf5,0x8f,0x8f, -0x3f,0xce,0xe0,0x2, 0x1f,0x43,0xb7,0x9e,0x38,0x82,0xe0,0x1, 0x1f,0xe3,0xe2,0x0, -0xcc,0x1, 0x8e,0x8f,0xe0,0x3, 0x1f,0x4e,0xe0,0x2, 0x1f,0xc3,0x1, 0x90,0xe0,0x1, -0x8e,0x3e,0xae,0x9f,0xe0,0x0, 0x17,0x78,0x26,0x6, 0xe0,0x1, 0x16,0x8c,0xb6,0x9f, -0xb7,0x2f,0x38,0x82,0xb7,0x1f,0xe0,0x0, 0x17,0x64,0x0, 0xfb,0xae,0x9f,0xe0,0x1, -0x1e,0xeb,0x8e,0x8d,0xe0,0xc, 0x36,0xa8,0xe0,0x1, 0x1e,0xea,0x8e,0x8d,0x3e,0xcc, -0xb6,0xaf,0xe0,0x3, 0x1e,0xec,0x8e,0x8d,0x2e,0x99,0xe0,0x1, 0x1e,0xb1,0x8e,0x8d, -0xe0,0xc, 0x36,0xa8,0xe0,0x1, 0x1e,0xb0,0x8e,0x8d,0x3e,0xcc,0xb6,0x9f,0xe0,0xa, -0x8e,0x8e,0xe2,0x0, 0xce,0x81,0x1, 0xde,0x9e,0x9f,0xc6,0xec,0xb6,0x9f,0xe0,0x6, -0x8f,0xee,0xc7,0x81,0xe0,0x6, 0xaf,0xee,0x0, 0xd5,0xe0,0x1, 0x1e,0xf6,0x8e,0x8d, -0xe0,0xc, 0x36,0xa8,0xe0,0x1, 0x1e,0xf5,0x0, 0xe8,0x3f,0xe8,0xc7,0xdd,0x3f,0x6f, -0xe2,0x1, 0xc7,0x7f,0xe2,0x0, 0xcf,0xc, 0x2, 0x86,0x17,0x81,0x37,0xbe,0xe2,0x30, -0xc7,0xa9,0x2f,0x96,0xe0,0x3, 0x1f,0xce,0x17,0x1, 0x3f,0x98,0xac,0x8f,0xe0,0x1, -0x1f,0xa1,0xaf,0xf, 0xe0,0x0, 0x17,0xd0,0xe0,0x2f,0x3c,0xf, 0x27,0x8a,0x17,0x81, -0xe0,0x29,0x3c,0x8f,0x24,0x86,0xe0,0x3, 0x1f,0x9b,0x17,0x5, 0xaf,0xf, 0x38,0x82, -0xe2,0x0, 0xcc,0x25,0x1, 0xfd,0xe0,0x3, 0x1f,0xed,0x17,0x1, 0x0, 0xf8,0xe0,0x0, -0x1f,0x9d,0xe0,0xe, 0x34,0x43,0x3f,0x1f,0xe0,0x1, 0x1f,0x9e,0xe6,0xfd,0xcc,0x58, -0x3c,0x1f,0x8f,0xe, 0x8c,0x8, 0x3c,0x5e,0x38,0x82,0xe0,0x1, 0x1f,0x9e,0xe6,0xfd, -0xcf,0x58,0x3f,0x9e,0xe0,0x0, 0x1f,0x1d,0x34,0x43,0x3c,0x1e,0x8f,0x8f,0x8f,0x8, -0x24,0x84,0x3f,0xce,0xaf,0x88,0x38,0x82,0xe3,0xf, 0x3f,0x5f,0x0, 0xfc,0xe0,0x4, -0x1f,0xb4,0x8f,0xdf,0xe0,0xa9,0x3f,0x88,0xe0,0x2, 0x1f,0xea,0x34,0xa1,0xa4,0xf, -0x3c,0x19,0x38,0x82,0x8, 0xb1,0xdf,0xf4,0x94,0x8, 0x8, 0xe1,0xe0,0x0, 0x1f,0x24, -0xe0,0xf, 0x34,0x21,0xe0,0x1, 0xc4,0x6, 0x3f,0x9e,0x34,0x21,0xe0,0x2, 0xc7,0x8f, -0x3c,0x1e,0x8c,0x8f,0x8c,0x28,0x0, 0xef,0x3f,0x68,0xe0,0x0, 0x1f,0xa4,0xe0,0x1, -0xc7,0x6, 0x37,0x21,0xe0,0x0, 0x1e,0x97,0x3f,0x1f,0x8e,0x8d,0x8f,0x2e,0x3e,0xfe, -0x1, 0x8c,0x34,0x21,0x3f,0x98,0xe0,0x0, 0x1f,0x16,0xe0,0x2, 0xc7,0x8f,0x8c,0xe, -0x8f,0x8f,0xe0,0x28,0x3c,0xf, 0x38,0x82,0x14,0x0, 0x0, 0xfe,0x8, 0xb4,0x39,0x68, -0x3a,0x69,0x39,0xea,0xef,0xfd,0xd2,0x27,0x24,0x14,0xe0,0x4, 0x1f,0xb4,0x8f,0x5f, -0x3f,0xe2,0xe4,0x0, 0xc7,0xbe,0x3f,0x94,0x3f,0x9e,0xe0,0x1, 0xc7,0xba,0xe0,0x2, -0x1f,0x78,0x37,0xa1,0x3f,0x9e,0x94,0xf, 0xe0,0x28,0x3c,0x23,0x34,0x21,0xa, 0x61, -0x14,0x1, 0x0, 0xfe,0xe4,0x0, 0xc4,0x3e,0x3c,0x19,0xe0,0x1, 0xc4,0x3a,0xe0,0x2, -0x1c,0xf8,0x34,0x21,0x3c,0x19,0x94,0x8, 0xe0,0x28,0x3c,0x2a,0x34,0x21,0x38,0x82, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3d,0xe0,0x4, 0x1f,0xb4,0xe0,0x0, 0x1f,0x24,0x83,0xef, -0xf0,0x0, 0x84,0x7f,0x3f,0xe8,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x9e,0x8f,0xaf, -0x34,0x21,0x3e,0x69,0xe2,0x1, 0xc6,0x7f,0x3f,0x18,0xe0,0xd, 0x3f,0xac,0xe0,0x2, -0xc7,0xf, 0x8f,0xe, 0xf0,0x43,0x3d,0xf, 0xe2,0x1, 0xc6,0xff,0x37,0xa1,0x3f,0xad, -0xf0,0x43,0x3d,0x8e,0x39,0x6f,0xe0,0x43,0x3a,0xd, 0xf6,0xf9,0xce,0xe, 0xe2,0x1, -0xc1,0x7f,0xf0,0x0, 0x14,0x80,0xf0,0x1a,0x3d,0x19,0xe0,0x6, 0x3f,0x2c,0xf0,0x1b, -0x3d,0x99,0xe8,0x40,0x3a,0x7a,0x5, 0x6, 0xe8,0x40,0x3c,0x69,0xf8,0x0, 0xe, 0xa8, -0xb, 0xe1,0xe2,0x0, 0xca,0x0, 0x3, 0x1f,0xe0,0x43,0x3f,0x2, 0x3a,0x77,0x4, 0x3, -0xe0,0x43,0x3f,0x2, 0x3f,0xe6,0xe2,0x1, 0xc7,0xff,0xe0,0x43,0x3a,0x8f,0xf0,0xf, -0x3e,0x2f,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xf0,0x40,0x3e,0xee,0xe8,0x40,0x3a,0xfb, -0x5, 0xc, 0x3f,0xe2,0xc7,0xff,0xc2,0x1, 0x39,0x6f,0xe0,0x43,0x3a,0x4, 0xe2,0x1, -0xc1,0x7f,0x0, 0xd8,0x3f,0x64,0x0, 0xe3,0xe2,0x0, 0xca,0x80,0x3, 0x1a,0xe0,0x43, -0x3c,0x83,0xe8,0x40,0x3a,0xf8,0x4, 0x3, 0xe0,0x43,0x3c,0x83,0xe8,0x40,0x3c,0x6d, -0xe2,0x1, 0xc4,0xff,0xe2,0x1, 0xc4,0x7f,0xdf,0x3e,0x3f,0xe3,0xc7,0xff,0xc2,0x81, -0x39,0xef,0xf0,0x19,0x3c,0x98,0xe0,0x43,0x3a,0x85,0xe2,0x1, 0xc1,0xff,0x0, 0xd7, -0x3c,0xe5,0x0, 0xe8,0xe0,0x4, 0x1e,0xb4,0xe0,0x2, 0x1f,0x43,0x8e,0xed,0x9f,0x9e, -0x3e,0xf8,0x2, 0x82,0x9f,0xce,0x3c,0x6f,0x38,0x82,0x8, 0xb7,0x11,0x0, 0xe0,0x0, -0x1b,0xa4,0xe0,0x0, 0x1a,0x25,0x39,0xe2,0x12,0x85,0x13,0x1, 0x8f,0x84,0x3f,0xf3, -0x2, 0x83,0xa9,0x4, 0xb, 0xe1,0x3c,0x63,0xde,0xeb,0x24,0x24,0x3f,0xe3,0xe0,0x1, -0xc7,0x87,0x37,0xa1,0x3f,0x97,0x9f,0xf, 0x3c,0x62,0x3f,0xe2,0x3c,0xe3,0xe0,0x1, -0xc7,0x87,0xe4,0x0, 0xc4,0x5, 0xe4,0x0, 0xc4,0x85,0x37,0xa1,0x3f,0x97,0xe0,0x2, -0xc4,0x4a,0xe0,0x2, 0xc4,0xca,0xb7,0xf, 0x3d,0x65,0x3c,0x97,0x3c,0x17,0xef,0xf6, -0xd3,0x83,0x3c,0x62,0x3c,0xe6,0xde,0xda,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, -0xc1,0x7f,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0x0, 0xd0,0x8, 0xb7, -0xf8,0x0, 0xc, 0x39,0xc0,0x50,0xf0,0x0, 0x8c,0xa, 0xf0,0x40,0x3c,0xed,0x3e,0xe0, -0xc6,0x84,0x89,0xb, 0x3b,0xe8,0x39,0xea,0x3c,0x6d,0xe8,0x40,0x3d,0x68,0x3b,0x6c, -0x3a,0xe9,0x3a,0x6b,0xef,0xf6,0xd3,0x60,0x3e,0xe8,0xe0,0x8, 0x39,0x16,0x11,0x0, -0x3c,0xe6,0x3f,0xe2,0xf0,0x1, 0x12,0xff,0xf7,0xff,0x12,0x7f,0x3c,0xf8,0xe0,0x0, -0x1, 0xcc,0x14,0x0, 0xe0,0x1, 0x14,0xff,0x10,0xff,0xe2,0x0, 0xcf,0x94,0xe0,0x0, -0x2, 0xf8,0x3d,0x60,0xc5,0x4, 0x3d,0xe8,0x3e,0x69,0x16,0x80,0xe0,0x0, 0x0, 0xd8, -0xe9,0x80,0x8f,0x17,0xe2,0x1, 0xcf,0x7f,0x3d,0x6e,0x1, 0xe, 0xf0,0x0, 0x8b,0x9, -0xf0,0xe, 0x3b,0x2e,0xe2,0x0, 0xcf,0x0, 0x5, 0x2c,0xe2,0x1, 0xc7,0x7f,0x38,0xfe, -0x5, 0x83,0x38,0xee,0x3d,0xec,0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, 0xc6,0x7f, -0xe8,0x40,0x3e,0x78,0x1, 0xe6,0xe2,0x1, 0xcd,0xff,0x1, 0x18,0x3d,0x9d,0x8e,0xb, -0xe0,0xe, 0x36,0x21,0x3f,0x17,0x97,0xe, 0xe8,0x40,0x3f,0x79,0x4, 0xf, 0xe2,0x0, -0x7f,0x1c,0x3f,0x12,0xae,0xe, 0x3f,0x62,0xc7,0x1, 0xc7,0x81,0x39,0x6e,0xe2,0x1, -0xc7,0xff,0xf0,0x0, 0xaa,0xb, 0xe2,0x1, 0xc1,0x7f,0xc4,0x81,0xe7,0xff,0x0, 0xb8, -0xe8,0xe, 0x3d,0x26,0x0, 0xd3,0xf0,0x40,0x3b,0xe0,0xf0,0x0, 0xc3,0x84,0xe8,0x40, -0x38,0xe5,0xe8,0x40,0x3d,0xe5,0x16,0x0, 0x0, 0xd4,0xe1,0x80,0x8f,0x1a,0xe2,0x1, -0xcf,0x7f,0x1, 0x8, 0x37,0x21,0x3f,0x17,0x97,0xe, 0x3d,0xfe,0x3, 0x3, 0x3d,0xee, -0x3e,0x6d,0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0xe8,0x40,0x3e,0xf8, -0x1, 0xed,0xe2,0x1, 0xce,0x7f,0x1, 0xf, 0xe2,0x0, 0x7e,0x84,0x3e,0x1d,0x8e,0x8c, -0xe2,0x0, 0x7f,0x1c,0x3f,0x12,0xae,0x8e,0x3f,0x62,0xc7,0x1, 0x39,0x6e,0xa8,0x8c, -0xe2,0x1, 0xc1,0x7f,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe7,0xff,0x0, 0x88,0x3c,0xe0, -0x15,0x15,0xc4,0x9c,0xe2,0x0, 0x7c,0x4, 0xef,0xf6,0xd2,0xce,0x21,0x16,0x3d,0x62, -0xe2,0x0, 0x7c,0x84,0x3c,0x65,0xef,0xf6,0xd2,0xc7,0x3d,0x62,0xe2,0x0, 0x7c,0x84, -0x3c,0x66,0xef,0xf6,0xd2,0xc1,0x17,0x81,0xe1,0x2f,0x39,0x5f,0xa9,0x4, 0xaf,0x83, -0xc0,0x30,0xf8,0x0, 0xc, 0xa8,0xb, 0xe1,0x15,0x15,0xe0,0x1, 0x14,0xff,0x3c,0x66, -0xef,0xf6,0xd2,0xea,0x0, 0xf1,0x8, 0xb4,0xe0,0x2, 0x19,0xc3,0x3e,0x69,0xe0,0x1, -0x9e,0xa3,0x3d,0xe9,0x3d,0x69,0x39,0x69,0xe0,0x1, 0xc6,0x77,0xe0,0x2, 0xc5,0x8d, -0xc5,0x2c,0xc4,0x95,0x3a,0x68,0xdf,0x2c,0xe0,0x4, 0x1f,0xb4,0x3e,0x62,0x8c,0x5f, -0x3d,0xe2,0x3d,0x62,0x34,0x21,0xe0,0x1, 0x9e,0xa3,0xe0,0x1, 0xc6,0x62,0xe0,0x2, -0xc5,0x8c,0xc5,0x2b,0x3c,0xe2,0x3c,0x14,0xa, 0x21,0xe7,0xfe,0x0, 0x9a,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3e,0xe1,0xfd,0xc0,0x60,0xe0,0x0, 0x1a,0x25,0x3b,0xe0,0x8b,0x4, -0xc3,0x94,0xe0,0x0, 0x1c,0x8b,0xea,0x25,0x7a,0x89,0xe0,0xa, 0x33,0x21,0x3c,0x67, -0x11,0x0, 0xef,0xf6,0xd2,0x79,0xfa,0x25,0x7e,0xc, 0xf0,0x0, 0x8f,0x5, 0x39,0xe2, -0xf0,0x40,0x3c,0xe2,0xf0,0x7, 0x16,0xff,0xf8,0x40,0x3f,0x79,0xe0,0x1, 0x1, 0x5, -0x3d,0x60,0xc5,0x14,0xf8,0x40,0x3d,0xed,0xf0,0x1, 0x15,0x7f,0xf0,0x0, 0x14,0x0, -0x0, 0xbd,0xe8,0x40,0x3c,0x68,0x7d,0x2, 0xdd,0xab,0x65,0x2, 0x24,0x2f,0x8f,0x8a, -0xe2,0x1, 0xcf,0xff,0x1, 0x2b,0xe8,0x0, 0x8c,0xc, 0x3f,0x6f,0xe0,0xf, 0x3c,0x2f, -0xe3,0xff,0xc7,0xff,0xe0,0x43,0x38,0x9f,0xe2,0x0, 0xc8,0x80,0x2, 0x5, 0xe0,0xf, -0x3f,0x28,0xe3,0xff,0xc7,0xff,0xe8,0x0, 0x8c,0x1c,0x88,0x9a,0xe0,0xe, 0x3c,0x21, -0xe3,0xff,0xc7,0x7f,0xf0,0x43,0x3b,0x9e,0xf2,0x0, 0xcb,0x80,0x2, 0x5, 0xe0,0xe, -0x38,0xa8,0xe3,0xff,0xc7,0x7f,0x3f,0x9e,0xe3,0xff,0xc7,0xff,0xf0,0x40,0x3d,0xff, -0x5, 0x85,0xf0,0x40,0x3d,0xef,0xf8,0x40,0x3d,0x68,0xe8,0x40,0x3f,0xe8,0xc7,0x81, -0xf0,0x40,0x3c,0x6f,0xf2,0x1, 0xc4,0x7f,0xc5,0x2, 0xf0,0x40,0x3c,0x76,0x1, 0xc2, -0xf2,0x1, 0xcd,0x7f,0x1, 0x2e,0xf0,0xf, 0x35,0x21,0xe0,0x1a,0x3b,0x9f,0xf8,0x0, -0x8c,0xa, 0xf8,0x0, 0x8d,0x9a,0xe8,0x40,0x3c,0x68,0xe8,0x40,0x3c,0xeb,0xdd,0x8b, -0x3f,0x68,0xe8,0x40,0x3c,0x68,0x7f,0x2, 0xde,0x56,0x67,0x2, 0xe0,0x43,0x3c,0x18, -0x3f,0x78,0x4, 0x17,0xe0,0xe, 0x31,0x21,0xe2,0x0, 0x7f,0xd0,0x3f,0x1f,0x3f,0xe3, -0xc7,0x81,0x39,0xef,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xf0,0x0, 0xac,0xe, 0xe2,0x1, -0xc1,0xff,0xf0,0x0, 0xad,0x9e,0x17,0x7f,0xe2,0x1, 0xc1,0x7f,0xe8,0x0, 0xaf,0xa, -0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef,0xf2,0x1, 0xc4,0xff,0xf0,0x0, -0xc6,0x2, 0xe7,0xfe,0x0, 0xfb,0xe0,0x1, 0x1f,0xf8,0xf0,0x1, 0x16,0xff,0x8b,0x8f, -0xf0,0x0, 0x16,0x0, 0xf7,0xff,0x14,0xff,0x3b,0xf3,0xe0,0x0, 0x5, 0xd3,0xf0,0x40, -0x3d,0xe0,0xf0,0x0, 0xc5,0x94,0xf8,0x40,0x3d,0x6d,0xf8,0x40,0x3c,0x6c,0xf0,0x0, -0x17,0x0, 0x0, 0xa5,0xe8,0x40,0x3c,0x6e,0xdd,0x1b,0x24,0x18,0xe8,0x0, 0x8e,0xb, -0xe2,0x1, 0xce,0x7f,0x1, 0x13,0xe8,0x0, 0x8d,0x9b,0x3c,0x6c,0x3c,0xeb,0x7d,0x81, -0x7e,0x2, 0xdd,0x39,0xf0,0x40,0x3c,0x78,0x65,0x81,0x66,0x2, 0x3, 0x7, 0xf8,0x40, -0x3d,0x6e,0xf0,0x40,0x3c,0x68,0x7e,0x3, 0x7d,0x84,0xe8,0x40,0x3f,0xee,0xc7,0x81, -0xf0,0x40,0x3f,0x6f,0xf2,0x1, 0xc7,0x7f,0xf0,0x0, 0xc5,0x82,0xf0,0x40,0x3f,0x76, -0x1, 0xda,0xf2,0x1, 0xcd,0x7f,0x1, 0x16,0xe0,0xf, 0x31,0x21,0xe2,0x0, 0x7f,0x50, -0x3f,0x9e,0x67,0x3, 0xaf,0xf, 0x67,0x4, 0xaf,0x1f,0xe2,0x0, 0x7f,0x94,0xf0,0xe, -0x35,0x21,0x3f,0x1f,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xf0,0x0, -0xac,0x8e,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe7,0xff,0x0, 0xae, -0xe0,0x2, 0x1f,0xaa,0x3c,0xe0,0x8d,0xf, 0xe0,0x0, 0xc4,0xd0,0x35,0x21,0xe2,0x0, -0x7c,0x14,0xef,0xf6,0xd1,0x81,0xea,0x25,0x7c,0xc, 0xe0,0xa, 0x33,0xa1,0xe0,0x1, -0x14,0xff,0xef,0xf6,0xd1,0xb1,0xe0,0x0, 0x21,0x63,0xf0,0x0, 0x1d,0x24,0xe2,0x0, -0x79,0x95,0xf0,0x0, 0x14,0x0, 0xf0,0x0, 0x15,0x85,0xe8,0x40,0x3f,0xe8,0xe2,0x1, -0xc7,0xff,0x39,0x7f,0x5, 0xab,0xe0,0x0, 0x1f,0x87,0x14,0x80,0x0, 0x83,0xc4,0x81, -0xc7,0x82,0x3f,0x69,0xe2,0x1, 0xc7,0x7f,0x3b,0x7e,0x5, 0x9c,0xe0,0x40,0x8e,0x9f, -0xe0,0x40,0x8f,0x13,0x3e,0xfe,0x1, 0xf4,0x8e,0x8f,0x8f,0x3, 0x3e,0xfe,0x1, 0xf0, -0xe4,0x0, 0xc4,0x85,0xe8,0x40,0x3c,0x68,0xe4,0x0, 0xc4,0x5, 0xe0,0x2, 0xc4,0xca, -0xe2,0x1, 0x7f,0xc, 0xe8,0x40,0x3d,0x6b,0xe8,0x9, 0x3c,0x9a,0x3c,0x1e,0xef,0xf6, -0xd1,0x43,0xf0,0x0, 0xc4,0x1, 0xc1,0x82,0x0, 0xd1,0x3d,0x62,0xe4,0x0, 0xc5,0x5, -0x3c,0xe0,0xe0,0x0, 0x1c,0x6, 0xe0,0x1, 0xc4,0x8c,0xef,0xf6,0xd1,0x35,0xe0,0x3, -0x31,0x21,0xe0,0x0, 0x1c,0xb, 0x3d,0x63,0xe2,0x0, 0x7c,0x94,0xef,0xf6,0xd1,0x2c, -0xeb,0x84,0x7f,0xe8,0xe9,0xff,0xc7,0xfe,0xa4,0xf, 0x3d,0x63,0xe2,0x0, 0x7c,0x94, -0x11,0x80,0x13,0x1, 0xef,0xf6,0xd1,0x20,0x3c,0x63,0x3c,0xe6,0xdc,0x77,0x3f,0xe3, -0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0x39,0x73,0x1, 0xf7,0x3b,0xf2,0xa9,0x5, -0x4, 0x87,0xa9,0x4, 0xe0,0x2, 0xc0,0x20,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xab,0x84, -0x0, 0xfa,0x8, 0xb2,0xef,0xfc,0xde,0xd0,0x24,0x4, 0x9, 0x21,0xe7,0xfc,0x0, 0xf9, -0xe0,0x4, 0x19,0x67,0x8c,0x2, 0xef,0xfc,0xde,0xea,0x24,0xd, 0x8c,0x2, 0xef,0xfc, -0xde,0xca,0x24,0x9, 0xe0,0x2, 0x1f,0xed,0xe0,0x0, 0x1c,0xa4,0xa4,0xf, 0x9, 0x21, -0xe7,0xfc,0x0, 0xc3,0x9, 0x61,0x8, 0xb6,0x3a,0x68,0x3a,0xe9,0xdc,0x64,0xe6,0x4e, -0xc9,0x88,0xe0,0x0, 0x14,0x78,0xe0,0x23,0x39,0xd8,0xc4,0x6c,0xe0,0x23,0x39,0xe8, -0xe0,0x43,0x39,0x93,0xe0,0x0, 0x22,0x44,0x3f,0xe4,0xc7,0xff,0x3c,0x6f,0x3c,0xe5, -0xe2,0x1, 0xc4,0x7f,0xdc,0x50,0xe0,0x22,0x39,0x98,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8f,0x4f,0x3b,0x6f,0xc7,0x7f,0x3a,0x7e,0x3, 0xf, 0x3f,0xe4,0xc7,0x81,0x3c,0x6f, -0x3c,0xe5,0xe2,0x1, 0xc4,0x7f,0xdc,0x3f,0x3c,0x73,0x3, 0x6, 0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe0,0xe, 0x8f,0xd6,0xc7,0xff,0x3a,0xff,0x3, 0xf, -0x3f,0xe5,0xc7,0x81,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0x3c,0x64,0xdc,0x2c,0x3c,0x73, -0x3, 0x6, 0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x22,0x8e,0x3c,0xe5, -0xc4,0xff,0xe2,0x1, 0xc4,0xff,0x3c,0x64,0xdc,0x1e,0x3c,0x73,0x3, 0x6, 0x3f,0xe2, -0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x3c,0x62,0xb, 0x61,0x39,0x64,0x0, 0xc6, -0x8, 0xb7,0xc0,0x74,0xe0,0x2, 0x1a,0xb1,0x3b,0xe9,0x3a,0x68,0x39,0x6a,0x14,0x80, -0x15,0xc, 0xe2,0x0, 0x7c,0x4, 0x39,0xeb,0xef,0xf6,0xd0,0xc6,0xe0,0xe, 0x8b,0x55, -0x3b,0x77,0x5, 0xa5,0x3c,0x62,0xef,0xfc,0xde,0x72,0x24,0x21,0x3c,0xe2,0xe4,0x0, -0xc4,0xbe,0xe0,0x2, 0x1f,0x78,0xe0,0xf, 0x3c,0x97,0x3e,0xef,0xe0,0x1, 0xc6,0xba, -0x36,0xa1,0x3e,0x9e,0x9e,0x8d,0x76,0x82,0x23,0x87,0xe0,0x1, 0xc7,0xb9,0x37,0xa1, -0x3f,0x9e,0x9f,0x8f,0x77,0x83,0x3f,0xe6,0xc7,0xff,0x3b,0xff,0x3, 0x8, 0x3c,0x97, -0xe0,0x1, 0xc4,0xbb,0x34,0xa1,0x3c,0x9e,0x9f,0x89,0x77,0x84,0x3c,0x62,0xef,0xfc, -0xde,0x32,0x24,0x26,0xe0,0xe, 0x8e,0x45,0x3e,0x74,0x5, 0xa2,0xe4,0x0, 0xc1,0x3e, -0x3b,0x14,0xe0,0xf, 0x39,0x16,0x3e,0xef,0xe0,0x2, 0x1f,0x78,0xe0,0x1, 0xc6,0xba, -0x36,0xa1,0x3e,0x9e,0x9e,0x8d,0xe2,0x0, 0xca,0x1, 0x76,0x85,0x5, 0x87,0xe0,0x1, -0xc7,0xb9,0x37,0xa1,0x3f,0x9e,0x9f,0x8f,0x77,0x86,0xc6,0x7e,0x3a,0x7c,0x3, 0x8, -0x39,0x16,0xe0,0x1, 0xc1,0x3b,0x31,0x21,0x39,0x1e,0x9f,0x82,0x77,0x87,0x3f,0xe0, -0x3f,0x60,0xc7,0x84,0xc7,0x10,0x21,0x8a,0x14,0x0, 0xe1,0x80,0x96,0x9f,0x3f,0xfe, -0xe0,0x28,0x3e,0xd8,0x1, 0xfb,0xc0,0xc, 0xb, 0xe1,0x3c,0x63,0xe1,0x80,0x96,0x9f, -0x3f,0x7f,0xe0,0x28,0x3e,0xe8,0x1, 0xfb,0x0, 0xf7,0x8, 0xb1,0xe0,0x0, 0x1e,0xa4, -0xe0,0xf, 0x34,0x21,0x3f,0x9d,0xe0,0x2, 0xc7,0x8f,0x8d,0xf, 0xe0,0x0, 0x1f,0xa5, -0x17,0x0, 0x8d,0x8f,0x14,0xfe,0x10,0x82,0x3f,0xee,0xe2,0x1, 0xc7,0xff,0x3d,0xff, -0x2, 0x83,0x14,0x0, 0x8, 0xe1,0x3f,0xf8,0x1, 0x11,0xe0,0xf, 0x37,0x21,0xe0,0x2, -0xc7,0x8f,0x3f,0x9d,0x8f,0x8f,0xe0,0xc, 0x3f,0xaa,0xe0,0x43,0x3f,0x9c,0xe2,0x0, -0xcf,0x80,0x5, 0x6, 0xe0,0x2f,0x38,0xac,0x2f,0x86,0xc7,0x1, 0x0, 0xe6,0xe0,0x2f, -0x3f,0xa9,0x0, 0xfb,0x14,0x1, 0x0, 0xe7,0x8, 0xb7,0xf8,0x0, 0xc, 0x3c,0xe0,0x0, -0x19,0xa5,0x8f,0x83,0xe2,0x0, 0xcf,0x81,0x2, 0xb8,0xf8,0x0, 0xe, 0x28,0xb, 0xe1, -0x3f,0xe2,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x94,0xf0,0x0, 0x8d,0x2f,0xe0,0xf, -0x31,0x21,0x3f,0x94,0xe0,0x2, 0xc7,0x8f,0x3d,0xe5,0x3d,0x66,0x3c,0xe7,0xe8,0x40, -0x3c,0x6a,0xf0,0x0, 0x8d,0x8f,0xdf,0x3d,0xf0,0x40,0x3e,0x68,0x3c,0x62,0xdf,0xae, -0x24,0x13,0xf2,0x0, 0xce,0x4f,0x2, 0x10,0xe8,0x40,0x3c,0xeb,0xe8,0x40,0x3c,0x6a, -0xdb,0x42,0xe8,0x0, 0x97,0x88,0x37,0xa2,0xe8,0x2f,0x3f,0xb9,0x3c,0x7f,0x3, 0x4, -0x3c,0xe5,0x3c,0x62,0xdb,0x1b,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0x8f,0x83,0x3f,0xf2,0x2, 0xce,0x0, 0xca,0x11,0x0, 0xe0,0x0, 0x1a,0x24,0x3a,0xe2, -0x13,0x1, 0xe0,0x1, 0x13,0xff,0xf0,0x0, 0x1c,0x18,0xf0,0x0, 0x14,0x8a,0x0, 0xf1, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x58,0xe0,0x3, 0x1b,0x2a,0xe0,0x0, 0x1f,0x98, -0x8f,0x6, 0x91,0xf, 0x27,0x3e,0xe4,0x0, 0xc1,0x7, 0xe2,0x0, 0xc9,0x0, 0x3, 0x2, -0xc1,0x7, 0xe6,0xcd,0xc9,0x2, 0xe0,0x3, 0x17,0xf4,0xf0,0x0, 0x1d,0xa4,0x12,0x0, -0xe1,0x22,0x39,0x6f,0xf0,0x2, 0x1f,0x31,0xe3,0xff,0xc1,0x7f,0x3a,0xe4,0x39,0xe4, -0xe8,0x40,0x3b,0xeb,0xf7,0xfe,0x14,0x6a,0xe0,0x0, 0x1f,0xa5,0x8f,0xf, 0x3f,0x73, -0x2, 0xa7,0x8f,0x86,0x27,0x83,0xc7,0xff,0xaf,0x86,0xe0,0x3, 0x1f,0x8e,0x8f,0x8f, -0x27,0x90,0xe2,0x0, 0xcf,0x1, 0x5, 0x8d,0xe0,0x3, 0x1f,0xea,0x8f,0x8f,0x3f,0xfe, -0x3, 0x88,0xe0,0x0, 0x1f,0x18,0x97,0x8e,0xe2,0x6, 0xcf,0x9f,0xe0,0x1, 0x2, 0x7d, -0xe0,0x2, 0x22,0x3, 0xc0,0x28,0xf8,0x0, 0xf, 0x28,0xb, 0xa1,0xe7,0xf7,0x0, 0xb7, -0x31,0x21,0x17,0x83,0xe0,0x22,0x39,0x3f,0xe3,0xff,0xc1,0x7f,0x0, 0xc5,0x3f,0xe3, -0xe0,0x1, 0xc7,0x86,0x37,0xa1,0xe8,0xf, 0x3f,0x9b,0xf0,0x0, 0x8e,0x2f,0xe0,0xf, -0x31,0xa1,0xe8,0xf, 0x3f,0x9b,0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8e,0x8f,0xe8,0x40, -0x3c,0x6c,0xe8,0x40,0x3c,0xed,0xda,0xbf,0x3c,0x72,0x4, 0xa, 0xe2,0x0, 0x7e,0x8c, -0x3e,0x95,0xa9,0x8d,0x3e,0xe5,0xc6,0x81,0x3a,0xed,0xe2,0x1, 0xc2,0xff,0xf0,0x0, -0x26,0x67,0xf8,0xe, 0x8c,0xce,0xf1,0xff,0xc4,0xff,0xf8,0x40,0x3e,0x79,0xe0,0x0, -0x1, 0x5f,0xf0,0x0, 0x26,0xdd,0xf8,0xe, 0x8d,0x5e,0xf1,0xff,0xc5,0x7f,0xf8,0x40, -0x3e,0xfa,0xe0,0x0, 0x1, 0x55,0xe8,0x40,0x3e,0xec,0xc6,0xff,0x3c,0x6d,0xe8,0x40, -0x3c,0xed,0xe2,0x1, 0xc4,0x7f,0xda,0x97,0xf8,0x40,0x3e,0x79,0x7c,0x2, 0xe0,0x0, -0x3, 0x4e,0xe8,0x40,0x3e,0xec,0xc6,0x81,0x3c,0x6d,0xe8,0x40,0x3c,0xed,0xe2,0x1, -0xc4,0x7f,0xda,0x89,0xf0,0x40,0x3c,0xe8,0xe8,0x40,0x3e,0xed,0xc6,0xff,0x3c,0xed, -0xe2,0x1, 0xc4,0xff,0xe8,0x40,0x3c,0x6c,0xda,0x7e,0xf8,0x40,0x3e,0xfa,0x3e,0xe8, -0x3, 0x39,0xe8,0x40,0x3f,0xed,0xc7,0x81,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0xe8,0x40, -0x3c,0x6c,0x7e,0x81,0xda,0x70,0x66,0x81,0x67,0x2, 0xf0,0x3c,0x3c,0x1e,0xf0,0x0, -0x26,0x6, 0xf8,0x39,0x3c,0x19,0xf0,0x0, 0x2c,0x88,0xf0,0x2d,0x3c,0x1d,0x26,0x97, -0xf0,0x28,0x3c,0x18,0x24,0x14,0x14,0x80,0x3c,0x63,0xda,0x40,0xe0,0x3, 0x1f,0xc3, -0x8f,0xf, 0xe2,0x0, 0xcf,0x3, 0x2, 0x83,0x17,0x4, 0xaf,0xf, 0x17,0xb2,0xaf,0x86, -0xe7,0xff,0x17,0x16,0xe0,0x3, 0x1f,0x8e,0x12,0x1, 0xaf,0xf, 0x3f,0xe3,0xc7,0x81, -0x39,0xef,0xe2,0x1, 0xc1,0xff,0xe7,0xfe,0x0, 0xc9,0xf0,0x0, 0x14,0x80,0xe7,0xff, -0x0, 0xbd,0x14,0x0, 0x0, 0xd2,0xf0,0xf, 0x35,0x21,0x3f,0x97,0xe0,0x2, 0xc7,0x8f, -0x8b,0xf, 0xe8,0x40,0x3f,0xea,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x97,0x8c,0x2f, -0x3c,0xe6,0xda,0x31,0x3c,0x72,0xf0,0x40,0x3e,0x68,0x3, 0x2b,0xf0,0x40,0x3e,0xe0, -0xf0,0x0, 0xc6,0x8c,0xf0,0x0, 0x15,0x80,0xf0,0x40,0x3d,0xf5,0x1, 0x22,0xe9,0x80, -0x8f,0x9d,0xe0,0xe, 0x37,0xa1,0x3f,0x17,0xe0,0x2, 0xc7,0xf, 0x8c,0x8e,0xe0,0xd, -0x3b,0x29,0xe0,0x43,0x3f,0x1d,0xe2,0x0, 0xcf,0x0, 0x5, 0x23,0xe0,0x2e,0x39,0xad, -0x27,0x23,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x97,0x8c,0x2f,0xda,0xc, 0xe8,0x40, -0x3c,0x7c,0x5, 0x1a,0xe8,0x40,0x3c,0xe9,0xe8,0x40,0x3c,0x6a,0xd9,0xe7,0x3a,0x63, -0xe8,0x40,0x3f,0xea,0xc7,0x81,0xf0,0x40,0x3d,0x6f,0xf2,0x1, 0xc5,0x7f,0xe0,0x0, -0x1f,0x25,0x8f,0x8e,0xe8,0x40,0x3f,0xfa,0xe7,0xff,0x2, 0xb7,0xe7,0xfe,0x0, 0x92, -0xe8,0x2e,0x3f,0x28,0x0, 0xde,0xe8,0x40,0x3f,0xeb,0xc7,0x81,0xf0,0x40,0x3d,0xef, -0xf2,0x1, 0xc5,0xff,0x0, 0xc2,0xf0,0x0, 0x15,0x0, 0xf7,0xff,0x14,0x7f,0x11,0x81, -0xf8,0x40,0x3c,0xea,0x0, 0xe5,0xc0,0x28,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe0,0x3, -0x1f,0x80,0x17,0x0, 0xaf,0xf, 0xe0,0x3, 0x1f,0x4e,0xe0,0xa, 0x8f,0xe, 0xe0,0x0, -0x27,0x44,0x8, 0xb7,0xf8,0x0, 0xc, 0x3a,0x39,0xef,0xe0,0x4, 0x1f,0xb4,0x17,0x0, -0x8a,0x6f,0x8a,0xff,0xe0,0x0, 0x1b,0x24,0xe0,0x0, 0x1b,0xa5,0x39,0x6e,0xf0,0x0, -0x14,0x1, 0xf0,0x40,0x3c,0xee,0xf0,0x0, 0x15,0x1, 0xc2,0x7f,0xc2,0xff,0x8f,0x87, -0x3f,0xf2,0x2, 0x87,0x27,0x26,0xf8,0x0, 0xd, 0x28,0xb, 0xa1,0xe7,0xf5,0x0, 0x8f, -0x3f,0xe2,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x96,0x8f,0xaf,0x27,0x8c,0x3a,0x7f, -0x5, 0xa, 0xe0,0xf, 0x31,0x21,0x3f,0x96,0xe0,0x2, 0xc7,0x8f,0x8f,0x8f,0x27,0x83, -0x3a,0xff,0x2, 0x9, 0xe8,0x40,0x3c,0xe9,0x3c,0x62,0xf0,0x0, 0xac,0x3, 0xd9,0x7e, -0xe8,0x40,0x3f,0x6a,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xd8, -0xf8,0x0, 0xd, 0x28,0xb, 0xe1,0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x78, -0xe0,0x5, 0x1f,0x92,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x86,0x14,0x0, 0xef,0xf6, -0xda,0x5a,0xef,0xf7,0xd3,0x4d,0xef,0xfc,0xdb,0xcf,0xe0,0x0, 0x1a,0xa5,0x24,0x18, -0xef,0xfe,0xdc,0xed,0xda,0x53,0xda,0x52,0xda,0x51,0xe0,0x1, 0xde,0xd4,0xda,0x4e, -0xde,0x4, 0xda,0x4c,0xde,0x4e,0xda,0x4a,0xe0,0x0, 0xda,0x81,0xda,0x47,0x8f,0x85, -0xe2,0x0, 0xcf,0x84,0xe0,0x1, 0x2, 0x80,0xef,0xff,0xd6,0x6a,0xda,0x3f,0xda,0x3e, -0xdc,0xe1,0xe0,0x1, 0xd3,0x5e,0xe0,0x3, 0x1f,0xea,0x8f,0x5, 0x8f,0x8f,0x3f,0x7f, -0xe0,0x1, 0x5, 0xbb,0xe0,0x1, 0x27,0xb9,0xe0,0x4, 0x1f,0xec,0x8f,0x8f,0xe2,0x0, -0xcf,0x82,0xe0,0x1, 0x1, 0xb2,0xf0,0x0, 0x15,0x0, 0xe8,0x40,0x39,0xea,0xe0,0x0, -0x1a,0x24,0xe8,0x40,0x3b,0x6a,0x13,0x83,0xf0,0x2, 0x1c,0x31,0xf0,0x0, 0x14,0x81, -0xe0,0x1, 0x0, 0x96,0x3f,0xe2,0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x96,0xf0,0x0, -0x8e,0xaf,0xe0,0xf, 0x31,0x21,0x3f,0x96,0xe0,0x2, 0xc7,0x8f,0x8c,0x8f,0xe8,0x40, -0x3c,0x6d,0xd9,0x31,0xe0,0x0, 0x1e,0x8b,0x3e,0x68,0x39,0xe8,0x12,0x0, 0xe8,0x40, -0x3a,0x7c,0x1, 0x9c,0xe8,0x23,0x39,0xb9,0xe0,0x43,0x39,0x93,0x3e,0x73,0x3, 0x7, -0xe8,0x40,0x3c,0xea,0x3c,0x62,0xd9,0x2, 0xe8,0x40,0x3b,0xeb,0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xf0,0x0, 0x8e,0x5, 0xe8,0x40,0x39,0x7c,0x4, 0xd3, -0xe7,0xff,0x23,0xac,0xd9,0xeb,0xe7,0xff,0x0, 0xa9,0x39,0x74,0x1, 0x19,0xf0,0x0, -0x8f,0xd, 0x8c,0x9d,0xe8,0x40,0x3c,0x6e,0x7e,0x81,0xf8,0x1e,0x3e,0xae,0x7e,0x2, -0xd9,0x2, 0xe8,0x43,0x3f,0x9e,0xe2,0x0, 0xcf,0x80,0x66,0x81,0x66,0x2, 0x5, 0xf, -0xf8,0x2f,0x3c,0x2e,0x27,0x85,0xe0,0x23,0x3c,0x63,0xe0,0x43,0x39,0x93,0x3f,0xe4, -0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xc6,0x82,0x0, 0xc2,0x17,0x7e,0xe0,0x2f, -0x3f,0xae,0x0, 0xf1,0x13,0x80,0x39,0x67,0xe0,0x0, 0x1b,0x24,0xf0,0x0, 0x14,0x2, -0xf0,0x0, 0x14,0x83,0xf0,0x40,0x3d,0x67,0xf0,0x0, 0x15,0x81,0x0, 0xc5,0x3f,0xe3, -0xe0,0x1, 0xc7,0x86,0x37,0xa1,0x3f,0x94,0xf0,0x0, 0x8d,0xaf,0xe0,0xf, 0x31,0xa1, -0x3f,0x94,0xe0,0x2, 0xc7,0x8f,0x89,0xf, 0xe8,0x40,0x3c,0x6b,0x3c,0xe2,0xdc,0x64, -0xf0,0x2f,0x3d,0x86,0x2f,0xa7,0xe0,0x2f,0x39,0xf, 0x2f,0xa4,0xe8,0xe, 0x8f,0xc8, -0xc7,0xff,0xf0,0x40,0x3d,0xff,0x1, 0x1e,0xe8,0xe, 0x8f,0xd8,0xc7,0xff,0xe1,0x22, -0x39,0xf, 0xc1,0x3, 0x3c,0x72,0x4, 0x6, 0x3c,0xe6,0x3c,0x63,0xd8,0x97,0xf8,0x40, -0x3d,0x69,0x3f,0xe3,0xc7,0x81,0x39,0xef,0xe2,0x1, 0xc1,0xff,0x8f,0x85,0x3f,0xf3, -0x2, 0xcf,0xf0,0x0, 0x25,0xa, 0xc0,0x8, 0xf8,0x0, 0xf, 0x28,0xb, 0xa1,0xe7,0xf2, -0x0, 0xfe,0x39,0x67,0x0, 0xe8,0xc0,0x8, 0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3a,0x17,0x81,0x3f,0xab,0x3a,0xef,0xe0,0x4, 0x1f,0xb4,0xe2,0x1, -0xc2,0xff,0x8f,0x5f,0x8f,0xcf,0x13,0x80,0x3f,0xbb,0xf0,0x40,0x3d,0x69,0xe0,0xaf, -0x3a,0x8e,0xf0,0x40,0x3c,0xe8,0x3a,0x6f,0xe0,0xf, 0x3a,0xba,0x3d,0x3b,0x3b,0x6f, -0x39,0x6a,0xf0,0x40,0x3c,0x6b,0xe2,0x1, 0xc2,0x7f,0xe2,0x1, 0xc3,0x7f,0xe2,0x1, -0xc1,0x7f,0x39,0xe7,0xf0,0x0, 0xc5,0x2, 0x3f,0xe7,0xe2,0x1, 0xc7,0xff,0x3a,0x7f, -0x2, 0x89,0xe2,0x0, 0xc9,0xb1,0x2, 0x2, 0x11,0x80,0x3c,0x63,0xf8,0x0, 0xd, 0x28, -0xb, 0xe1,0x3f,0xe7,0xc7,0x82,0xf0,0x40,0x3c,0xff,0x2, 0x4, 0xf0,0x40,0x3d,0x77, -0x3, 0x8, 0x3c,0xe2,0x3c,0x66,0xd8,0x5f,0xe0,0x23,0x39,0xe8,0xe0,0x43,0x39,0x93, -0xf0,0xf, 0x3c,0x16,0x3b,0x6f,0xe0,0xf, 0x3a,0x92,0x39,0x6f,0xc3,0x81,0xe2,0x1, -0xc3,0x7f,0xe2,0x1, 0xc1,0x7f,0x0, 0xd9,0x8, 0xb6,0x3a,0xe8,0x3a,0x69,0x39,0xea, -0x3b,0x6b,0xd8,0x49,0x39,0x68,0xe0,0x0, 0x21,0xd4,0xe0,0x0, 0x22,0xcf,0x3f,0xe5, -0xc7,0xff,0x3c,0x6f,0x3c,0xe4,0xe2,0x1, 0xc4,0x7f,0xd8,0x3d,0x39,0x18,0xe0,0x43, -0x39,0x12,0x11,0x82,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0xcf,0xc7,0xff,0x3a,0xff, -0x3, 0x10,0x3f,0xe5,0xc7,0x81,0x3c,0x6f,0x3c,0xe4,0xe2,0x1, 0xc4,0x7f,0xd8,0x2b, -0x3f,0xe3,0xc7,0x81,0x39,0x18,0x39,0xef,0xe0,0x43,0x39,0x12,0xe2,0x1, 0xc1,0xff, -0x23,0x27,0x22,0x10,0x3f,0xe4,0xc7,0xff,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0x3c,0x65, -0xd8,0x1a,0x3f,0xe3,0xc7,0x81,0x39,0x18,0x39,0xef,0xe0,0x43,0x39,0x12,0xe2,0x1, -0xc1,0xff,0xe0,0x2, 0x1f,0xb1,0xe0,0xe, 0x8f,0xdf,0xc7,0xff,0x3a,0x7f,0x3, 0x10, -0xc2,0x1, 0x3c,0xe4,0xe2,0x1, 0xc4,0xff,0x3c,0x65,0xd8,0x5, 0x3f,0xe3,0x34,0x2, -0xc7,0x81,0x3c,0x12,0x39,0xef,0xe0,0x43,0x39,0x18,0xe2,0x1, 0xc1,0xff,0xe0,0x28, -0x39,0x33,0xe0,0x43,0x3c,0x18,0xb, 0x61,0x11,0x81,0xe7,0xff,0x0, 0xbd,0x11,0x81, -0x0, 0xd0,0xe0,0x3, 0x1f,0xea,0x8f,0x8f,0xe0,0x0, 0x27,0xe3,0xe0,0x0, 0x1f,0x25, -0xe0,0x0, 0x1f,0xa4,0x8f,0xe, 0x3f,0x78,0xe0,0x0, 0x5, 0xdb,0x8, 0xb3,0x3f,0x68, -0xe0,0x1, 0xc7,0x6, 0x34,0x21,0x37,0x21,0x3f,0x1f,0x3f,0x98,0xe0,0x2, 0xc7,0x8f, -0x8c,0x8f,0xe0,0x1, 0x1f,0xf8,0x8d,0x2e,0xe0,0x1, 0x14,0x7f,0x89,0x8f,0xe0,0x4, -0x1f,0x39,0x38,0xe8,0x15,0x80,0x11,0x7, 0x39,0xfb,0x1, 0x82,0x9, 0xe1,0x8f,0x8e, -0xe2,0x1, 0xcf,0xff,0x1, 0x30,0x8f,0xbe,0x3f,0xfa,0x4, 0xad,0x8f,0xde,0x3f,0xfa, -0x2, 0xaa,0x8f,0xce,0x3f,0xf9,0x4, 0xa7,0x8f,0xee,0x3f,0xf9,0x2, 0xa4,0x8e,0x9e, -0xe0,0xf, 0x3d,0x2d,0xe2,0x0, 0xcf,0x80,0x5, 0x25,0x8e,0xae,0xe2,0x1, 0xc7,0xff, -0xe0,0xc, 0x3c,0xad,0xe2,0x0, 0xce,0x0, 0x5, 0x20,0xe1,0x2d,0x39,0x2f,0xe2,0x1, -0xc6,0x7f,0x26,0x91,0xe1,0x2d,0x39,0x2c,0x26,0x8e,0xe1,0x2d,0x3f,0xec,0x36,0xa4, -0xe1,0x2f,0x3f,0xdc,0x3f,0x9d,0xe2,0x1, 0xc7,0xff,0x38,0xff,0x5, 0x84,0x3c,0x6b, -0x27,0xce,0x38,0xef,0x3f,0xeb,0xc7,0x81,0x3d,0xef,0xe2,0x1, 0xc5,0xff,0xc7,0x7, -0x0, 0xc4,0xe0,0xf, 0x3e,0xaa,0x0, 0xda,0x3e,0xa9,0x3e,0x6d,0x0, 0xdf,0xe0,0x1, -0x14,0x7f,0x38,0x82,0xe0,0x3, 0x1f,0x9e,0x8f,0x8f,0x27,0x8f,0xe0,0x3, 0x1f,0x42, -0x3f,0x9e,0x8f,0xf, 0xc7,0x1, 0xaf,0xf, 0xea,0x25,0x7f,0xcc,0x3c,0x9f,0x8f,0x9, -0x3c,0x1f,0x8e,0x88,0x2f,0x3, 0xae,0x89,0x38,0x82,0xe1,0x2d,0x3f,0x5d,0x17,0x0, -0x3f,0x7a,0x1, 0x7b,0x8e,0xf, 0x8d,0x89,0x3d,0xfc,0x1, 0x4, 0x8d,0x88,0x3d,0xfc, -0x1, 0x82,0xae,0x8f,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xc7,0x81,0x0, 0xf2,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3e,0xc0,0x54,0x3d,0xf9,0xf0,0x40,0x3e,0x68,0xf0,0x40,0x3e,0xe9, -0xf0,0x40,0x3f,0x6a,0xe1,0x2f,0x3d,0x58,0xe1,0x22,0x3d,0x68,0xe1,0x23,0x3d,0xd9, -0xe1,0x24,0x3d,0xe9,0xe0,0x0, 0x4, 0xd4,0xe1,0x3a,0x3f,0xa8,0x16,0x1, 0xe0,0x0, -0x27,0xd4,0x3f,0x6f,0xc7,0x7f,0x3b,0x6e,0xe2,0x1, 0xc3,0x7f,0xe0,0x2, 0x1f,0x31, -0xe0,0xe, 0x8d,0x4e,0xc5,0x7f,0x39,0x7a,0xe0,0x0, 0x3, 0x4a,0x3d,0x62,0xc5,0x1, -0x3b,0xea,0xe2,0x1, 0xc3,0xff,0xe0,0xe, 0x8f,0x5e,0xc7,0x7f,0x3a,0x7e,0x3, 0x6, -0x3f,0x64,0xc7,0x1, 0x3a,0x6e,0xe2,0x1, 0xc2,0x7f,0xf2,0x0, 0xcd,0x0, 0x12,0x80, -0xe0,0x6f,0x39,0x22,0xf0,0x40,0x3a,0xec,0x39,0x6f,0x3d,0x65,0xf7,0xff,0x14,0xff, -0xf0,0x1, 0x13,0xff,0xf7,0x0, 0x13,0x1, 0xf4,0x0, 0xca,0x81,0x3e,0xec,0x3f,0xe3, -0xc7,0x81,0x3f,0xf4,0xf0,0x0, 0x25,0x35,0x3, 0x25,0x69,0x24,0x6f,0xa5,0x3b,0xf2, -0x5, 0xa4,0x3f,0x62,0xc7,0x1, 0x6f,0x28,0x69,0xa9,0xe1,0x2e,0x3b,0x92,0x27,0x20, -0xe1,0x2e,0x3a,0x13,0x27,0x1d,0xe2,0x0, 0x7f,0xac,0x17,0x1, 0x3f,0x12,0xe1,0xc1, -0xaf,0xf, 0x3f,0x63,0xc7,0x1, 0xe0,0x1, 0xaf,0x1f,0x0, 0xb1,0xe1,0x3a,0x3f,0xaa, -0x16,0x0, 0xe7,0xff,0x0, 0xae,0x3b,0x6f,0xe7,0xff,0x0, 0xb2,0x3b,0xe2,0xe7,0xff, -0x0, 0xbc,0xf0,0x0, 0x74,0x92,0x0, 0xdc,0xf0,0x0, 0x74,0x94,0x0, 0xdf,0x3b,0xf2, -0x2, 0x9c,0x3f,0xf4,0x3, 0x1a,0xe2,0x0, 0x7f,0xac,0x17,0x7f,0x0, 0xe0,0xe0,0x0, -0x3, 0x7d,0x69,0x24,0x6f,0xa5,0xe1,0x2e,0x39,0xa, 0xe0,0x0, 0x27,0x7b,0xe1,0x2e, -0x39,0x16,0xe0,0x0, 0x27,0x77,0x3f,0xe2,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0x3a,0x73, -0x6f,0xa8,0x69,0xa9,0xe0,0x0, 0x2, 0xfc,0xf0,0x0, 0x74,0x96,0x3f,0x60,0xc7,0x24, -0xf8,0x40,0x3d,0xe7,0xe8,0x40,0x3e,0x66,0xf0,0x0, 0x14,0x0, 0x8c,0xe, 0xe2,0x1, -0xcc,0x7f,0x1, 0x22,0x8c,0x9e,0xe2,0x1, 0xcc,0xff,0x1, 0x1e,0x7e,0x81,0xf0,0x0, -0x7a,0x82,0xf0,0x0, 0x7b,0x3, 0xf0,0x0, 0x7b,0x84,0x7d,0x5, 0x7d,0x86,0x7e,0x7, -0x7f,0x8, 0xef,0xff,0xd6,0xb1,0x66,0x7, 0x66,0x81,0x3c,0x7c,0xf0,0x0, 0x62,0x82, -0xf0,0x0, 0x63,0x3, 0xf0,0x0, 0x63,0x84,0x65,0x5, 0x65,0x86,0x67,0x8, 0x5, 0x4, -0xf8,0x40,0x3d,0xe8,0x3e,0x68,0xe8,0x40,0x3f,0xe8,0xc7,0x81,0xf0,0x40,0x3c,0x6f, -0xf2,0x1, 0xc4,0x7f,0xf2,0x0, 0xcc,0x3, 0xc7,0x4, 0x1, 0xd1,0xe2,0x0, 0xce,0x31, -0xe0,0x0, 0x5, 0x44,0xf2,0x1, 0xcd,0xff,0x1, 0x1e,0xe2,0x0, 0x7f,0xa4,0xf0,0x1b, -0x35,0xa2,0xf0,0x1b,0x3d,0x9f,0xe8,0x0, 0x89,0xb, 0x3f,0xe5,0xc7,0x81,0x3a,0xef, -0xe9,0x2f,0x39,0x2e,0xe8,0x0, 0x89,0x9b,0xe2,0x1, 0xc2,0xff,0x27,0x84,0x26,0x83, -0x3d,0xf3,0x5, 0x8d,0xf0,0x0, 0x22,0x88,0xf1,0x2f,0x3e,0x22,0x27,0x84,0xf0,0x40, -0x3e,0xf3,0x5, 0x85,0xe2,0x0, 0xca,0x8f,0xe7,0xfe,0x1, 0xd3,0xe0,0x43,0x3c,0x15, -0xc0,0x2c,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xf0,0x0, 0x74,0x92,0xe7,0xff,0x0, 0x85, -0x3b,0x72,0xf0,0x0, 0x74,0x94,0xe7,0xff,0x1, 0x91,0x3f,0xf4,0xe7,0xff,0x3, 0xe, -0x3f,0x66,0xe2,0x0, 0x7f,0xac,0xc7,0x1, 0xe7,0xfe,0x0, 0xd3,0x6f,0xac,0x3f,0xe3, -0xc7,0x81,0x6f,0xad,0xe7,0xff,0x0, 0x84,0x12,0x90,0x0, 0xe1,0x8, 0xb7,0xe0,0x3, -0x1f,0xea,0x8f,0x8f,0xe2,0x0, 0xcf,0x82,0xe0,0x0, 0x1, 0xdb,0xe0,0xf, 0x3c,0xa8, -0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xe2,0x0, 0xcf,0x2, 0xe0,0xf, 0x3d,0xaa,0x39,0x68, -0x3b,0x69,0x3a,0xea,0x3b,0xeb,0xe2,0x1, 0xc7,0xff,0x2, 0x85,0x3e,0xee,0xc6,0x81, -0x3e,0xff,0x4, 0x2d,0xe2,0x0, 0xcf,0x82,0xe0,0x0, 0x2, 0xc3,0xc7,0x81,0x3f,0xfe, -0x3, 0x3f,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe0,0xff,0x11,0xff, -0x39,0x76,0x3, 0x8f,0x3a,0x65,0x0, 0xac,0x3a,0x65,0xe2,0x1, 0xc2,0x7f,0x3b,0xf4, -0x2, 0x8a,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x3b,0x72,0x3, 0xf5, -0x3c,0x63,0xb, 0xe1,0x3c,0xe4,0x3c,0x62,0xef,0xff,0xd6,0xe, 0x3f,0xe4,0xe0,0x23, -0x3c,0x53,0xc7,0x81,0xe0,0x43,0x39,0x93,0x3a,0x6f,0x0, 0xe8,0xe0,0xff,0x11,0xff, -0xc2,0x81,0x0, 0xed,0x3c,0xe4,0x3c,0x62,0xef,0xff,0xd5,0xfe,0x3f,0xe4,0xc7,0x81, -0xe0,0x23,0x39,0xd8,0x3a,0x6f,0xe0,0x43,0x39,0x93,0xe2,0x1, 0xc2,0x7f,0x3a,0x77, -0x5, 0xf2,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xca,0xe7,0xf8, -0x11,0x98,0x0, 0xd7,0xea,0x25,0x7e,0xc9,0x8e,0x8d,0xe0,0xf, 0x3c,0xa8,0x3f,0x6f, -0xe0,0xf, 0x3d,0xaa,0xe0,0x1, 0x26,0xa3,0xe0,0x3, 0x1e,0xea,0x8e,0x8d,0xe2,0x0, -0xce,0x82,0xe0,0x1, 0x5, 0x9c,0xe2,0x1, 0xc7,0x7f,0x16,0x84,0xe1,0x2c,0x3f,0x1d, -0xe0,0x1, 0x2e,0x15,0xe2,0x1, 0xc7,0xff,0xe1,0x2d,0x3f,0x9d,0xe0,0x1, 0x2e,0x8f, -0xe0,0x0, 0x1e,0x98,0x96,0x8d,0xe2,0x5, 0xce,0xbc,0xe0,0x1, 0x2, 0x8, 0x8, 0xb7, -0xf8,0x0, 0xc, 0x38,0x16,0x82,0xe1,0x2d,0x3f,0x6d,0x3e,0xff,0x3b,0x6b,0xf0,0x40, -0x3c,0x6a,0x3a,0xe9,0x39,0xe8,0x3, 0xbf,0xe0,0x3, 0x1e,0x9f,0x8e,0x8d,0xe2,0x0, -0xce,0x81,0x1, 0xb9,0xe0,0x4, 0x1e,0x82,0x8e,0x8d,0x2e,0xb5,0x3f,0xea,0xc7,0x81, -0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe0,0xff,0x11,0x7f,0x3a,0x76,0x4, 0xa8,0xe0,0xff, -0x13,0xff,0xe0,0x28,0x39,0x57,0xf8,0x0, 0xc, 0x28,0xb, 0xe1,0xe8,0x40,0x3c,0x68, -0x3c,0xe4,0xef,0xff,0xd5,0x99,0xe8,0x40,0x3f,0xe8,0xc7,0x81,0xf0,0x40,0x3c,0x6f, -0x3b,0x98,0xf2,0x1, 0xc4,0x7f,0xf0,0x40,0x3c,0x75,0xf0,0xf, 0x3c,0x23,0xe2,0x1, -0xc7,0xff,0x5, 0xed,0xe0,0x27,0x3b,0xbf,0x3f,0xe4,0xc7,0x81,0xe0,0x43,0x3b,0x97, -0x3a,0x6f,0xe0,0x22,0x3b,0xd2,0xe2,0x1, 0xc2,0x7f,0x0, 0xd8,0xf0,0x40,0x3c,0x63, -0x13,0x80,0x0, 0xea,0x16,0x82,0xe1,0x2f,0x3f,0xed,0x3f,0xfe,0x3, 0xba,0xe0,0x3, -0x1f,0x9f,0x8f,0x8f,0x2f,0xb6,0xe0,0x4, 0x1f,0x82,0x8f,0x8f,0xe2,0x0, 0xcf,0x81, -0x1, 0xb0,0xc1,0x81,0x39,0x63,0xe2,0x1, 0xc1,0x7f,0xe0,0xff,0x13,0xff,0x39,0x75, -0x4, 0xa1,0xe0,0xff,0x11,0x7f,0xe7,0xff,0x0, 0xbe,0x3c,0xe4,0x3c,0x62,0xef,0xff, -0xd5,0x5b,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0x39,0x98,0xe2,0x1, 0xc2,0x7f,0x3a,0x76, -0xe8,0xf, 0x3a,0x28,0xe2,0x1, 0xc7,0xff,0x5, 0xf1,0xe0,0x23,0x39,0xbf,0x3f,0xe2, -0xc7,0x81,0xe0,0x43,0x39,0x93,0x39,0x6f,0xe0,0x27,0x39,0xd7,0xe2,0x1, 0xc1,0x7f, -0x0, 0xdf,0xe8,0x40,0x3a,0x68,0x11,0x80,0x0, 0xeb,0xe7,0xf8,0x14,0x18,0x38,0x82, -0xe7,0xf8,0x14,0x18,0xe7,0xff,0x0, 0x99,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xe1,0xfd, -0xc0,0x28,0xe0,0x4, 0x1f,0xb4,0xe0,0x3, 0x1f,0x33,0x8e,0x4f,0x8f,0xdf,0xea,0x25, -0x79,0x4c,0x7f,0x93,0xe0,0x0, 0x1f,0xa5,0x14,0x80,0x8f,0x8f,0x7c,0x17,0x3c,0x62, -0x7f,0x8d,0x17,0x80,0xaf,0x8e,0xe0,0x3, 0x1f,0x41,0x7e,0x19,0xaf,0x8e,0xaf,0x9e, -0xe0,0x2, 0x1f,0xaa,0x89,0x8f,0x3d,0x63,0xef,0xf5,0xd9,0xd6,0xe0,0x2, 0x1c,0x41, -0xe0,0xa, 0x31,0xa1,0x14,0x80,0xef,0xf5,0xd9,0xcf,0x66,0x8d,0xe2,0x0, 0xce,0x81, -0xe0,0x0, 0x5, 0xcd,0xe0,0x0, 0x1f,0x5, 0xe0,0x3, 0x1f,0xc8,0xe2,0x1, 0x7e,0x14, -0xf0,0x0, 0x10,0x80,0xc6,0x2a,0xf0,0x0, 0x78,0x84,0x7f,0x87,0xf0,0x0, 0x78,0x8e, -0x7f,0xf, 0x79,0x11,0x7e,0x1a,0x67,0xf, 0x66,0x84,0xe0,0x40,0x8f,0xae,0xe2,0x1, -0xc6,0xff,0xf0,0x0, 0x60,0x84,0x7f,0x85,0x7e,0x96,0xf0,0x40,0x8e,0x3e,0xf0,0x0, -0x20,0x85,0x66,0x11,0x8f,0x8c,0x2f,0x85,0x67,0x96,0x66,0x91,0xc7,0x81,0xaf,0x8d, -0x67,0x8d,0x67,0x4, 0xc7,0xff,0x3f,0xfe,0x1, 0x21,0x67,0x8f,0xc7,0x1, 0xf0,0x40, -0x3f,0x6e,0x7f,0x4, 0x7f,0x92,0xe8,0x40,0x3f,0x6e,0x67,0x8d,0xe2,0x1, 0xc7,0x7f, -0x3f,0x7f,0x7f,0x14,0x4, 0x98,0x67,0x84,0x66,0x7, 0xf0,0x0, 0x60,0x8f,0x66,0x91, -0x67,0xd, 0xe2,0x1, 0xc7,0xff,0xf0,0x0, 0xc0,0x82,0xc6,0x1, 0xc6,0x81,0x3f,0x7f, -0x7e,0x7, 0xf0,0x0, 0x78,0x8f,0x7e,0x91,0x2, 0xc7,0xe0,0x2, 0xc0,0x58,0xf8,0x0, -0xf, 0x28,0xb, 0xe1,0xf0,0x0, 0x60,0x92,0xf8,0x40,0x8d,0x11,0xe8,0x0, 0x8e,0x1, -0xf8,0xf, 0x3e,0x2a,0xe2,0x0, 0xcf,0x80,0x7e,0x6, 0xe0,0x1, 0x5, 0x12,0xe2,0x1, -0xc7,0xff,0x66,0x86,0x7f,0x8b,0x67,0x85,0x3f,0xad,0xe2,0x0, 0xcf,0x80,0xe0,0x1, -0x5, 0xc, 0xe2,0x1, 0xc7,0xff,0xf0,0x0, 0x60,0x8b,0x7f,0x8c,0x17,0x86,0xf1,0x2e, -0x38,0x9f,0xe0,0x0, 0x2f,0x77,0x66,0xc, 0xe1,0x2f,0x3e,0x1f,0xe0,0x0, 0x2f,0xf2, -0x64,0x85,0xe8,0x40,0x3c,0x6c,0xef,0xff,0xd4,0x8f,0x64,0x86,0x3b,0xe8,0xe8,0x40, -0x3c,0x6a,0xef,0xff,0xd4,0x89,0x64,0x85,0x65,0x86,0x3b,0x68,0xe8,0x40,0x3d,0x6a, -0xe8,0x40,0x3c,0x6c,0xdd,0x1d,0xeb,0x84,0x7c,0xf4,0x7c,0x18,0x15,0x2a,0xe9,0xff, -0xc4,0xfe,0xe2,0x1, 0x7c,0x14,0xe0,0x2, 0x3b,0x96,0xef,0xf5,0xd8,0xfd,0xe6,0x4f, -0xc9,0x2, 0xe2,0x1, 0x7f,0x94,0x97,0xf, 0x3f,0x72,0xe0,0x0, 0x3, 0x5b,0x97,0x9f, -0x7f,0x8e,0x17,0x80,0xe0,0x3, 0x1f,0x1e,0xf0,0x0, 0x60,0x8b,0xaf,0x8e,0x17,0x81, -0xe9,0x2d,0x3f,0xa1,0xe0,0x0, 0x26,0xd5,0x66,0xc, 0xe1,0x2f,0x3f,0xac,0xe0,0x0, -0x27,0xd0,0x67,0x97,0xe6,0xff,0xcf,0xff,0xe0,0x0, 0x27,0xcb,0xe0,0x5, 0x1f,0x96, -0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x96,0xe0,0x3, 0x1f,0xea,0x8f,0x8f,0xe2,0x0, -0xcf,0x81,0x5, 0x90,0x67,0x87,0x8e,0x8f,0xe0,0x3, 0x1f,0xc8,0xe8,0xf, 0x3f,0x9e, -0x8f,0x8f,0x3f,0xfd,0x1, 0x7, 0xe2,0x1, 0xce,0xff,0x1, 0x4, 0xe2,0x1, 0xcf,0xff, -0x1, 0x83,0x17,0x81,0xaf,0x8e,0xe0,0x3, 0x1f,0xc8,0x66,0x7, 0xe8,0xf, 0x3f,0x9e, -0x8f,0x8f,0x8f,0xc, 0x3f,0x7f,0x1, 0x89,0xe0,0x3, 0x1f,0x9e,0x8f,0xf, 0xe2,0x0, -0xcf,0x2, 0x1, 0x83,0x17,0x1, 0xaf,0xf, 0x65,0xd, 0x64,0x94,0x64,0x16,0xdc,0x9b, -0x66,0x92,0xf0,0x0, 0xc7,0x1, 0xc6,0x82,0x7e,0x92,0xe7,0xfe,0x0, 0xc6,0xf8,0xf, -0x3d,0x2c,0xe7,0xfe,0x0, 0xee,0x67,0x5, 0x67,0x86,0x3f,0xae,0xe7,0xfe,0x0, 0xf3, -0x66,0x9a,0xc7,0x86,0x3f,0xfd,0xe7,0xff,0x1, 0xa0,0xe7,0xff,0x0, 0xa4,0xf0,0x0, -0x60,0x8b,0x17,0x81,0xf1,0x2e,0x38,0x9f,0x2f,0x5, 0x66,0xc, 0xe1,0x2f,0x3e,0x1f, -0x27,0xcb,0x67,0x97,0xe2,0x0, 0xc7,0x82,0x27,0xc7,0x66,0x85,0x67,0x6, 0xf9,0x22, -0x3e,0x5a,0xf9,0x24,0x3e,0x6a,0xe1,0x23,0x3e,0xde,0xe1,0x25,0x3e,0xee,0x3c,0xe4, -0x3c,0x62,0x3d,0xe5,0x3d,0x63,0xde,0x7, 0x39,0x74,0x7c,0x15,0xe0,0x0, 0x1, 0xe5, -0x21,0x6, 0x3f,0xe2,0xc7,0xff,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x67,0x99,0xc7,0xff, -0x3a,0x7f,0xe0,0x0, 0x3, 0x60,0x3f,0xe4,0xc7,0x81,0x3a,0x6f,0x17,0x81,0xe2,0x1, -0xc2,0x7f,0x7f,0x88,0x39,0xf5,0xe0,0x0, 0x1, 0xda,0x21,0x86,0x3f,0xe3,0xc7,0xff, -0x39,0xef,0xe2,0x1, 0xc1,0xff,0x67,0x93,0xc7,0xff,0x3a,0xff,0x17,0x81,0xe0,0x0, -0x3, 0x52,0x3f,0x95,0x3a,0xef,0x16,0x81,0xe2,0x1, 0xc2,0xff,0x7e,0x89,0xe0,0xf, -0x3a,0x22,0xf0,0x40,0x3c,0xef,0xe0,0x27,0x3b,0xd6,0xe0,0xf, 0x3a,0xa3,0xf0,0x40, -0x3c,0x6f,0xf2,0x1, 0xc4,0xff,0xe0,0x0, 0x17,0xf8,0xe6,0x50,0xcb,0xa7,0xe0,0x27, -0x3b,0xef,0xe8,0x40,0x3f,0xe9,0xc7,0xfd,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x17,0x82, -0xe1,0x2f,0x3f,0xae,0xf2,0x1, 0xc4,0x7f,0xe0,0x1, 0x27,0xe1,0xf9,0x2f,0x3c,0xa8, -0xe0,0x1, 0x27,0xdd,0xe0,0x4, 0x1f,0xb4,0xf0,0x0, 0x8e,0xff,0x3f,0xe2,0xc7,0x81, -0x3b,0x6f,0x3f,0xe4,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0xf1,0xff,0xc6,0xff,0xe2,0x1, -0xc3,0x7f,0x7f,0x8a,0xf0,0x0, 0x7e,0x90,0x67,0x8a,0x3f,0xf6,0x3, 0x96,0xf0,0x0, -0x16,0x81,0xe0,0x0, 0x0, 0xd8,0xf0,0x0, 0x10,0x80,0xf0,0x0, 0x78,0x88,0xe7,0xff, -0x0, 0xab,0x16,0x1, 0x7e,0x8, 0xe7,0xff,0x0, 0xa7,0x17,0x0, 0x7f,0x9, 0xe7,0xff, -0x0, 0xb8,0x7f,0x89,0xe7,0xff,0x0, 0xb5,0x3c,0xe3,0x3c,0x66,0xef,0xff,0xd3,0x74, -0xf0,0x40,0x3e,0xe8,0xf0,0x40,0x3d,0xe3,0xf0,0x1, 0x2d,0x84,0xe8,0x40,0x3c,0xeb, -0x3c,0x66,0xef,0xff,0xd3,0x69,0x3c,0x77,0xf0,0x40,0x38,0xe3,0xe8,0x71,0x3a,0x2b, -0x3c,0xe5,0x3c,0x66,0xf8,0x40,0x3d,0xe1,0xef,0xff,0xd3,0x5e,0x3e,0xe8,0xf0,0x40, -0x3e,0xe5,0x67,0x10,0xf0,0x40,0x3e,0xfe,0x3, 0x11,0xe8,0x40,0x3f,0x6d,0xc7,0x1, -0xe2,0x1, 0xc7,0x7f,0x3c,0xee,0x3c,0x66,0x7f,0x1, 0x7e,0x82,0xef,0xff,0xd3,0x4c, -0x66,0x82,0x67,0x1, 0x3c,0x7d,0xe0,0x0, 0x2, 0x72,0xe8,0x40,0x3c,0xed,0x3c,0x66, -0xef,0xff,0xd3,0x42,0x3c,0x77,0x3e,0x63,0xe8,0x6c,0x3a,0x2d,0xe8,0xf, 0x3e,0x2b, -0xe2,0x1, 0xc7,0xff,0x16,0x85,0xe1,0x2e,0x3e,0xaf,0xe0,0x0, 0x2f,0x65,0xf0,0x0, -0x16,0x80,0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0x7f,0x8a,0xe8,0x40, -0x3f,0xe8,0xc7,0x81,0xf0,0x40,0x3d,0xef,0x3b,0x62,0xf2,0x1, 0xc5,0xff,0xf0,0x0, -0x14,0x0, 0x3a,0x76,0xe0,0x1, 0x3, 0xe7,0x3b,0x63,0xf0,0x0, 0x14,0x1, 0x3a,0xf6, -0xe0,0x1, 0x3, 0xf6,0xe0,0x2, 0x1f,0xea,0xea,0x25,0x7b,0xc9,0xf0,0x40,0x3b,0xe2, -0x8b,0x7, 0xf5,0xff,0xc3,0xec,0xf0,0x0, 0xa3,0xf, 0x3f,0x62,0xf0,0x0, 0x12,0x86, -0xf0,0x0, 0x12,0x0, 0x79,0x10,0x3a,0x7e,0xe0,0x2, 0x4, 0xb2,0x66,0x13,0x3e,0xe3, -0xe0,0xad,0x3e,0xe, 0x3c,0xee,0xe4,0x0, 0xc4,0x94,0xe0,0x8, 0x3f,0x22,0x38,0xe0, -0xe0,0xa, 0x34,0x21,0xe2,0x0, 0x7f,0xec,0x36,0xa1,0xe0,0x1, 0xc0,0x80,0xe8,0x9, -0x3c,0x97,0x15,0x80,0x3d,0x1f,0xe8,0xd, 0x3e,0x96,0x3e,0x63,0xe0,0x2, 0x0, 0x8a, -0xe8,0x40,0x3f,0xeb,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0x3c,0xef,0x3c,0x66,0x7f,0x83, -0xef,0xff,0xd2,0xe2,0xe8,0x40,0x3c,0x7d,0x67,0x83,0xe7,0xfe,0x5, 0x71,0xf0,0x40, -0x3e,0xe8,0xf0,0x40,0x3d,0xef,0xe7,0xfe,0x0, 0xe9,0x3e,0xe8,0xf0,0x40,0x3e,0xee, -0xe7,0xfe,0x0, 0xf9,0xe9,0x2f,0x3f,0x98,0xe7,0xff,0x27,0x9b,0x3f,0xe6,0xc7,0x81, -0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe7,0xfe,0x0, 0xb9,0xe8,0x40,0x3f,0xe8,0xc7,0xfd, -0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x17,0x82,0xe1,0x2f,0x3f,0xae,0xe7,0xff,0x27,0x89, -0xf9,0x2f,0x3c,0x29,0xe7,0xff,0x27,0x85,0xe0,0x4, 0x1f,0xb4,0xf0,0x0, 0x8e,0xef, -0x3f,0xe3,0xc7,0x81,0x3b,0x6f,0x3f,0xe5,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0xf1,0xff, -0xc6,0xff,0xe2,0x1, 0xc3,0x7f,0x7f,0x8a,0xf0,0x0, 0x7e,0x90,0x67,0x8a,0x3f,0xf6, -0xe7,0xfe,0x4, 0x97,0x3c,0xe6,0x3c,0x62,0xef,0xff,0xd2,0x9e,0xf0,0x40,0x3e,0xe8, -0xf0,0x40,0x3d,0xe2,0xf0,0x0, 0x2d,0xc5,0x3c,0xe6,0xe8,0x40,0x3c,0x6b,0xef,0xff, -0xd2,0x93,0x3c,0x77,0xf0,0x40,0x38,0xe2,0xe8,0x71,0x3a,0x2b,0x3c,0xe6,0x3c,0x64, -0xf8,0x40,0x3d,0xe1,0xef,0xff,0xd2,0x88,0x3e,0xe8,0xf0,0x40,0x3e,0xe4,0x67,0x10, -0xf0,0x40,0x3e,0xfe,0x3, 0x10,0xe8,0x40,0x3f,0x6d,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f, -0x3c,0x6e,0x3c,0xe6,0x7f,0x1, 0x7e,0x82,0xef,0xff,0xd2,0x76,0x66,0x82,0x67,0x1, -0x3c,0x7d,0x2, 0x33,0x3c,0xe6,0xe8,0x40,0x3c,0x6d,0xef,0xff,0xd2,0x6d,0x3c,0x77, -0x3e,0x64,0xe8,0x6c,0x3a,0x2d,0xe8,0xf, 0x3e,0x2b,0xe2,0x1, 0xc7,0xff,0x16,0x85, -0xe1,0x2e,0x3e,0xaf,0xe7,0xfe,0x27,0x2d,0xe9,0x2f,0x3f,0x99,0xe7,0xfe,0x27,0xa9, -0x3f,0xe6,0xc7,0x81,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe7,0xff,0x0, 0xb1,0xe8,0x40, -0x3f,0xeb,0xc7,0xff,0xe2,0x1, 0xc7,0xff,0x3c,0x6f,0x3c,0xe6,0x7f,0x83,0xef,0xff, -0xd2,0x4b,0xe8,0x40,0x3c,0x7d,0x67,0x83,0xe7,0xff,0x5, 0x30,0xf0,0x40,0x3e,0xe8, -0xf0,0x40,0x3d,0xef,0xe7,0xff,0x0, 0xa8,0x3e,0xe8,0xf0,0x40,0x3e,0xee,0xe7,0xff, -0x0, 0xb8,0x3d,0x66,0xe8,0x40,0x3d,0xe8,0x3c,0xe5,0x3c,0x63,0xd9,0x99,0xe0,0x7, -0x3b,0x22,0x3f,0xe6,0x33,0xa1,0xf2,0x0, 0x78,0xec,0xc7,0x81,0xe8,0x7, 0x3b,0x91, -0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xb4,0x7, 0xe7,0xfe,0x0, 0x85,0x3d,0x66,0xe8,0x40, -0x3d,0xe8,0x3c,0xe4,0x3c,0x62,0xd9,0x84,0xe0,0x7, 0x3b,0x23,0x3f,0xe6,0x33,0xa1, -0xe2,0x1, 0x7e,0x0, 0xc7,0x81,0x3b,0x9c,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xb4,0x7, -0xe7,0xfd,0x0, 0xf7,0xf1,0x80,0x91,0x91,0x9f,0x8a,0xe2,0x0, 0xcb,0x1, 0xe8,0xf, -0x3f,0x93,0xe0,0x43,0x3f,0x9f,0x1, 0x7, 0x4, 0xaf,0xe2,0x0, 0xcb,0x2, 0x1, 0x2a, -0x37,0x81,0x0, 0x83,0xe8,0x2f,0x3f,0xb5,0xe2,0x0, 0xcc,0x9, 0xf0,0x0, 0x91,0xd, -0x2, 0xe, 0xe2,0x0, 0xcd,0x8a,0x1, 0xb, 0xe0,0x13,0x35,0xa1,0xf0,0x13,0x39,0x99, -0xf2,0x1, 0x78,0x94,0xf8,0x13,0x39,0x91,0xf8,0x0, 0xb1,0x3, 0xe8,0xf, 0x3f,0x92, -0xe1,0x80,0xb7,0x9d,0x3f,0xec,0xc7,0x81,0x3e,0x6f,0xe2,0x1, 0xc6,0x7f,0xc5,0x81, -0x3a,0xfc,0x3, 0xd1,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xe7,0xfd, -0x0, 0xd4,0x37,0x82,0x0, 0xda,0xe8,0x40,0x3f,0xe4,0x0, 0xd7,0xf0,0x0, 0x60,0x8a, -0x17,0x82,0xf1,0x2f,0x38,0x9f,0xe0,0x2, 0x27,0xa5,0x66,0x8, 0xe0,0x2, 0x2e,0x22, -0x3f,0xe2,0xc7,0x81,0xf0,0x40,0x3c,0x6f,0xf2,0x1, 0xc4,0x7f,0xe0,0xff,0x13,0x7f, -0x16,0x80,0xe8,0x40,0x3a,0x78,0xe0,0x2, 0x2, 0x91,0x17,0x82,0xf1,0x2f,0x3d,0x9f, -0xe0,0x2, 0x27,0xb8,0x66,0x89,0xe0,0x2, 0x2e,0xb5,0x3f,0xe3,0xc7,0x81,0xf0,0x40, -0x3c,0xef,0xf2,0x1, 0xc4,0xff,0xf0,0xff,0x14,0x7f,0xe8,0x40,0x3a,0xf9,0xe0,0x2, -0x2, 0xa6,0x64,0x85,0x65,0x8, 0x65,0x89,0xe8,0x40,0x3c,0x6c,0xd9,0x56,0x64,0x86, -0x65,0x8, 0x65,0x89,0xf0,0x40,0x3c,0xe8,0xe8,0x40,0x3c,0x6a,0xd9,0x4e,0xe8,0x8, -0x3c,0x19,0xe0,0x43,0x3f,0x18,0xf0,0x0, 0x26,0x9, 0xe0,0x2, 0x1f,0xb1,0xe0,0xe, -0x8f,0xdf,0xe8,0x40,0x3f,0xfc,0x1, 0x8d,0xf8,0x40,0x3e,0x7a,0x1, 0x8a,0x67,0x8e, -0xf0,0x0, 0x60,0x8e,0x37,0x81,0xe8,0xf, 0x3f,0x91,0xe0,0x43,0x3f,0x9f,0x7f,0x8e, -0xe0,0x5, 0x1e,0x47,0x67,0x88,0x66,0x89,0x7e,0x20,0x3f,0xcd,0x27,0x85,0xe0,0x4e, -0x17,0xaa,0xe0,0x0, 0x77,0xc1,0xf2,0x1, 0x78,0x80,0x8f,0x87,0xe8,0xf, 0x3f,0x91, -0xf0,0x0, 0x8d,0xf, 0x7f,0x1, 0xef,0xfd,0xdf,0xe5,0x67,0x1, 0xe0,0x1, 0x2c,0x6e, -0xe0,0x2, 0x1f,0xc3,0xe0,0x4, 0x8f,0xdf,0x27,0x83,0xfe,0xf9,0xcd,0xa, 0x66,0xa, -0xe8,0x26,0x3b,0x3b,0xf0,0x38,0x3c,0x3c,0xe0,0x3, 0x1f,0xea,0xe8,0x26,0x3b,0x58, -0xf0,0x0, 0x64,0x98,0xe8,0x6, 0x3b,0x3a,0x8f,0x8f,0xf0,0x0, 0x65,0xe, 0xf2,0x1, -0xc4,0xff,0xf0,0x3, 0x1c,0x1e,0xf0,0x1a,0x3d,0x3e,0x27,0xa7,0x66,0x87,0x8f,0xd, -0xe2,0x1, 0xcf,0x7f,0x1, 0x22,0xe0,0x3, 0x1f,0xc8,0xe8,0xf, 0x3f,0x9e,0x8f,0x8f, -0xe2,0x1, 0xcf,0xff,0x1, 0x1a,0x3f,0x7f,0xe0,0x1, 0x1, 0xc4,0xe0,0xf, 0x33,0x1, -0x3b,0x1f,0xf0,0x0, 0x26,0x8b,0xe0,0x0, 0x1f,0x8c,0x8f,0x8f,0xe2,0x0, 0xcf,0x81, -0x1, 0x84,0xe0,0xf, 0x33,0x1, 0x3b,0x1f,0xf2,0x0, 0xcc,0x89,0x2, 0x86,0x8f,0x87, -0x27,0x84,0x17,0x82,0xe8,0x0, 0xaf,0x88,0x3d,0xe5,0x3d,0x63,0x3c,0xe4,0x3c,0x62, -0xda,0xd6,0xe8,0x40,0x3b,0x7a,0xf0,0x40,0x3d,0xe8,0x5, 0x4, 0x17,0x82,0xe8,0x0, -0xaf,0x88,0xef,0xfd,0xdf,0x8f,0x2c,0x16,0xe8,0x0, 0x8f,0x88,0xe2,0x0, 0xcf,0x82, -0x1, 0x91,0xf2,0x0, 0xcc,0x8e,0x5, 0x8e,0x8f,0x87,0x27,0x8c,0xe0,0x3, 0x1f,0xc8, -0x66,0x7, 0xe8,0xf, 0x3f,0x9e,0x8f,0xf, 0x8f,0x8c,0x3f,0x7f,0x1, 0x3, 0xe8,0x0, -0xac,0x8, 0x66,0x87,0xe8,0x0, 0x8f,0x8, 0x8f,0x8d,0xe0,0x1, 0x2f,0x14,0xe0,0x3, -0x1f,0x48,0xe8,0xe, 0x3f,0x1e,0x8f,0xe, 0x3f,0x7f,0xe0,0x1, 0x1, 0x8c,0xe2,0x1, -0xcf,0xff,0x1, 0x19,0x8f,0x7, 0x27,0x7, 0xf3,0xff,0xcd,0xcf,0x4, 0x4, 0x17,0x2, -0xe8,0x0, 0xaf,0x8, 0xe2,0x1, 0xcf,0xff,0x1, 0xe, 0x67,0x15,0xe3,0xfe,0xcf,0x39, -0x4, 0xa, 0xe0,0x0, 0x1f,0xa5,0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0x5, 0x84,0x17,0x82, -0xe8,0x0, 0xaf,0x88,0xe0,0x2, 0x1f,0xea,0xa6,0xf, 0xe0,0x1, 0x0, 0x85,0xe8,0x40, -0x3c,0xe9,0xe8,0x40,0x3c,0x68,0x7f,0x1, 0x7e,0x82,0xef,0xff,0xd0,0xcd,0xe2,0x0, -0xcc,0x0, 0x67,0x1, 0x66,0x82,0x5, 0x4, 0x3f,0x18,0xe0,0x43,0x3f,0x1e,0xe8,0x40, -0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef,0xf2,0x1, 0xc4,0xff,0xe8,0x40,0x3a,0xf9, -0x3, 0xe7,0xe8,0x40,0x3f,0xe8,0xc7,0x81,0xf0,0x40,0x3c,0x6f,0xe0,0x26,0x3f,0x56, -0xf2,0x1, 0xc4,0x7f,0xe7,0xfd,0x0, 0xef,0xf0,0x40,0x3c,0xe3,0x3f,0x6d,0x0, 0xef, -0xe0,0xff,0x13,0x7f,0xe7,0xfd,0x0, 0xeb,0x3c,0x6f,0xe8,0x40,0x3c,0xe9,0x7f,0x1, -0x7e,0x82,0x7f,0x83,0xef,0xff,0xd0,0xa0,0xe2,0x0, 0xcc,0x0, 0x67,0x1, 0x66,0x82, -0x67,0x83,0x5, 0x4, 0x3f,0x18,0xe0,0x43,0x3f,0x1e,0xc7,0x81,0xe2,0x1, 0xc7,0xff, -0x3a,0x7f,0x3, 0xeb,0xe8,0x40,0x3f,0xe9,0xc7,0x81,0xf0,0x40,0x3c,0xef,0xe8,0x38, -0x3f,0x58,0xf2,0x1, 0xc4,0xff,0xe7,0xfd,0x0, 0xda,0x3f,0xe2,0x3f,0x6d,0x0, 0xf1, -0xf0,0xff,0x14,0x7f,0xe7,0xfd,0x0, 0xd7,0xf0,0x0, 0x15,0x64,0xe7,0xfe,0x0, 0x99, -0x67,0x15,0xe3,0xff,0xcf,0x1d,0x4, 0x9, 0x67,0x8b,0xf0,0x0, 0x60,0x8c,0x37,0xa1, -0xe8,0x40,0x3f,0xf1,0xe7,0xfe,0x4, 0x4a,0xe0,0xf, 0x33,0x1, 0x3b,0x2f,0xe7,0xfe, -0x0, 0xc5,0xe2,0x1, 0xcf,0xff,0xe7,0xff,0x1, 0xf, 0xe0,0x3, 0x1f,0xc8,0xe8,0xf, -0x3f,0x9e,0x8f,0x8f,0xe7,0xfe,0x0, 0xf8,0xe0,0x80,0x9d,0x9f,0xc6,0x81,0xe1,0x80, -0xb5,0x9e,0xe2,0x1, 0xc6,0xff,0x3a,0xfd,0x3, 0xf8,0x3f,0xe2,0xc7,0x81,0x39,0x6f, -0xe2,0x1, 0xc1,0x7f,0x3a,0x72,0xe7,0xf8,0x4, 0x98,0xf0,0x0, 0x60,0x90,0x3f,0x63, -0xe8,0xf, 0x39,0x21,0xf0,0x0, 0x60,0x93,0xe4,0x0, 0xc7,0x94,0xf0,0xae,0x38,0x82, -0xe2,0x1, 0x7e,0x94,0xc7,0xfe,0x37,0x21,0x3f,0x9d,0x3f,0x1c,0x3e,0xe3,0x0, 0xe4, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x60,0xe0,0x0, 0x1b,0x25,0xfa,0x25,0x7e,0x4c, -0x8e,0x6, 0xe8,0x40,0x3e,0xec,0x17,0x81,0x17,0x0, 0x7e,0x6, 0xf0,0xb, 0x3e,0x1e, -0x66,0x6, 0x8d,0x8b,0x3e,0x7f,0x7d,0x88,0x2, 0xb7,0xf0,0x0, 0x1e,0xa4,0xf0,0x0, -0x17,0x0, 0xf0,0x0, 0x15,0x81,0x67,0x88,0xf0,0x40,0x3d,0xff,0xe0,0x1, 0x5, 0xff, -0x8e,0x86,0xe0,0x3, 0x1f,0x33,0xe8,0x40,0x3e,0xfe,0xf0,0x0, 0xaf,0xe, 0x39,0x6e, -0x5, 0x96,0xe0,0x4, 0x19,0xb8,0xe0,0x2, 0x1a,0x41,0xe0,0x4, 0x1a,0xb4,0xe0,0x2, -0x1b,0xea,0xf0,0x0, 0x14,0x1, 0xe8,0x40,0x3f,0xee,0xc7,0xff,0xf0,0x40,0x3f,0x6f, -0xf2,0x1, 0xc7,0x7f,0xf2,0x1, 0xcf,0x7f,0xe0,0x1, 0x1, 0xfa,0x8d,0x2, 0xe0,0x2, -0x1c,0xc1,0xe0,0x0, 0x1c,0xb, 0xad,0x6, 0x35,0x21,0xc0,0x20,0xf8,0x0, 0xf, 0x28, -0xb, 0xa1,0xe6,0xa8,0x0, 0xf9,0x66,0x8, 0xe0,0x80,0x8d,0x9d,0x3e,0x7b,0x3e,0x6f, -0xe0,0x6c,0x3a,0xae,0xc7,0x81,0x3f,0x6c,0xe2,0x1, 0xc7,0xff,0xe7,0xff,0x0, 0xb8, -0x67,0x87,0xe1,0x80,0x8c,0x9f,0xf0,0x40,0x3d,0xf9,0x7f,0x87,0xe0,0x0, 0x1, 0xec, -0xf0,0x9, 0x34,0xa1,0xe8,0x9, 0x3c,0x9d,0x3c,0x69,0xe0,0x2, 0xc4,0xe, 0xe0,0x2, -0xc4,0x8f,0x8a,0x89,0x8a,0x8, 0xe8,0x40,0x3c,0xe8,0xc4,0x81,0xf0,0x40,0x3c,0x69, -0x3c,0x64,0x3c,0xe5,0x7d,0x1, 0xf2,0x1, 0xc4,0x7f,0x7d,0x82,0xef,0xfe,0xdf,0xc4, -0x3b,0x98,0x3c,0xe5,0x3c,0x64,0xef,0xfe,0xdf,0xbf,0x3c,0xe5,0xe0,0xa3,0x3a,0x8, -0x3c,0x64,0xef,0xfe,0xdf,0xb9,0xe0,0xa2,0x3a,0x88,0x3c,0xe5,0x3c,0x64,0xef,0xfe, -0xdf,0xb3,0x65,0x82,0xe0,0x43,0x3b,0x97,0x3c,0x7b,0x65,0x1, 0x5, 0x7, 0x3c,0xe5, -0x3c,0x64,0xef,0xfe,0xdf,0xa9,0x65,0x1, 0x3d,0xe8,0xe8,0x40,0x3c,0xe9,0xe4,0x0, -0xc4,0x85,0x66,0x3, 0xe8,0x9, 0x3c,0x9d,0x3c,0x69,0xe0,0x2, 0xc4,0x4a,0x8c,0x8, -0x67,0x84,0xe8,0x8, 0x3c,0x1a,0xf0,0x40,0x3d,0x68,0x3c,0x69,0xe0,0x2, 0xc4,0x4b, -0x8c,0x8, 0xf2,0x1, 0xc5,0x7f,0xe1,0x28,0x3c,0x5c,0xe2,0x1, 0xc4,0x7f,0x7c,0x3, -0x3c,0x69,0xe0,0x2, 0xc4,0x4c,0x8c,0x8, 0x66,0x5, 0xe1,0x28,0x3c,0x6f,0xe2,0x1, -0xc4,0x7f,0x7c,0x4, 0x3c,0x69,0xe0,0x2, 0xc4,0xce,0xe0,0x2, 0xc4,0x4d,0x8c,0x89, -0x8c,0x8, 0xe1,0x29,0x3c,0xec,0xe1,0x2a,0x3c,0x5a,0xe2,0x1, 0xc4,0xff,0xe2,0x1, -0xc5,0x7f,0x7c,0x85,0xf0,0x0, 0xc4,0x81,0xe8,0x40,0x3c,0xe9,0x67,0x86,0xe2,0x1, -0xc4,0xff,0x3f,0xf9,0xe7,0xff,0x2, 0x86,0xf0,0x0, 0x24,0x40,0xe4,0xe, 0x33,0xcf, -0x3f,0x17,0x37,0x1, 0x39,0x9e,0x39,0x1e,0xe0,0x23,0x39,0xb7,0xe0,0x2, 0x1f,0x41, -0xe0,0x22,0x39,0x37,0xf0,0x9, 0x37,0x21,0x3f,0x19,0xe2,0x1, 0xc1,0xff,0xe2,0x1, -0xc1,0x7f,0xa9,0x8e,0xa9,0x1e,0xe8,0x40,0x3f,0x6e,0xe4,0x0, 0xc7,0x5, 0x66,0x3, -0xe0,0x2, 0xc7,0x4a,0xe8,0xe, 0x3f,0x1d,0x67,0x84,0xae,0x1e,0x66,0x5, 0xaf,0xae, -0xe0,0x0, 0x1f,0x98,0xf0,0x0, 0xad,0xe, 0xad,0x3e,0xae,0x4e,0x97,0xf, 0x3f,0x7b, -0x1, 0x87,0xe0,0x0, 0x1e,0x17,0xe0,0x0, 0x1f,0x96,0xa9,0x8c,0xa9,0xf, 0xe0,0x4, -0x1e,0x38,0xa7,0xc, 0x27,0x3, 0x3f,0x19,0xb5,0x8e,0xe8,0x40,0x3f,0xee,0xc7,0x81, -0xf0,0x40,0x3f,0x6f,0xf2,0x1, 0xc7,0x7f,0xe8,0x40,0x3f,0x6b,0xc7,0x1, 0xf0,0x40, -0x3d,0xee,0xf2,0x1, 0xc5,0xff,0xe7,0xfe,0x0, 0x80,0xf0,0x0, 0x14,0x80,0xe0,0x1, -0x15,0x7f,0xf8,0x40,0x3d,0x69,0xe8,0x40,0x3d,0xe9,0xe8,0x40,0x3b,0xe9,0xf8,0x40, -0x3c,0x69,0xe8,0x40,0x39,0x69,0xe8,0x40,0x39,0xe9,0x7d,0x3, 0xf0,0x0, 0x7c,0x84, -0xf0,0x0, 0x7c,0x85,0xf0,0x0, 0x7e,0x7, 0xe7,0xff,0x0, 0x98,0xa6,0x83,0xf0,0xe, -0x37,0x21,0x3e,0x9e,0x3f,0x14,0x8d,0x8e,0x96,0xd, 0x8f,0x1e,0x8e,0xd5,0xe8,0x40, -0x3c,0xe8,0xe0,0xae,0x3d,0x8d,0xa6,0x87,0x37,0x21,0x3f,0x1d,0xe8,0x40,0x3c,0x6e, -0xb6,0xe, 0xef,0xfe,0xde,0xd4,0xe7,0xfd,0x0, 0xe8,0x8, 0xb7,0xc0,0x44,0xe0,0x4, -0x19,0xbe,0xe0,0x1, 0x9f,0xa3,0xe2,0x0, 0xc7,0x98,0xe2,0x0, 0xcf,0x90,0xe0,0x1, -0x1, 0x73,0xe0,0x0, 0x1f,0x98,0x96,0x8f,0xe0,0x0, 0x1f,0x9b,0x97,0x8f,0xe0,0x41, -0x3f,0x4f,0xe0,0xc, 0x37,0x21,0x3e,0xfc,0xe0,0x1, 0x4, 0x66,0x37,0x22,0x3e,0xfe, -0xe0,0x1, 0x4, 0x65,0xe5,0xff,0xc7,0xfa,0xe0,0x2f,0x3f,0x9d,0xea,0x25,0x7f,0x49, -0xe0,0x3, 0x1c,0x48,0xe0,0x0, 0x1a,0xa5,0x15,0x1e,0xe0,0x1, 0x14,0xff,0xaf,0x8e, -0xef,0xf5,0xd3,0x82,0xe0,0x3, 0x1a,0x48,0x8b,0x5, 0x11,0x0, 0x3b,0x72,0xe0,0x1, -0x1, 0xd1,0xe0,0x3, 0x1f,0xea,0x3f,0x60,0x8b,0x8f,0xe0,0x4, 0x1f,0xb8,0xc7,0x4, -0xe2,0x0, 0xc9,0x1, 0xbf,0xf, 0xe0,0x2, 0x5, 0x91,0xe0,0x4, 0x1f,0xb4,0xe0,0x3, -0x18,0x9f,0x8b,0x6f,0xf0,0x0, 0x8b,0x7f,0xf0,0x4, 0x1b,0x82,0xe0,0x5, 0x1c,0x16, -0xe0,0x0, 0x1a,0xb, 0x17,0x80,0x16,0x80,0xe0,0x1, 0x15,0x7e,0xf0,0x40,0x39,0xe6, -0xf8,0x40,0x39,0x66,0xf0,0x40,0x3a,0xe4,0x3e,0x6a,0x3f,0x6d,0x3c,0xed,0xf1,0xff, -0xc1,0xff,0xf1,0xff,0xc1,0x7f,0xaf,0x81,0xaf,0x88,0xe8,0x0, 0xaf,0x87,0xe8,0x0, -0x8d,0x85,0xf8,0x0, 0x8a,0x15,0x25,0x8e,0xe8,0x40,0x3d,0xf3,0x3, 0xb, 0xf1,0x2f, -0x3a,0x6e,0x3f,0x6f,0xf1,0x2f,0x3a,0x5c,0x3e,0x6f,0xe2,0x1, 0xc7,0x7f,0xe2,0x1, -0xc6,0x7f,0xf0,0x0, 0x22,0xf, 0xf8,0x40,0x3a,0x72,0x3, 0xb, 0xe1,0x2f,0x3d,0xed, -0xe1,0x2b,0x3d,0xda,0x3e,0xef,0x3d,0x6b,0xe2,0x1, 0xc6,0xff,0xe2,0x1, 0xc5,0x7f, -0x3f,0xe9,0xc7,0x81,0x3c,0xef,0xe2,0x1, 0xc4,0xff,0x39,0x79,0xf0,0x0, 0xc2,0x82, -0x1, 0xd7,0xe0,0xf, 0x3f,0x2c,0xe0,0x43,0x3d,0x9f,0xe2,0x0, 0xcd,0x80,0xe0,0x0, -0x5, 0x7d,0xe0,0xe, 0x3e,0xaa,0xe0,0x43,0x3e,0x1e,0xe2,0x0, 0xce,0x0, 0xe2,0x1, -0xc7,0xff,0xe0,0x0, 0x5, 0x77,0x16,0x87,0xe1,0x2d,0x3f,0x9d,0xe2,0x1, 0xc7,0x7f, -0x26,0x8b,0xf1,0x36,0x3b,0x1f,0xf0,0x0, 0x23,0x8, 0xe2,0x0, 0xcf,0x4, 0x2, 0x84, -0x16,0x81,0xe8,0x0, 0xae,0x87,0x16,0x87,0xe1,0x2d,0x3f,0x1d,0x26,0x89,0xe1,0x26, -0x3b,0x1e,0x23,0x6, 0xe2,0x0, 0xcf,0x84,0x2, 0x83,0x16,0x81,0xae,0x81,0x16,0x82, -0xe1,0x2f,0x3e,0xaf,0x27,0x86,0xe1,0x2d,0x3e,0xae,0x26,0x83,0x17,0x81,0xaf,0x88, -0x14,0x3, 0xd8,0xf3,0x23,0x9c,0xe0,0x3, 0x1f,0xc1,0x8c,0xf, 0x2c,0x3, 0x8f,0x9f, -0x27,0x96,0xe2,0x0, 0xcb,0x81,0x5, 0x89,0xeb,0xfd,0x7f,0xff,0xe8,0x0, 0xc7,0x80, -0x8f,0x8f,0xe2,0x0, 0xcf,0x88,0x2, 0x8b,0x8f,0x85,0x3f,0xf7,0x1, 0x88,0xe0,0x1, -0x9f,0xa3,0xe2,0x10,0xc7,0x80,0x2f,0x83,0x2c,0x2, 0xd8,0xd7,0xdd,0xd2,0xe0,0x0, -0x16,0xe4,0x8c,0x5, 0xe0,0x0, 0x19,0xa4,0x16,0x0, 0x3f,0xed,0x3e,0x78,0x1, 0xad, -0xe2,0x0, 0xcf,0xe4,0x1, 0x82,0x17,0x80,0xe2,0x0, 0xce,0xe4,0x1, 0x5, 0xe1,0x2f, -0x3f,0xed,0xe2,0x1, 0xc7,0xff,0xeb,0xfd,0x7f,0x7f,0xe8,0x0, 0xc7,0x0, 0xaf,0x8e, -0xc0,0x3c,0xb, 0xe1,0x17,0x83,0xe7,0xfe,0x0, 0xa3,0x17,0x82,0xe7,0xfe,0x0, 0xa0, -0x3c,0x62,0xef,0xff,0xd5,0xf8,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe1,0x80,0xac,0x14, -0xe2,0x1, 0xc1,0x7f,0xe7,0xfe,0x0, 0xa4,0xe0,0xf, 0x3e,0x2e,0xe7,0xff,0x0, 0x83, -0xe0,0xe, 0x3d,0x2d,0xe7,0xff,0x0, 0x89,0x3f,0x6c,0xc7,0x1, 0x3e,0x6e,0xe2,0x1, -0xc6,0x7f,0xe0,0xe, 0x36,0x21,0xe0,0x2, 0xc7,0xf, 0x3f,0x13,0x3c,0xec,0x3c,0xf8, -0x1, 0x83,0xc2,0x2, 0x0, 0xc4,0x8d,0x84,0xe0,0x40,0x88,0x9e,0xe0,0xa, 0x3d,0xa1, -0xe2,0x0, 0xcd,0x0, 0x5, 0x1b,0x88,0x94,0x89,0xe, 0xe2,0x1, 0xc5,0x7f,0xe0,0xb, -0x38,0xa2,0xe2,0x0, 0xcd,0x80,0x5, 0x16,0xe2,0x1, 0xc5,0xff,0xe1,0x2d,0x3e,0xdb, -0x3d,0xe9,0xc5,0x81,0xe1,0x2f,0x3f,0xda,0x3c,0xeb,0xe2,0x1, 0xc7,0xff,0xe2,0x1, -0xc6,0xff,0xe2,0x1, 0xc4,0xff,0xc7,0x2, 0x0, 0xdb,0xe0,0xb, 0x38,0xab,0x3d,0x6b, -0x0, 0xe3,0xe0,0xb, 0x39,0x21,0x0, 0xe9,0xeb,0xfd,0x7f,0xff,0xe8,0x0, 0xc7,0x80, -0xe0,0x0, 0x17,0x64,0xaf,0xf, 0xe7,0xff,0x0, 0xa5,0x8, 0xb6,0xe0,0x1, 0x1f,0xf8, -0x3e,0xe8,0xe0,0x3, 0x35,0x24,0x8a,0x8f,0xe0,0x2, 0xc6,0xc0,0x39,0x98,0x11,0x0, -0x3f,0xe2,0xe2,0x1, 0xc7,0xff,0x3a,0xff,0x2, 0xb2,0x3c,0x69,0xb, 0x61,0xc7,0x81, -0xc2,0x10,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x3d,0xfe,0x5, 0xa6,0x8b,0x44,0x8f,0x4d, -0x38,0xed,0x3f,0x76,0x1, 0xf5,0xe2,0x1, 0xcf,0x7f,0x1, 0x72,0xe4,0x0, 0xc7,0x6, -0x37,0xa4,0x3f,0x18,0xe0,0x3, 0xc7,0x60,0x8f,0xe, 0x2f,0x3, 0xe0,0x1, 0x3c,0x1f, -0x8a,0x41,0xe0,0xe, 0x34,0xa4,0x3f,0x1c,0xaa,0x4e,0x3f,0x98,0x9a,0x1, 0x98,0x91, -0xb2,0xe, 0xb0,0x9e,0x88,0xdf,0xa8,0xde,0x8f,0xef,0xaf,0xee,0x3f,0xe9,0xc7,0x81, -0x3c,0xef,0xe2,0x1, 0xc4,0xff,0xc1,0x1, 0xc6,0x90,0x0, 0xcb,0x3a,0x63,0x3f,0xea, -0x0, 0xd1,0xea,0x27,0x7f,0x7c,0x34,0x21,0xe0,0xf, 0x3f,0x18,0x96,0xf, 0xea,0x27, -0x7f,0xe8,0xe0,0xd, 0x3f,0x98,0xe6,0x53,0xcc,0x89,0xe6,0x53,0xcd,0xa, 0x96,0x8d, -0x2e,0x2, 0x26,0x88,0xe0,0xb, 0x3e,0x1d,0x3d,0xa9,0x3d,0xaa,0xe2,0x0, 0xcd,0xc0, -0x5, 0x6, 0x3f,0x18,0x3f,0x98,0xb4,0x8e,0xb5,0xf, 0x38,0x82,0x3e,0x19,0x3e,0x9a, -0x3f,0x18,0x36,0x1, 0x3f,0x98,0x36,0x81,0xb6,0xe, 0xb6,0x8f,0x0, 0xf7,0xe0,0x3, -0x1f,0xce,0xe0,0xa, 0x8f,0x8f,0x2f,0x97,0x3f,0xe8,0xe0,0x5, 0xc7,0xc5,0x8e,0x8f, -0x2e,0x92,0x3f,0x68,0xe0,0x5, 0xc7,0x44,0x8f,0x8e,0x27,0x8e,0x3e,0x68,0xe0,0x5, -0xc6,0x51,0xe0,0x5, 0xc4,0x4f,0x8f,0x8c,0x8d,0x88,0x3d,0xff,0x5, 0x84,0xc7,0x81, -0xaf,0x8c,0xae,0x8e,0x38,0x82,0xe0,0x5, 0xc4,0x51,0xaf,0x88,0x0, 0xfc,0xe0,0x4, -0x1f,0x60,0x8f,0x8e,0xe2,0x1, 0xcf,0xf9,0x2, 0x83,0xc7,0x81,0xaf,0x8e,0x38,0x82, -0xe0,0x3, 0x1f,0xec,0xe0,0x3, 0x1e,0xeb,0x8c,0xf, 0xe0,0x3, 0x1f,0xea,0x3d,0xed, -0x8f,0x8f,0x3f,0xf8,0xea,0x26,0x7f,0xb8,0xe0,0x0, 0x1, 0xc2,0xe2,0x0, 0xcc,0x1, -0x1, 0xbe,0x8f,0xf, 0xe2,0x0, 0xcf,0x2, 0x2, 0x8b,0xc7,0x1, 0xaf,0xf, 0xea,0x26, -0x7f,0xb4,0x9f,0xd, 0xb7,0xf, 0x9f,0x1d,0xb7,0x1f,0x14,0x0, 0x38,0x82,0xea,0x26, -0x7e,0x30,0x9f,0x8c,0xe2,0x5, 0xcf,0xbb,0x2, 0xfa,0x9d,0xd, 0xea,0x26,0x7e,0xb4, -0x9c,0x8d,0xe0,0xe, 0x3d,0x29,0xe3,0xff,0xc7,0x7f,0xe0,0x43,0x3c,0x1e,0xe2,0x0, -0xcc,0x0, 0x2, 0x5, 0xe0,0xe, 0x3c,0xaa,0xe3,0xff,0xc7,0x7f,0x9d,0x9b,0x9c,0x9d, -0x3f,0x9e,0x3f,0x6f,0xe0,0xf, 0x3d,0xa9,0xe3,0xff,0xc7,0xff,0xe0,0x43,0x3c,0x1f, -0xe2,0x0, 0xcc,0x0, 0xe3,0xff,0xc7,0x7f,0x2, 0x5, 0xe0,0xf, 0x3c,0xab,0xe3,0xff, -0xc7,0xff,0x3f,0x9e,0xb7,0x8c,0xb5,0xd, 0xb5,0x9d,0x0, 0xd0,0x17,0x0, 0xaf,0xf, -0xea,0x26,0x7f,0xb0,0x17,0x0, 0xb7,0xf, 0xea,0x26,0x7f,0xb4,0x14,0x0, 0xbc,0xf, -0x0, 0xc6,0xe0,0x1, 0x1f,0xf8,0xea,0x26,0x7c,0x48,0x8d,0xf, 0xe0,0x3, 0x1c,0xeb, -0x35,0x24,0xe6,0xa2,0x0, 0xa9,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x6c,0xe0,0x3, -0x1a,0xec,0xe0,0x1, 0x19,0x78,0x89,0x85,0x21,0xbd,0xe0,0x3, 0x1f,0xea,0x8f,0x8f, -0x27,0xb9,0xdf,0x8f,0x89,0x2, 0xea,0x26,0x7a,0x48,0xf0,0x3, 0x1e,0xeb,0xf0,0x0, -0x16,0x0, 0xf0,0x5, 0x14,0xd0,0xf0,0x1, 0x15,0x34,0x69,0x7, 0xf0,0x40,0x3e,0x73, -0x4f,0x87,0x3d,0xef,0x4, 0xb9,0xea,0x26,0x7f,0x48,0x17,0x80,0xe0,0x3, 0x1c,0x6b, -0x38,0xef,0x11,0x7f,0x3f,0xfb,0xe0,0x2, 0x1, 0xb6,0xe0,0x4, 0x1f,0xe0,0x17,0x0, -0xa9,0x85,0xaf,0xf, 0xc0,0x14,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xc7,0x81,0xe1,0x80, -0xb4,0x1a,0xe2,0x1, 0xc7,0xff,0xe1,0x80,0xb4,0x1b,0xe1,0x80,0xb4,0x1c,0xe1,0x80, -0xac,0x1d,0xe1,0x80,0xab,0x19,0xe0,0x41,0xaa,0x4e,0x38,0xff,0xc7,0x10,0x1, 0xef, -0x0, 0xc9,0xea,0x26,0x7d,0x1c,0xea,0x26,0x7f,0x48,0xea,0x27,0x7d,0xe8,0xea,0x27, -0x7e,0x7c,0xea,0x26,0x7e,0x90,0xea,0x26,0x7c,0x84,0x17,0x80,0x88,0x82,0x3c,0x6f, -0x12,0x7f,0x13,0x1, 0x0, 0xeb,0xf0,0x18,0x36,0x24,0xf8,0xf, 0x3e,0x98,0xf0,0x0, -0x8d,0xcf,0xfe,0xfc,0xcd,0xcb,0xf0,0x40,0x3d,0xfb,0xe0,0x0, 0x3, 0xf1,0xe8,0x40, -0x3b,0x6b,0xe4,0x0, 0xc3,0x6, 0xf0,0xf, 0x3e,0x96,0xe0,0x3, 0xc7,0xe0,0x8d,0xf, -0xe2,0x0, 0xcd,0x1, 0xe0,0x1, 0x1, 0x51,0x3f,0x64,0x17,0x80,0x8d,0x4e,0xe8,0x40, -0x3d,0x7b,0xe0,0x1, 0x1, 0xc0,0x37,0xa4,0xe0,0xe, 0x3a,0x1f,0xf8,0xb, 0x3e,0x98, -0x99,0xb, 0x9d,0xe, 0xe0,0xe, 0x39,0x2a,0xe3,0xff,0xc7,0x7f,0xe0,0x43,0x3c,0x9e, -0xe2,0x0, 0xcc,0x80,0x2, 0x5, 0xe0,0xe, 0x3d,0x22,0xe3,0xff,0xc7,0x7f,0x3f,0x94, -0x9d,0x9b,0x9f,0x9f,0xe0,0x2, 0x3d,0xaf,0xe3,0xff,0xc1,0x7f,0xe0,0x43,0x3d,0x12, -0xe2,0x0, 0xcd,0x0, 0x2, 0x5, 0xe0,0x2, 0x3f,0xab,0xe3,0xff,0xc1,0x7f,0xe8,0x40, -0x3c,0x6b,0xea,0x26,0x7b,0x9c,0x39,0x1e,0xde,0xad,0xf0,0x1e,0x35,0xa1,0xe8,0xe, -0x3b,0x9e,0xe3,0xff,0xc1,0x7f,0x9d,0x8e,0xb1,0xe, 0xea,0x26,0x7f,0x10,0xe8,0xe, -0x3f,0x1b,0x8d,0xe, 0xe2,0x1, 0xcd,0x7f,0x1, 0x3, 0xc5,0x1, 0xad,0xe, 0xea,0x26, -0x7f,0x4, 0xf0,0x1b,0x3d,0x9e,0xe8,0x0, 0x8f,0xb, 0x2f,0x13,0xe2,0x0, 0xcd,0xbc, -0x2, 0x9f,0x17,0x3c,0xe1,0x2a,0x3d,0x9e,0x25,0x4, 0xe1,0x2e,0x39,0x1e,0x2f,0xf, -0x3f,0x6b,0xc7,0x3c,0x39,0x7e,0x5, 0x19,0xe2,0x0, 0xcd,0xbc,0x2, 0x88,0x0, 0x95, -0xc7,0x7f,0xe2,0x2, 0xc9,0x3f,0xe8,0x0, 0xaf,0xb, 0x2, 0xe9,0xe8,0x40,0x3f,0xec, -0xc7,0x81,0xf0,0x40,0x3e,0x6f,0xf2,0x1, 0xc6,0x7f,0xe7,0xfe,0x0, 0xc1,0x3f,0x6b, -0xe0,0x2, 0xc7,0x40,0x39,0x7e,0x5, 0x5e,0xe0,0x4, 0x1f,0x60,0x8f,0xe, 0x27,0x6, -0xc7,0x1, 0xe0,0x22,0x39,0x3e,0xe3,0xff,0xc1,0x7f,0xe0,0x0, 0x1f,0x2e,0x8f,0xe, -0x2f,0x66,0xef,0xfd,0xda,0x27,0xe2,0x0, 0xcc,0x0, 0xe8,0x40,0x3f,0x6a,0xe8,0x6e, -0x39,0xa9,0x39,0x7e,0x5, 0xb7,0xf0,0xe, 0x3e,0x96,0xe0,0x3, 0xc7,0x60,0x8d,0x8e, -0x2d,0xb7,0x15,0x83,0xf0,0xd, 0x3e,0x96,0xe0,0x3, 0xc6,0xe1,0xad,0x8e,0x17,0x3, -0xaf,0xd, 0x21,0xa8,0x3f,0x63,0xc7,0x7f,0x39,0xee,0xf8,0x18,0x3c,0x1d,0xe2,0x1, -0xc1,0xff,0x15,0x10,0xe8,0x40,0x3c,0xe8,0xe2,0x0, 0x7c,0x8, 0xe0,0x1b,0x31,0xa4, -0xef,0xf5,0xd0,0x12,0xf8,0x1b,0x3d,0x9d,0x15,0x10,0xe8,0x40,0x3c,0xeb,0xe8,0x40, -0x3c,0x68,0xef,0xf5,0xd0,0x9, 0x15,0x10,0xe2,0x0, 0x7c,0x88,0xe8,0x40,0x3c,0x6b, -0xef,0xf5,0xd0,0x2, 0xe8,0x40,0x3f,0x6c,0xc7,0x7f,0xf0,0x40,0x3e,0x6e,0xf2,0x1, -0xc6,0x7f,0xf0,0x1e,0x3f,0x17,0xe8,0x0, 0xb1,0xe, 0xe7,0xff,0x0, 0xa1,0x15,0x81, -0x0, 0xca,0xc7,0x81,0x3d,0x6f,0xe2,0x1, 0xc5,0x7f,0x3d,0x7b,0xc7,0x10,0xe7,0xfe, -0x4, 0xb7,0xe7,0xff,0x0, 0x95,0xea,0x26,0x7f,0x1c,0xf0,0xd, 0x35,0xa1,0x3f,0x1d, -0x17,0x80,0xb7,0x8e,0xf0,0xf, 0x35,0xa4,0x3f,0x94,0x17,0x7f,0xaf,0x4f,0xea,0x27, -0x7f,0x68,0x3f,0x1d,0x17,0x80,0xb7,0x8e,0xea,0x27,0x7f,0xfc,0x3f,0x9d,0x17,0x0, -0xb7,0xf, 0xea,0x26,0x7f,0x84,0xf0,0x1b,0x3d,0x9f,0xe8,0x0, 0xad,0xb, 0xe7,0xfe, -0x0, 0xf7,0x8d,0x4e,0x3d,0x7b,0x3, 0x96,0x3e,0x6a,0xe4,0x0, 0xc6,0x6, 0x3e,0x18, -0xe0,0x3, 0xc6,0x60,0x8c,0x8c,0xe2,0x0, 0xcc,0x81,0x1, 0x8c,0xea,0x26,0x7e,0x1c, -0xe0,0xd, 0x35,0x21,0x3e,0x1d,0xea,0x26,0x7e,0x84,0x3e,0x9a,0xb0,0x8c,0xac,0x8d, -0xa9,0x4e,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xc7,0x10,0xe7,0xfd,0x0, 0xad,0xe0,0x3, -0x1f,0xe0,0x8e,0xf, 0xe0,0x2, 0x2e,0x15,0x8, 0xb7,0xe0,0x1, 0x1f,0xf8,0xf0,0x3, -0x1b,0xeb,0x8a,0x8f,0xe0,0x4, 0x1f,0xb4,0xf0,0x0, 0x1a,0x24,0x88,0xef,0x89,0xff, -0x3f,0x61,0x3f,0xe3,0xc7,0x7f,0xc7,0xff,0x39,0x6e,0x3a,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe2,0x1, 0xc2,0x7f,0xe0,0x4, 0x1f,0xb9,0xe0,0x43,0x3b,0x2, 0xe0,0x43,0x3b,0x84, -0xe8,0x40,0x3c,0x67,0x3e,0xec,0x3f,0x6c,0xf0,0x40,0x3b,0x6c,0xf0,0x40,0x3a,0xec, -0x3c,0xec,0x3d,0xec,0xe2,0x1, 0xc5,0xff,0x3a,0xfb,0x2, 0x82,0xb, 0xe1,0xf0,0x0, -0x88,0xc8,0xf2,0x1, 0xc8,0xff,0xf0,0x0, 0xa8,0x8f,0x1, 0x1d,0xe8,0x40,0x3d,0xe1, -0xe4,0x0, 0xc5,0x86,0xe8,0xb, 0x3d,0x97,0xe0,0x3, 0xc5,0xe0,0x8d,0x8b,0xe2,0x0, -0xcd,0x81,0x1, 0x11,0xea,0x26,0x7d,0xc8,0xf0,0x0, 0x11,0x0, 0x3d,0x6b,0xf8,0x40, -0x39,0xe2,0xf2,0x1, 0xc1,0xff,0xe8,0x40,0x3a,0xf3,0x2, 0x89,0xe8,0x40,0x3e,0xe6, -0xe8,0x40,0x3f,0x65,0xc6,0x1, 0xc4,0x10,0xc7,0x87,0x0, 0xd4,0xf0,0x0, 0x88,0x4b, -0xf8,0x40,0x39,0xe2,0xf8,0x40,0x38,0xf0,0xf0,0x0, 0xc1,0x1, 0xc5,0x90,0x1, 0xe8, -0x3d,0xec,0xe4,0x0, 0xc5,0x85,0xe0,0x2, 0xc5,0xca,0xe8,0xb, 0x3d,0x94,0x8d,0x8b, -0xe2,0x0, 0xcd,0x81,0x1, 0xae,0xf0,0xd, 0x31,0xa4,0xe0,0xe, 0x3d,0x1d,0x9d,0x8e, -0xf0,0x0, 0x99,0x8, 0xf0,0x13,0x39,0x2b,0xe8,0x43,0x3f,0x13,0xe2,0x0, 0xcf,0x0, -0xe0,0x0, 0x5, 0x63,0xee,0x72,0xcf,0x3, 0xf0,0x40,0x39,0x7b,0x3, 0x85,0xe0,0x41, -0x3f,0x4e,0xe0,0x43,0x3f,0xe, 0x3d,0x1d,0xf0,0x0, 0x99,0x98,0x9d,0x9a,0xf0,0xa, -0x39,0xab,0xe0,0x43,0x3e,0x9a,0xe2,0x0, 0xce,0x80,0xe0,0x0, 0x5, 0x54,0xe6,0x72, -0xce,0x8a,0xf0,0x40,0x39,0xfb,0x3, 0x85,0xe0,0x41,0x3e,0xcd,0xe0,0x43,0x3e,0x8d, -0x27,0x20,0x8d,0x3f,0xf0,0x40,0x39,0xee,0xf2,0x1, 0xc1,0xff,0x8d,0xdf,0xe8,0xa, -0x3d,0x13,0xe0,0x43,0x3d,0xa, 0xe8,0xb, 0x3d,0x93,0xe0,0x43,0x3d,0x8b,0x38,0xfa, -0xad,0x3f,0xad,0xdf,0x2, 0x3d,0xab,0x3f,0x38,0xfb,0x2, 0x3f,0xab,0x5f,0x8d,0x9f, -0xe0,0x43,0x3d,0xb, 0xe0,0x12,0x3d,0x1e,0xe8,0x40,0x38,0xf2,0x2, 0x3c,0xa9,0x1f, -0xe7,0xff,0x26,0x9a,0x8d,0x4f,0xf0,0x40,0x39,0xed,0xf2,0x1, 0xc1,0xff,0x8d,0xef, -0xe8,0xa, 0x3d,0x13,0xe0,0x43,0x3d,0xa, 0xe8,0xb, 0x3d,0x93,0xe0,0x43,0x3d,0x8b, -0x39,0xfa,0xad,0x4f,0xad,0xef,0x2, 0x34,0xab,0xcf,0x39,0xfb,0x2, 0x36,0xab,0xef, -0x8d,0xaf,0xe0,0x43,0x3d,0xb, 0xe0,0x12,0x3d,0x1d,0xe8,0x40,0x39,0xf2,0x2, 0x32, -0xaa,0x2f,0xe7,0xfe,0x0, 0xf9,0xe0,0x41,0x3f,0x4e,0xe6,0x72,0xcf,0xe, 0xe7,0xff, -0x0, 0x9d,0xe0,0x41,0x3e,0xcd,0xe6,0x72,0xce,0x8d,0xe7,0xff,0x0, 0xac,0xe2,0x0, -0xcd,0x0, 0x3, 0x43,0xac,0xbf,0x0, 0xc1,0xe2,0x0, 0xcd,0x80,0x3, 0x41,0xac,0xdf, -0xe7,0xff,0x0, 0xbf,0xf0,0x41,0x39,0x4e,0xe8,0x40,0x3d,0x72,0x3, 0x3, 0xac,0x9f, -0x0, 0xc0,0xf0,0x13,0x39,0x9b,0xf0,0x0, 0xa9,0x9f,0xe7,0xff,0x0, 0xbb,0xe2,0x0, -0xcd,0x0, 0x3, 0x4c,0xac,0xcf,0x0, 0xca,0xe2,0x0, 0xcd,0x80,0x3, 0x4a,0xac,0xef, -0x0, 0xc8,0xf0,0x41,0x39,0x4d,0xe8,0x40,0x3d,0x72,0x3, 0x4, 0xac,0xaf,0xe7,0xfe, -0x0, 0xc3,0xf0,0x13,0x39,0x9b,0xf0,0x0, 0xa9,0xaf,0xe7,0xfe,0x0, 0xbd,0x38,0x82, -0x8, 0xb3,0xe0,0x1, 0x1f,0xf8,0x39,0xe8,0x89,0xf, 0xe0,0x15,0xa4,0x78,0x31,0x21, -0x3d,0x62,0x14,0x80,0xc4,0x14,0xef,0xf4,0xde,0xbf,0xe0,0x15,0xa4,0x73,0x3d,0x62, -0x14,0x80,0xef,0xf4,0xde,0xb9,0xea,0x28,0x7c,0x18,0x3d,0x62,0x14,0x80,0xef,0xf4, -0xde,0xb3,0xe0,0x4, 0x1f,0xd6,0x17,0x0, 0xaf,0xf, 0xaf,0x1f,0x9, 0xe1,0x8, 0xb7, -0xf8,0x0, 0xc, 0x3e,0xe1,0xfe,0xc0,0x54,0x3f,0xe8,0xe0,0x5, 0xc7,0xc4,0x8a,0xf, -0x3f,0xe8,0xe0,0x5, 0xc7,0xc5,0x8b,0x8f,0xe0,0x1, 0x1f,0xf8,0x39,0x68,0xf0,0x0, -0x8c,0x8f,0x2a,0x30,0x23,0x85,0x3f,0xe8,0xe0,0x5, 0xc7,0xcc,0xaa,0xf, 0x3c,0x62, -0xdf,0xc8,0x3b,0x60,0xc3,0x10,0xf0,0x1a,0x34,0xa4,0xe8,0x40,0x3d,0x6a,0xe0,0x1, -0x14,0xff,0x3c,0x66,0xef,0xf4,0xde,0x88,0x15,0x0, 0x3c,0xea,0x3e,0x66,0x3d,0xe4, -0x3c,0x62,0xdc,0x2c,0x3c,0xe8,0x3e,0x66,0xe8,0x40,0x3d,0xe9,0x3d,0x64,0x3c,0x62, -0xdc,0x25,0x3a,0xe8,0x39,0xe2,0xf0,0x40,0x3d,0xe2,0xf0,0x0, 0x14,0x0, 0xf0,0x0, -0x16,0x10,0xf8,0x40,0x3c,0x79,0xe0,0x0, 0x1, 0x50,0x3f,0x60,0xc7,0x10,0x17,0x80, -0x0, 0xb0,0x2b,0x8a,0x3f,0x68,0xe0,0x2, 0xc7,0x44,0x3f,0xe7,0x16,0xff,0xe8,0x40, -0x3f,0xf9,0xc7,0x10,0x1, 0x84,0x3f,0xe2,0x17,0x0, 0x0, 0x94,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0xe0,0x42,0xae,0x8e,0x0, 0xf4,0xe0,0x41,0x9e,0x8f,0xc7,0x1, 0x36,0xa3, -0xe0,0x41,0xb6,0x8f,0xe2,0x1, 0xc7,0x7f,0xe0,0x40,0x9e,0xff,0x36,0xa3,0xe0,0x40, -0xb6,0xff,0x3a,0x7e,0xc7,0x90,0x1, 0xf1,0xe7,0xff,0x0, 0xb5,0xc7,0x10,0xe8,0x0, -0x8e,0x4b,0xe0,0x41,0x8e,0xce,0x3e,0x7d,0x1, 0x14,0xc7,0x81,0xe2,0x1, 0xc7,0xff, -0x3f,0xf5,0x1, 0xf5,0xe0,0x8, 0x32,0xa4,0xe8,0x40,0x3d,0x6c,0xe8,0x40,0x3c,0xeb, -0x3c,0x16,0xef,0xf4,0xdd,0xf9,0x3f,0xe5,0xc7,0x81,0x3a,0xef,0xe2,0x1, 0xc2,0xff, -0xe8,0x40,0x3f,0xe8,0xc7,0x81,0xf0,0x40,0x3c,0x6f,0xf2,0x1, 0xc4,0x7f,0xf0,0x0, -0xc5,0x90,0xe7,0xff,0x0, 0xb0,0x3f,0xe2,0xe0,0x2, 0xc7,0xc0,0x3c,0xe0,0xe8,0x40, -0x3d,0x6a,0xc4,0x90,0x3c,0x6f,0xef,0xf4,0xdd,0xdf,0x2b,0x8c,0xe8,0x40,0x3d,0x6a, -0x3c,0xe2,0xef,0xf4,0xdd,0xd9,0xe0,0x1, 0x1d,0xf8,0x17,0x80,0x8e,0x8b,0xe0,0x6, -0x0, 0xb0,0x3f,0xe2,0xe0,0x5, 0xc7,0xcc,0x8a,0x8f,0x2a,0xf6,0xe0,0x2, 0x1f,0xc3, -0x3d,0x62,0xf0,0x1, 0x98,0xff,0xe0,0x4, 0x1f,0xec,0xe0,0x5, 0xc5,0x52,0x8f,0x8f, -0xf0,0x4, 0x19,0xe5,0x7f,0x81,0xf0,0x40,0x3d,0x62,0xe0,0x3, 0x1f,0xec,0xf0,0x4, -0x1e,0x56,0xf0,0x0, 0x8c,0x8f,0xe0,0x2, 0x1f,0xb1,0xf0,0x1, 0x1b,0x25,0xe0,0xe, -0x8f,0xcf,0xf0,0x3, 0x1b,0xeb,0xc7,0xff,0xf0,0x40,0x3d,0xe5,0xf0,0x2, 0x16,0x80, -0xf1,0xff,0x11,0x7c,0x7d,0x3, 0x7f,0x82,0x3f,0xe5,0xe2,0x1, 0xc7,0xff,0x3a,0x7f, -0x5, 0xcb,0x3f,0xe2,0xe0,0x2, 0xc7,0xc4,0xe8,0x40,0x3e,0x6b,0x0, 0x8a,0xe1,0x82, -0x8f,0xf, 0xe8,0x0, 0x8d,0xca,0x3e,0xec,0x3d,0xfe,0xc6,0x81,0x1, 0xa, 0x3e,0x6d, -0x3f,0x6c,0xe2,0x1, 0xc7,0x7f,0xf0,0x40,0x3c,0x7e,0x2, 0xf2,0xe7,0xff,0x0, 0xb5, -0xe0,0x7, 0x32,0xa4,0xe0,0x6, 0x36,0x24,0xe0,0x14,0x39,0x17,0x3b,0x12,0xe8,0x0, -0x9d,0x4, 0xe0,0x14,0x9c,0x6, 0xe0,0xf, 0x3d,0x28,0xe3,0xff,0xc7,0xff,0xe0,0x43, -0x3d,0x9f,0xe2,0x0, 0xcd,0x80,0x2, 0x5, 0xe0,0xf, 0x3c,0x2a,0xe3,0xff,0xc7,0xff, -0xe8,0x0, 0x9d,0x14,0xe0,0x14,0x98,0x96,0xe0,0xb, 0x3d,0x21,0xe3,0xff,0xc5,0xff, -0xe0,0x43,0x3c,0x9b,0xe2,0x0, 0xcc,0x80,0x2, 0x5, 0xe0,0xb, 0x38,0xaa,0xe3,0xff, -0xc5,0xff,0x3e,0xee,0xe4,0x0, 0xc6,0x86,0x3d,0x9f,0x3e,0x92,0xe0,0x3, 0xc6,0xe0, -0x8e,0x8d,0xea,0x28,0x7c,0x98,0xe2,0x0, 0xce,0x81,0xe3,0xff,0xc5,0xff,0xe0,0xd, -0x37,0x21,0xe0,0x15,0xa7,0xf2,0x1, 0x9c,0xf0,0xa, 0x39,0x9e,0xf0,0x0, 0x10,0x0, -0xf0,0x0, 0x12,0x80,0xf0,0x0, 0xa8,0xa, 0xe2,0x0, 0xcf,0x1, 0xe0,0xa, 0x3f,0x9d, -0xf0,0x0, 0xb2,0x8a,0xf0,0x1, 0xb2,0xaa,0x2, 0x85,0xf0,0xa, 0x3e,0x1e,0xf0,0x0, -0xa8,0xa, 0xe0,0xa, 0x3c,0x9d,0xf0,0x0, 0x17,0x0, 0xf0,0x0, 0xb7,0xa, 0x65,0x3, -0xf0,0x0, 0x88,0xa, 0xf0,0x5, 0x28,0x15,0xe8,0x40,0x3d,0xf1,0xf8,0x40,0x3a,0xeb, -0xe0,0x0, 0x3, 0xf4,0xe0,0xa, 0x35,0xa8,0xe9,0x2a,0x3d,0x31,0xf0,0x0, 0x17,0x10, -0xe3,0xff,0xc5,0x7f,0xe9,0x2a,0x3d,0x6e,0xf0,0x0, 0x20,0x6a,0x3f,0x9d,0xf0,0x1, -0x9f,0x2f,0xf0,0x40,0x3f,0x7b,0xe0,0x0, 0x3, 0xec,0xf0,0x0, 0x9f,0xf, 0xb5,0xf, -0xe8,0x40,0x3d,0x6e,0xe0,0x1, 0xb5,0xaf,0xe9,0x2f,0x3d,0x5d,0xe3,0xff,0xc7,0xff, -0xf0,0x0, 0x20,0x62,0xf0,0xa, 0x3e,0xaf,0xf0,0x15,0x3a,0xba,0xf0,0x0, 0x60,0x1, -0xfe,0xc8,0xca,0x85,0xe8,0xf, 0x3f,0x95,0xe3,0xff,0xc7,0xff,0x15,0x10,0xf2,0x0, -0xc8,0x2, 0xe1,0x2f,0x3f,0xea,0xe9,0x2f,0x3f,0xdd,0x1, 0x8d,0xf2,0x0, 0xcc,0x82, -0x1, 0x8a,0xe8,0xf, 0x9d,0x6, 0x25,0x7, 0xe6,0xcf,0xcf,0x8f,0xf0,0x0, 0x17,0x8, -0xe9,0x2f,0x3f,0xee,0xe0,0x0, 0x1d,0x24,0x3d,0x17,0xe0,0x4, 0xc5,0x26,0xf0,0x0, -0x8a,0x8a,0xea,0x25,0x7d,0x70,0xf2,0x0, 0xca,0x8f,0x2, 0x85,0xf8,0xf, 0x98,0x6, -0xf0,0x0, 0x20,0x3d,0xe0,0x10,0x3c,0x9d,0xf8,0x0, 0x9f,0x0, 0xf2,0x3, 0xcf,0x73, -0x2, 0xb5,0xf0,0x0, 0x17,0x0, 0xe2,0x0, 0xcf,0x1, 0xf8,0x0, 0xb7,0x0, 0x2, 0xbb, -0xf2,0x0, 0xca,0x89,0xfa,0x26,0x7a,0xc4,0xe0,0x2, 0x5, 0xba,0xf0,0x15,0x3a,0x9e, -0xf8,0x0, 0x8a,0x85,0xf2,0x0, 0xca,0xb2,0x5, 0xa4,0xe0,0x15,0x3c,0x9d,0xf0,0x0, -0x17,0x0, 0xf8,0x0, 0xb7,0x5, 0x0, 0x9d,0xe0,0x2, 0x15,0x0, 0x3f,0x9d,0xf0,0x1, -0x9f,0x2f,0xf0,0x40,0x3f,0x7b,0x5, 0x84,0x9d,0xf, 0xe7,0xff,0x0, 0x9d,0xb5,0xf, -0xe7,0xff,0x0, 0x9a,0xf0,0x0, 0x62,0x81,0xf2,0x0, 0xca,0x82,0xe7,0xff,0x1, 0xbc, -0xe7,0xff,0x2d,0x2e,0x3f,0xea,0xe7,0xff,0x0, 0xb7,0xe2,0x0, 0xcf,0x1, 0x5, 0xd1, -0xe0,0x15,0x3c,0x9d,0xf8,0x0, 0x9a,0x85,0xf2,0x0, 0xca,0xa7,0xe0,0x2, 0x2, 0x94, -0xf0,0x0, 0x2a,0x88,0xe0,0x15,0x3d,0x1d,0xf0,0x1, 0x10,0x48,0xf8,0x0, 0xb0,0x5, -0xe2,0x3, 0xcd,0xdf,0x2, 0x92,0xe0,0x15,0x3d,0x1d,0xf0,0x40,0x3f,0x6b,0xf8,0x0, -0x98,0x5, 0xf0,0x0, 0xc7,0x1f,0xf8,0x40,0x3f,0x70,0x4, 0x7, 0xf0,0x40,0x38,0x6b, -0xf0,0x0, 0xc0,0x20,0xf8,0x0, 0xb0,0x5, 0x3d,0x1d,0x9d,0xa, 0x3d,0x7b,0xe0,0x2, -0x5, 0x8c,0xe0,0xb, 0x3c,0x9d,0x9d,0x8b,0xe2,0x3, 0xcd,0xf3,0xe0,0x2, 0x2, 0x85, -0xf2,0x0, 0xcc,0x82,0x2, 0x8d,0xe2,0x0, 0xcf,0x1, 0x2, 0x8a,0xe8,0xf, 0x9d,0x6, -0x25,0x7, 0xf0,0xa, 0x3e,0x1e,0xf0,0x0, 0x10,0x0, 0xf0,0x0, 0xa8,0xa, 0xe2,0x0, -0xcd,0xa7,0x2, 0x84,0x3c,0x9d,0xc5,0x81,0xb5,0x89,0xf0,0xb, 0x39,0x9e,0x8d,0x8b, -0xe2,0x0, 0xcd,0x88,0x2, 0x82,0x17,0x80,0x3d,0xef,0xc5,0xfe,0xe3,0xff,0xc5,0xff, -0xe2,0x0, 0xcd,0xbd,0x2, 0x93,0xf0,0xb, 0x3b,0x97,0x8d,0xfb,0x25,0x8f,0xf0,0x0, -0x67,0x2, 0xe8,0x40,0x3d,0xfe,0x3, 0xa, 0x3f,0xbf,0xc7,0xa0,0x37,0x86,0xe2,0x0, -0xcf,0x83,0xe0,0x1, 0x5, 0x6d,0xe3,0xff,0xc7,0xff,0xf0,0xb, 0x3b,0x97,0x9d,0x8b, -0xe2,0x2, 0xcd,0x9a,0xe0,0x1, 0x2, 0xe7,0x3d,0xec,0xc5,0x94,0x35,0xa4,0xe8,0xb, -0x3d,0x97,0x9d,0x8b,0xe2,0x2, 0xcd,0x9e,0xe0,0x1, 0x2, 0xeb,0xe8,0x40,0x3c,0xe2, -0xe8,0x7, 0x3b,0x97,0x9d,0x97,0xe2,0x1, 0xcd,0xca,0xe0,0x1, 0x2, 0xeb,0xc6,0x14, -0x36,0x24,0xe8,0xc, 0x3e,0x17,0x9e,0x1c,0xe2,0x1, 0xce,0x4e,0xe0,0x1, 0x2, 0xef, -0xe8,0x0, 0x9b,0x94,0xe0,0xc, 0x3b,0xa1,0xe3,0xff,0xc6,0x7f,0xe0,0x43,0x3d,0x9c, -0xe2,0x0, 0xcd,0x80,0x2, 0x5, 0xe0,0xc, 0x38,0xa7,0xe3,0xff,0xc6,0x7f,0xf8,0x0, -0x9a,0x84,0xf0,0xb, 0x3a,0xa8,0xe3,0xff,0xc5,0xff,0xe0,0x43,0x3d,0x1b,0xe2,0x0, -0xcd,0x0, 0x2, 0x5, 0xe8,0xb, 0x3c,0x25,0xe3,0xff,0xc5,0xff,0xea,0x27,0x7d,0x7c, -0xfa,0x27,0x7a,0x68,0x3d,0x1d,0xf0,0x14,0x3a,0x1d,0x95,0xa, 0xf8,0x0, 0x92,0x4, -0xe0,0x41,0x3d,0x2a,0xf8,0x41,0x3a,0x24,0xe8,0xa, 0x3d,0x14,0xe3,0xff,0xc5,0x7f, -0xe2,0x2, 0xcd,0x0, 0xe0,0x1, 0x2, 0xc4,0xf0,0x3, 0x18,0x4e,0xf8,0xa, 0x8a,0x0, -0xf0,0x1, 0x2a,0x3e,0xe0,0x10,0x35,0x41,0xe8,0xa, 0x3d,0x10,0xe0,0x14,0x3e,0x1b, -0xf3,0xff,0xc2,0x7f,0xe3,0xff,0xc5,0x7f,0xf0,0x0, 0x17,0x18,0xf0,0x10,0x32,0x44, -0xe9,0x2a,0x3d,0x6e,0xf1,0x2a,0x38,0x6a,0x35,0x28,0xf0,0x0, 0xc2,0x1, 0xe9,0x2a, -0x3d,0x34,0xe3,0xff,0xc5,0x7f,0x3d,0x7f,0x3, 0x85,0x3f,0xea,0xc7,0x81,0xe3,0xff, -0xc7,0xff,0x3d,0xbf,0xf0,0x40,0x3a,0xf8,0xe6,0xc8,0xcd,0x8b,0x3d,0xd9,0xe0,0x1, -0x5, 0xa9,0x3c,0x1b,0xe0,0x14,0xb4,0x6, 0x3f,0xbc,0x3b,0xf1,0xe6,0xc8,0xcf,0x8f, -0x3c,0xdf,0xe0,0x1, 0x5, 0xa8,0x38,0x99,0xe0,0x14,0xb0,0x96,0xe2,0x0, 0xcf,0x1, -0x2, 0x91,0xf0,0x3, 0x1a,0xce,0xea,0x26,0x7d,0x44,0xe8,0x0, 0x8f,0xe5,0x27,0x85, -0xe8,0xf, 0x9f,0x86,0xe0,0x1, 0x2f,0xa0,0x3f,0x1a,0xf0,0x0, 0x17,0x0, 0xf0,0x0, -0xaf,0xe, 0xc2,0x81,0xf0,0x0, 0xc5,0x10,0xe7,0xfb,0x0, 0xe8,0xf0,0x1e,0x3a,0x9e, -0xf8,0x0, 0x88,0xe, 0xf7,0xfd,0x20,0x44,0xf1,0xff,0xc0,0x7f,0xf8,0x0, 0xa8,0xe, -0xe7,0xfd,0x0, 0xbe,0xe0,0x15,0x3d,0x1d,0xf8,0x0, 0x98,0x5, 0xf2,0x1, 0xc8,0x47, -0x2, 0x85,0xf0,0x1, 0x10,0x48,0xf8,0x0, 0xb0,0x5, 0xe0,0x15,0x3d,0x1d,0xf8,0x0, -0x98,0x5, 0xf2,0x3, 0xc8,0x60,0xe7,0xfd,0x5, 0xf9,0xf0,0x3, 0x17,0x60,0xf8,0x0, -0xb7,0x5, 0xe7,0xfd,0x0, 0xf3,0xe2,0x0, 0xcf,0x1, 0x2, 0x92,0xf0,0xa, 0x3e,0x1e, -0x8d,0x8a,0xe2,0x0, 0xcd,0x81,0x2, 0x8c,0xf2,0x0, 0xcc,0x82,0x2, 0x89,0xf8,0xf, -0x9a,0x86,0xf0,0x0, 0x22,0x86,0xc5,0x81,0xad,0x8a,0xe7,0xfe,0x0, 0x80,0x3c,0x9d, -0xf0,0x3, 0x12,0xf4,0xf0,0x0, 0xb2,0x89,0xe7,0xfe,0x0, 0x80,0x17,0x84,0xe7,0xfe, -0x0, 0x96,0xe2,0x41,0xcd,0x9d,0xe7,0xfe,0x5, 0xa3,0x3d,0xec,0xc5,0x94,0x35,0xa4, -0xe8,0xb, 0x3d,0x97,0x9d,0x8b,0xe2,0x41,0xcd,0x99,0xe7,0xfe,0x2, 0x99,0xe2,0x0, -0xcf,0x9f,0xe7,0xfe,0x2, 0x95,0xe1,0xff,0x14,0xff,0x17,0xa0,0xe7,0xfe,0x0, 0x92, -0xe2,0x94,0xcd,0xd5,0xe7,0xfe,0x5, 0x9e,0xc6,0x14,0x36,0x24,0xe8,0xc, 0x3e,0x17, -0x9e,0x1c,0xe2,0x94,0xce,0x51,0xe7,0xfe,0x2, 0x95,0xe2,0x0, 0xcf,0x9f,0xe7,0xfe, -0x2, 0x91,0xe1,0xff,0x14,0xff,0x17,0xa0,0xe7,0xfe,0x0, 0x8c,0xf0,0xa, 0x39,0x9e, -0xf0,0x0, 0x8a,0xa, 0xf2,0x0, 0xca,0x8, 0xe7,0xfe,0x1, 0xdd,0xf0,0x0, 0x10,0x7, -0xf0,0x1, 0x12,0x20,0xe9,0x2f,0x3f,0xd4,0xf0,0x0, 0xa8,0xa, 0xe7,0xfe,0x0, 0xd1, -0x3c,0x2b,0xe0,0x41,0x3d,0xcb,0xe3,0xff,0xc5,0xff,0xe0,0x14,0xb4,0x6, 0xe7,0xfe, -0x0, 0xd5,0x38,0xa9,0xe0,0x41,0x3c,0xc9,0xe3,0xff,0xc4,0xff,0xe0,0x14,0xb0,0x96, -0xe7,0xfe,0x0, 0xd6,0xea,0x26,0x78,0xc0,0xe0,0xf, 0x38,0x9d,0x9e,0xf, 0xea,0x26, -0x7c,0x3c,0x3d,0x9c,0xe3,0xff,0xc5,0xff,0xe0,0x43,0x3b,0x1b,0xe0,0x7, 0x3c,0x1d, -0xb3,0xf, 0xc5,0xbf,0x9f,0x87,0xe3,0xff,0xc5,0xff,0x3c,0x9f,0xe3,0xff,0xc4,0xff, -0xe0,0x43,0x3f,0x99,0xe2,0x0, 0xcd,0xfe,0xb7,0x87,0x3f,0x1a,0x2, 0x90,0xc4,0x9f, -0xe3,0xff,0xc4,0xff,0xe2,0x0, 0xcc,0xbe,0x2, 0x8a,0x8f,0x8e,0xe2,0x1, 0xcf,0xff, -0xe7,0xfe,0x1, 0x41,0xc7,0x81,0xaf,0x8e,0xe7,0xfe,0x0, 0xbd,0x38,0x9d,0x15,0x0, -0x33,0x1, 0x3e,0x98,0x37,0x81,0xb3,0x1, 0xb7,0x8d,0xad,0xe, 0xe7,0xfe,0x0, 0xb3, -0xe0,0x13,0x9f,0x3, 0xc7,0x81,0x37,0x43,0xe0,0x41,0xb7,0x3, 0xe2,0x1, 0xc7,0xff, -0xe0,0x13,0x9f,0x13,0x37,0x43,0xe0,0x40,0xb7,0x73,0x3f,0x63,0xe0,0x2, 0xc7,0x34, -0x8f,0xe, 0xe0,0x41,0xaf,0x43,0x3f,0x63,0xe0,0x2, 0xc7,0x35,0x8f,0xe, 0xe0,0x41, -0xaf,0x33,0x3f,0x63,0xe0,0x2, 0xc7,0x36,0x8f,0xe, 0xe0,0x41,0xaf,0x23,0x3f,0xfd, -0xc1,0x90,0x1, 0xdf,0xe0,0x1, 0xc0,0x2c,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0xe8,0x40, -0x3d,0xf1,0xf0,0x0, 0x12,0x98,0xe7,0xfa,0x4, 0xef,0xe0,0x2, 0x15,0x0, 0xe7,0xfa, -0x0, 0xf7,0xe0,0x4, 0x1c,0x6c,0x15,0xd, 0x14,0x80,0xe6,0x95,0x0, 0xc5,0x8, 0xb2, -0xe0,0x0, 0x1f,0xa5,0xe0,0x0, 0x1c,0xa4,0x8d,0x8f,0x17,0x0, 0x14,0x7d,0x10,0x83, -0x3d,0x6e,0xe2,0x1, 0xc5,0x7f,0x3d,0x7b,0x4, 0x86,0xe0,0x4, 0x1f,0xec,0x17,0x0, -0xaf,0xf, 0x9, 0x61,0xe0,0xf, 0x37,0x21,0xe0,0x2, 0xc7,0x8f,0x3f,0x99,0x89,0xf, -0x16,0x80,0x3f,0xed,0xe2,0x1, 0xc7,0xff,0x3d,0xff,0x2, 0x83,0xc7,0x1, 0x0, 0xe9, -0x3d,0x7f,0x1, 0x11,0xe0,0xf, 0x36,0xa1,0xe0,0x2, 0xc7,0x8f,0x3f,0x99,0x8f,0x8f, -0xe0,0xc, 0x39,0x2f,0xe0,0x43,0x3f,0x9c,0xe2,0x0, 0xcf,0x80,0x5, 0x6, 0xe0,0x2f, -0x38,0xac,0x2f,0x86,0xc6,0x81,0x0, 0xe6,0xe0,0x2f,0x3f,0xa8,0x0, 0xfb,0xe0,0x4, -0x1f,0xec,0x17,0x2, 0x0, 0xd6,0xe0,0x4, 0x1f,0xec,0x8f,0xf, 0x2f,0x4, 0xe0,0x1, -0xaf,0x3f,0x0, 0x84,0xe2,0x0, 0xcf,0x2, 0x1, 0x7b,0xe0,0x0, 0x1f,0x2e,0x8f,0xe, -0x27,0x4, 0x17,0x4, 0xe0,0x1, 0xaf,0x3f,0xe0,0x1, 0x8f,0x4f,0xe0,0x1, 0x8e,0xbf, -0x3e,0xfe,0x3, 0x83,0xe0,0x1, 0xaf,0x3f,0x38,0x82,0xe0,0x4, 0x1d,0xec,0x8e,0x88, -0xe0,0xe, 0x3d,0x99,0xe2,0x1, 0xc6,0xfd,0x8f,0x9e,0x3e,0x6b,0x2e,0x92,0xe0,0x1, -0x8d,0xbb,0x3d,0xff,0x5, 0x85,0xc7,0x81,0xaf,0x9e,0x14,0x1, 0x38,0x82,0xe2,0x1, -0xcf,0xff,0x1, 0x2, 0xae,0x88,0x3c,0x9c,0x17,0xff,0xaf,0x99,0x14,0x0, 0x0, 0xf7, -0xe2,0x1, 0xcf,0xff,0x17,0x80,0xaf,0x9e,0x1, 0xf1,0x0, 0xf9,0xea,0x0, 0xcf,0x94, -0xbf,0x88,0x8f,0xd9,0xaf,0xc8,0x8f,0xe9,0xaf,0xd8,0x17,0x80,0xaf,0xe8,0xe0,0xff, -0x17,0xff,0x9f,0x9, 0xb7,0xc8,0x9f,0x99,0xb7,0x58,0xb7,0xe8,0xb7,0x78,0xe0,0x1, -0xb7,0x88,0xe0,0x1, 0xb7,0x18,0xe0,0x1, 0xb7,0xa8,0xe0,0x1, 0xb7,0x38,0x17,0x1, -0xe0,0x1, 0xb7,0xc8,0x17,0x80,0xe0,0x2, 0xb7,0x8, 0xe0,0x2, 0xb7,0x98,0xe0,0x4, -0xaf,0xc8,0xe0,0x1, 0xb7,0xd8,0xe0,0x1, 0xb7,0xe8,0xa7,0xb9,0xe0,0x1, 0xb7,0x78, -0xe0,0x1, 0xbf,0xa8,0x38,0x82,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x7c,0xe0,0x1, -0x1f,0xfd,0xe0,0x1, 0x1f,0x7c,0x89,0x8f,0x39,0x68,0xe0,0xf, 0x31,0xa8,0x89,0x8e, -0xe0,0x1, 0x1f,0x7a,0x39,0xcf,0xe0,0x1, 0x1f,0xfb,0x3b,0x63,0x8a,0xf, 0xf0,0x40, -0x3e,0x63,0xe0,0xf, 0x32,0x28,0x8a,0xe, 0x35,0x24,0x3a,0x4f,0xf0,0x40,0x3c,0x64, -0xf0,0x40,0x3d,0xe4,0xf0,0x40,0x3f,0x68,0xe1,0xff,0xc3,0x1b,0xf1,0xff,0xc4,0x1b, -0xe0,0x1, 0xc1,0x20,0x12,0x80,0xf1,0xff,0xc5,0xff,0xf1,0xff,0xc6,0x7f,0xe0,0x19, -0x3d,0x12,0xf0,0x40,0x3e,0xe9,0xf0,0x3, 0xc7,0x60,0xe3,0xff,0xc3,0x7f,0xf3,0xff, -0xc4,0x7f,0xf0,0x40,0x3d,0x65,0x13,0x81,0xf8,0x43,0x3d,0x9b,0xf8,0x43,0x3e,0x1c, -0xe0,0x2, 0x15,0x0, 0xf0,0x40,0x3c,0xf2,0x1, 0x85,0xc0,0x4, 0xf8,0x0, 0xf, 0x28, -0xb, 0xe1,0x8f,0xc2,0xe2,0x1, 0xcf,0xff,0xe0,0x2, 0x1, 0x12,0x3f,0x6f,0xe4,0x0, -0xc7,0x6, 0xe8,0xe, 0x3f,0x1e,0x8f,0xe, 0xe2,0x0, 0xcf,0x2, 0xe0,0x4, 0x1, 0xa8, -0xe4,0x0, 0xc7,0xac,0x9f,0x2, 0xe8,0xf, 0x3f,0x9d,0xf0,0x4, 0x8b,0x2f,0x9c,0x92, -0x9e,0x5f,0xf0,0x0, 0x9b,0xef,0xf0,0x0, 0x23,0x7c,0xe0,0x1, 0x9d,0x9f,0xe0,0x1, -0x9e,0xaf,0xe0,0xb, 0x3f,0x2b,0xe0,0x43,0x3d,0x9b,0xe0,0xd, 0x3c,0xad,0xe2,0x0, -0xcd,0x80,0x38,0xeb,0xe0,0x43,0x3e,0x9d,0xe3,0xff,0xc0,0xff,0x2, 0x5, 0xe0,0x41, -0x38,0xc1,0xe3,0xff,0xc0,0xff,0xe2,0x0, 0xce,0x80,0x3c,0x6d,0xe3,0xff,0xc4,0x7f, -0x2, 0x5, 0xe0,0x41,0x3c,0x48,0xe3,0xff,0xc4,0x7f,0x9e,0xff,0xe0,0xb, 0x3f,0x2d, -0xe3,0xff,0xc5,0xff,0xf0,0x43,0x3a,0x9b,0xf2,0x0, 0xca,0x80,0x2, 0x5, 0xe0,0xb, -0x3e,0xae,0xe3,0xff,0xc5,0xff,0xf0,0x1, 0x9a,0x8f,0xe8,0xd, 0x3c,0xa5,0xe3,0xff, -0xc6,0xff,0xf0,0x43,0x3a,0x1d,0xf2,0x0, 0xca,0x0, 0x2, 0x5, 0xf0,0xd, 0x3a,0xa9, -0xe3,0xff,0xc6,0xff,0x3e,0x9b,0xf0,0x0, 0x8a,0x4f,0x8d,0xd2,0xe3,0xff,0xc6,0xff, -0xf0,0x40,0x3a,0x7b,0xf0,0x0, 0x8a,0xe2,0xf0,0x0, 0xa1,0xb2,0x3, 0x82,0xad,0xcf, -0xf0,0x0, 0x8a,0x5f,0xf8,0x40,0x3a,0x75,0x3, 0x83,0xf0,0x0, 0xaa,0xdf,0xf0,0x0, -0x8a,0x2f,0xf2,0x1, 0xca,0x79,0x2, 0x85,0xf0,0x0, 0xc2,0x1, 0xf0,0x0, 0xaa,0x2f, -0xf0,0x0, 0x8a,0x3f,0xf0,0x3, 0x2a,0x4e,0xf0,0x0, 0x89,0x2f,0xf2,0x0, 0xc9,0x27, -0xe0,0x1, 0x2, 0x99,0xf0,0x0, 0x98,0x8f,0xe0,0x12,0x35,0xa1,0xf4,0x0, 0xc0,0x83, -0xf8,0x40,0x38,0xf2,0x3, 0x15,0xe2,0x0, 0xcd,0xa8,0x5, 0x92,0xf0,0x0, 0x10,0x83, -0xf8,0x32,0x39,0x31,0xf0,0x0, 0xb1,0xf, 0xf0,0x0, 0xad,0x6f,0x0, 0x92,0xe0,0xb, -0x3f,0x2c,0xe0,0x43,0x3d,0x9b,0xe8,0xd, 0x3c,0xa7,0xe7,0xff,0x0, 0x8a,0xe2,0x0, -0xcd,0xa7,0x2, 0xf3,0xf0,0x0, 0x89,0x6f,0xf0,0x0, 0xc1,0x1, 0xf0,0x0, 0xa9,0x6f, -0xf0,0x0, 0x89,0x4f,0xf2,0x0, 0xc9,0x28,0x5, 0x9a,0xf0,0x0, 0x88,0xef,0xf2,0x0, -0xc8,0x82,0x2, 0x95,0xc5,0x94,0xe8,0x40,0x3d,0xf2,0x4, 0x7, 0x8d,0xdf,0xf0,0x15, -0x32,0xa1,0xf0,0x40,0x3a,0xfb,0x3, 0xb, 0xe0,0xb, 0x38,0x98,0xe2,0x0, 0xcd,0xe3, -0xe0,0x1, 0x5, 0x6, 0xe6,0xce,0xc8,0x81,0xe6,0xce,0xcc,0x8, 0xe0,0xb, 0x38,0x98, -0xe2,0x0, 0xcd,0x83,0x2, 0x3, 0x14,0x0, 0x38,0xe8,0xe2,0x0, 0xcf,0x63,0x5, 0x8b, -0x3b,0x7e,0x4, 0x89,0xe2,0x0, 0xcc,0xe3,0xe0,0x0, 0x5, 0xf6,0xe9,0x35,0x3c,0x98, -0xf0,0x2, 0x2a,0x78,0xe0,0x1, 0xa6,0xaf,0xe0,0x1, 0xb7,0x1f,0xf0,0xb, 0x39,0x9d, -0xe4,0xd, 0x35,0xcf,0x3e,0x9b,0x36,0x81,0xe0,0x1, 0xbe,0xaf,0xe0,0xd, 0x3c,0x11, -0xe0,0x1, 0xb4,0xaf,0xb6,0xcf,0xf0,0x0, 0x23,0x4, 0x16,0x81,0xb6,0x8f,0x9d,0x8f, -0x3d,0xf1,0xe0,0x0, 0x5, 0xf7,0x3d,0xf8,0xe0,0x0, 0x5, 0xf4,0xe0,0x1, 0xb7,0x3f, -0x3f,0x2c,0xe0,0x43,0x3f,0x1e,0x16,0x98,0xe0,0x1, 0xb4,0xcf,0xe8,0x9, 0x3c,0xa7, -0xe0,0x43,0x3c,0x99,0xe0,0x2d,0x3f,0x3d,0xe0,0x1, 0xb7,0x5f,0xe0,0x1, 0xb4,0xef, -0xe0,0x0, 0x26,0xcd,0xe0,0x1, 0xb6,0xff,0x17,0x18,0xe0,0x2e,0x3c,0xbe,0xe0,0x0, -0x27,0x50,0xe0,0x2, 0xb7,0xf, 0xf0,0x0, 0xb3,0x92,0xb6,0x2, 0xc1,0x10,0xe7,0xfd, -0x0, 0xe3,0xe2,0x0, 0xcd,0xc6,0x5, 0x89,0xe2,0x0, 0xce,0xf7,0xe7,0xff,0x2, 0xa8, -0x15,0xb2,0xb5,0x8f,0xe7,0xff,0x0, 0xa4,0xe2,0x0, 0xcd,0xbc,0x5, 0x87,0xe2,0x0, -0xce,0xed,0xe7,0xff,0x2, 0x9d,0x15,0xa8,0x0, 0xf5,0xe2,0x0, 0xcd,0xb2,0x5, 0x87, -0xe2,0x0, 0xce,0xe3,0xe7,0xff,0x2, 0x94,0x15,0x9e,0x0, 0xec,0xe2,0x0, 0xcd,0xa8, -0x5, 0x87,0xe2,0x0, 0xce,0xc5,0xe7,0xff,0x2, 0x8b,0x15,0x9a,0x0, 0xe3,0x9d,0x8f, -0xe2,0x0, 0xcd,0x94,0xe7,0xff,0x5, 0x84,0xc5,0xfe,0x0, 0xdc,0x14,0x0, 0x38,0xe8, -0xe7,0xfe,0x0, 0xfe,0xf0,0x0, 0x12,0x81,0xe7,0xff,0x0, 0x8c,0xe2,0x0, 0xcd,0x82, -0xe0,0x2, 0x5, 0x87,0xc5,0xfe,0xe0,0x2, 0x0, 0x83,0xe2,0x0, 0xcf,0x0, 0x4, 0x6, -0x17,0x1, 0xe0,0x1, 0xb7,0x7f,0xe7,0xff,0x0, 0xb1,0x17,0x7f,0x0, 0xfb,0xe2,0x0, -0xcc,0x80,0x4, 0x4, 0x17,0x1, 0xe7,0xff,0x0, 0xae,0x17,0x7f,0xe7,0xff,0x0, 0xab, -0xe0,0x1, 0x94,0x5f,0xf0,0x1, 0x92,0xff,0xe0,0x41,0x3e,0xa8,0xe8,0x41,0x38,0xa5, -0x3e,0xf1,0xf0,0x1, 0x99,0x3f,0xf0,0x1, 0x9a,0x4f,0xe0,0x1, 0x4, 0x1b,0xe8,0x8, -0x3c,0x25,0xe0,0x1, 0xb4,0x5f,0xe0,0x2, 0xb5,0x1f,0xf0,0x1, 0x91,0xef,0xf0,0x2, -0x93,0xf, 0xe8,0x41,0x3e,0xa3,0xe8,0x41,0x3c,0x26,0x3e,0xf8,0xe0,0x1, 0x4, 0xe, -0xf8,0x13,0x39,0xa6,0xf0,0x1, 0xb1,0xef,0xe0,0x4, 0xab,0xaf,0xf0,0x4, 0xad,0x4f, -0xe0,0xd, 0x3e,0x1e,0xe8,0xd, 0x3e,0xa2,0xe8,0xd, 0x3e,0x95,0xe0,0x43,0x3e,0x9d, -0xe8,0xc, 0x3c,0x97,0xe0,0x2d,0x3e,0xe5,0xe8,0xc, 0x3e,0x24,0x39,0xfd,0xe8,0xc, -0x3e,0x16,0xe0,0x43,0x3e,0x1c,0x2, 0x3, 0xe8,0x40,0x3e,0xec,0xe0,0x2c,0x3e,0x65, -0x3a,0x7c,0x2, 0x3, 0xe8,0x40,0x3e,0x6b,0xf0,0x40,0x3b,0xed,0xf3,0xff,0xc3,0xff, -0xf0,0x16,0x3b,0xae,0xf8,0x43,0x3b,0x16,0xf2,0x0, 0xcb,0x0, 0xe0,0x1, 0xb7,0x3f, -0xe0,0x1, 0xb4,0xcf,0xe0,0x0, 0x5, 0x5e,0x3e,0xae,0xf0,0x0, 0x13,0x1, 0xf0,0x2d, -0x3b,0x2d,0x26,0x83,0xe0,0x4, 0xab,0xbf,0xf0,0x4, 0x8b,0x3f,0xf0,0x0, 0x2b,0x17, -0xf0,0x0, 0xb3,0x82,0xe0,0x1, 0x96,0xdf,0xe0,0x41,0x3e,0xad,0x38,0xfd,0x5, 0xe, -0xe8,0xe, 0x3f,0x27,0xe0,0x43,0x3f,0x1e,0x16,0x98,0xe0,0x2d,0x3f,0x3d,0xe0,0x1, -0xb7,0x5f,0xe0,0x0, 0x26,0xc2,0xe0,0x1, 0xb6,0xff,0x3f,0x6c,0xe3,0xff,0xc7,0x7f, -0xe0,0xd, 0x3f,0x29,0xe0,0x43,0x3e,0x9d,0xe2,0x0, 0xce,0x80,0x5, 0x3f,0x3e,0x29, -0x16,0x81,0xe0,0x2c,0x3e,0xac,0x26,0x3, 0xe0,0x4, 0xab,0xcf,0xe0,0x4, 0x8e,0xcf, -0xe0,0x0, 0x2e,0xd2,0xb7,0x12,0xe0,0x1, 0x96,0xef,0xe0,0x41,0x3e,0xad,0x3c,0x7d, -0x5, 0xc, 0x3c,0xae,0xe0,0x43,0x3c,0x99,0x17,0x18,0xe0,0x2e,0x3c,0xbe,0xe0,0x1, -0xb4,0xef,0x27,0x26,0xe0,0x2, 0xb7,0xf, 0xe2,0x0, 0xcd,0x93,0xab,0xbf,0x9f,0x2, -0xb7,0x5f,0x9f,0x12,0xb7,0x6f,0x5, 0xa3,0x17,0xa, 0xb7,0xf, 0xe7,0xfe,0x0, 0x88, -0xf0,0x40,0x3a,0xe5,0xe7,0xfe,0x0, 0xeb,0xf0,0x40,0x3b,0x65,0xe7,0xfe,0x0, 0xfa, -0x16,0xff,0xe7,0xff,0x0, 0xa6,0xe2,0x0, 0xcf,0x0, 0x4, 0x6, 0x17,0x1, 0xe0,0x1, -0xb7,0x7f,0xe7,0xff,0x0, 0xbc,0x17,0x7f,0x0, 0xfb,0x16,0x7f,0x0, 0xc3,0xe2,0x0, -0xcc,0x80,0x4, 0x3, 0x17,0x1, 0x0, 0xd7,0x17,0x7f,0x0, 0xd5,0xe2,0x0, 0xcd,0x81, -0xe7,0xfd,0x5, 0xe6,0xc5,0xff,0xb5,0x8f,0xe7,0xfd,0x0, 0xe2,0xe7,0xfd,0x2f,0x60, -0xe4,0x0, 0xc7,0xac,0x3c,0xe2,0xf0,0x8, 0x3e,0x9f,0x7d,0x1, 0xdd,0x50,0x65,0x1, -0xe7,0xfd,0x0, 0xd6,0xf7,0xff,0x23,0x42,0xf0,0x4, 0xad,0x2f,0xe7,0xff,0x0, 0xbe, -0xe2,0x0, 0xcf,0x63,0x5, 0x84,0x3b,0x7e,0xe7,0xfd,0x3, 0x86,0xf0,0x0, 0x12,0x81, -0x9d,0x8f,0xe2,0x0, 0xcd,0x8a,0xe7,0xfd,0x5, 0xfb,0x15,0x8a,0xb5,0x8f,0xf7,0xfd, -0x22,0x83,0xf2,0x0, 0xca,0x1, 0xe7,0xfc,0x1, 0xff,0xe2,0x0, 0xce,0xe4,0xe7,0xfc, -0x5, 0xfb,0xf0,0x0, 0xb2,0xf, 0xe7,0xfc,0x0, 0xf7,0xe0,0x3, 0x1f,0x6c,0xe0,0x3, -0x1f,0xeb,0x8e,0x8e,0x3f,0x6f,0x26,0x8e,0xe2,0x0, 0xce,0x81,0xe0,0x1, 0x1d,0x84, -0x2, 0x87,0xe0,0x0, 0x1e,0x84,0x8e,0x8d,0xe2,0x0, 0xce,0x87,0x5, 0x84,0x17,0x80, -0xaf,0x8b,0x38,0x82,0xe0,0x3, 0x1e,0xea,0x8e,0xb, 0x8e,0x8d,0xe0,0x0, 0x2e,0xe9, -0x9e,0x8f,0xea,0x28,0x7f,0x12,0xb6,0x8e,0xe2,0x0, 0xce,0x1, 0x9f,0x1f,0xea,0x28, -0x7f,0x90,0xb7,0xf, 0x1, 0x6f,0xe2,0x0, 0xce,0xbf,0x2, 0x92,0xe2,0x0, 0xcf,0x3f, -0x5, 0x8d,0xe0,0x1, 0x1f,0xfb,0x8f,0x8f,0xe0,0xc, 0x37,0xa8,0xe0,0x1, 0x1f,0xfa, -0x8f,0x8f,0x3f,0xcc,0xc7,0xc1,0x3f,0xfe,0x2, 0x12,0x17,0x81,0x0, 0xda,0xe0,0x1, -0x1f,0xfd,0xe2,0x0, 0xcf,0x3f,0x8f,0x8f,0xe0,0xc, 0x37,0xa8,0xe0,0x1, 0x1f,0xfc, -0x8f,0x8f,0x3f,0xcc,0x2, 0x84,0xc7,0xc1,0x3e,0xff,0x3, 0x70,0xe0,0x1, 0x1f,0xfd, -0x8f,0x8f,0xe0,0xc, 0x37,0xa8,0xe0,0x1, 0x1f,0xfc,0x8f,0x8f,0x3f,0xcc,0x3e,0x6f, -0xc6,0x41,0x3e,0x7d,0x2, 0xd, 0xe0,0x1, 0x1e,0x7b,0x8e,0xc, 0xe0,0xa, 0x36,0x28, -0xe0,0x1, 0x1e,0x7a,0x8e,0xc, 0x3e,0x4a,0xc6,0x41,0x3e,0x7e,0x5, 0x57,0x37,0xc1, -0x3e,0x6f,0xc6,0x61,0x3e,0xfc,0xe7,0xff,0x4, 0x2e,0xc7,0x9f,0x3e,0xff,0xe7,0xff, -0x2, 0x2a,0xe0,0x1, 0x1f,0xfb,0x8f,0x8f,0xe0,0xd, 0x37,0xa8,0xe0,0x1, 0x1f,0xfa, -0x8f,0x8f,0x3f,0xcd,0x37,0xc1,0x3e,0xef,0xc6,0xe1,0x3e,0xfe,0xe7,0xff,0x2, 0x1b, -0xc7,0x9f,0x3f,0x7f,0xe7,0xff,0x2, 0x17,0x17,0x82,0xe7,0xff,0x0, 0x93,0xe7,0xff, -0x26,0x12,0xea,0x28,0x7f,0x92,0x9e,0x8e,0x9f,0x8f,0x3f,0xad,0xe0,0x43,0x3e,0x9f, -0xe2,0x0, 0xce,0x80,0x5, 0x19,0xe0,0x0, 0x16,0xc0,0xe0,0x2f,0x3f,0x9d,0xe7,0xff, -0x27,0x82,0xea,0x28,0x7f,0x90,0x9f,0x1e,0x9f,0x8f,0x3f,0xae,0xe0,0x43,0x3f,0x1f, -0xe2,0x0, 0xcf,0x0, 0x5, 0xb, 0xe0,0x0, 0x17,0x40,0xe0,0x2f,0x3f,0x9e,0xe7,0xfe, -0x2f,0xf0,0xe7,0xfe,0x0, 0xf0,0x17,0xc0,0x0, 0xe9,0x17,0xc0,0x0, 0xf7,0x8, 0xb1, -0xe2,0x0, 0xcc,0x3, 0x1, 0xd, 0xe2,0x0, 0xcc,0x4, 0x1, 0x1d,0xe2,0x0, 0xcc,0x1, -0x1, 0x86,0xef,0xfd,0xd1,0x8e,0xe0,0x3, 0x1f,0xe4,0xac,0xf, 0x8, 0xe1,0xef,0xff, -0xd5,0x5c,0xef,0xff,0xd6,0xd6,0xef,0xff,0xd5,0x4e,0xdc,0x2e,0xdf,0x3f,0xef,0xfc, -0xd7,0x8b,0xe0,0x3, 0x1c,0x6b,0xef,0xff,0xd4,0xc4,0xe0,0x3, 0x1c,0x6b,0x8, 0xa1, -0xe7,0xef,0x0, 0xff,0xe0,0x1, 0x1f,0xf8,0xe0,0x3, 0x1c,0xb9,0x8d,0xf, 0xe0,0x3, -0x1c,0x6b,0x8, 0xa1,0xe7,0xf9,0x0, 0x81,0xe0,0x1, 0x1f,0xf8,0x17,0x3, 0x8e,0xf, -0xe0,0xff,0x16,0xff,0x17,0x80,0x3e,0x7f,0xc4,0x6, 0x1, 0x82,0x38,0x82,0xc7,0x81, -0xe2,0x1, 0xc7,0xff,0xe0,0x40,0xaf,0x68,0xe0,0x40,0xaf,0x58,0xe0,0x40,0xb6,0xa8, -0xe0,0x40,0xb6,0x98,0x0, 0xf1,0x8, 0xb5,0xe0,0x1, 0x1f,0xf8,0x8e,0xf, 0x3f,0xea, -0xe0,0x5, 0xc7,0xd2,0x8f,0x8f,0x27,0x84,0xe0,0x1, 0x1f,0xaf,0x8e,0xf, 0x3f,0xea, -0xe0,0x5, 0xc7,0xc4,0x8f,0xf, 0x17,0x80,0xc4,0xff,0x10,0xfd,0x15,0x83,0x11,0x1, -0x11,0x82,0x3a,0x6f,0x3f,0xfc,0x1, 0x82,0xa, 0xe1,0xe0,0x80,0x8a,0x99,0x8e,0x98, -0xe2,0x0, 0xca,0x81,0x1, 0x99,0xe2,0x0, 0xce,0x81,0x1, 0x82,0xad,0x98,0x8e,0x98, -0xe2,0x0, 0xce,0x83,0x1, 0x89,0xaa,0x8, 0xc7,0x81,0x8e,0x88,0xe2,0x1, 0xc7,0xff, -0xae,0x98,0xc4,0x6, 0x0, 0xe8,0x2e,0x83,0xa9,0x88,0x0, 0xf7,0xe2,0x0, 0xce,0x82, -0x1, 0xf4,0xae,0x88,0x0, 0xf2,0x3e,0xd1,0x2e,0x8b,0x3e,0xee,0x37,0x24,0x3f,0x1a, -0xc6,0x81,0xa9,0x8, 0xaf,0xce,0x3f,0x6d,0xe2,0x1, 0xc7,0x7f,0x0, 0xe6,0xad,0x88, -0x0, 0xe4,0x8, 0xb7,0xc0,0x4c,0xe0,0x1, 0x1f,0xf8,0xe0,0x3, 0x19,0xeb,0x3d,0xe0, -0x3b,0x60,0xc5,0x9c,0xc3,0x4, 0x11,0x0, 0x8c,0xf, 0xe2,0x0, 0x7e,0x10,0x3e,0xe6, -0x3f,0x6b,0x3f,0xe3,0x3b,0xe3,0x15,0x7f,0x3c,0xe2,0x3c,0x72,0xc7,0x90,0x1, 0x99, -0xe0,0x3, 0x1a,0x6c,0xe0,0x3, 0x1a,0xdf,0x8f,0x4, 0x8f,0x85,0x2f,0x28,0x27,0x86, -0xe0,0xff,0x17,0xff,0x39,0x7e,0xc1,0x86,0x1, 0x9a,0x8f,0x84,0xe0,0x3, 0x1d,0x6b, -0x3c,0xe0,0xe0,0x3, 0x1c,0x65,0xc4,0x84,0xaf,0x85,0xdf,0x8e,0xc0,0x34,0xb, 0xe1, -0x38,0xe2,0xc0,0x81,0x39,0x61,0xe1,0x80,0xad,0x1e,0xe2,0x1, 0xc1,0x7f,0xe1,0x80, -0xac,0x9d,0xe1,0x80,0xac,0x9c,0xe0,0x41,0xad,0x4f,0x0, 0xd8,0xc7,0x1, 0xe2,0x1, -0xc7,0x7f,0xe0,0x1d,0xb7,0xe3,0xe0,0x1d,0xb7,0xf3,0x0, 0xdd,0x2f,0x9b,0xe0,0x3, -0x1e,0x65,0x15,0x81,0x8f,0x4, 0x3f,0x7f,0x5, 0xd9,0x3e,0xef,0xe0,0xe, 0x37,0xa4, -0x3f,0x17,0xe4,0x0, 0xc6,0x86,0x9d,0xe, 0x3e,0x9c,0xb5,0x1d,0x9d,0x1e,0xb5,0x2d, -0xe2,0x0, 0x7e,0x84,0x3e,0x9f,0xaf,0xce,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xad,0x8d, -0x0, 0xea,0xe0,0x2, 0x1e,0xd1,0x16,0x0, 0xe0,0xff,0x15,0x7f,0x39,0x7c,0xc6,0x84, -0xe0,0x0, 0x1, 0xd6,0xf0,0x2, 0x1b,0xf8,0x16,0x0, 0xf0,0x0, 0x13,0x1, 0x3e,0xec, -0xe2,0x1, 0xc6,0xff,0x3f,0xfd,0xe0,0x1, 0x2, 0x85,0x16,0x0, 0x14,0x1, 0x39,0x7c, -0xe0,0x1, 0x1, 0x83,0xe0,0x2, 0x1e,0x50,0xe0,0x3, 0x1d,0xeb,0x16,0x80,0x3f,0x7d, -0xc5,0x90,0xc6,0x4, 0xe0,0x1, 0x1, 0x9a,0xe0,0x2, 0x1e,0xcf,0xe2,0x0, 0x7c,0x28, -0x36,0xc1,0x7e,0x8b,0xe0,0x2, 0x1e,0xce,0x6f,0x29,0x36,0xc1,0x7e,0x8c,0xe0,0x2, -0x1e,0xe1,0x6f,0xa8,0x36,0xc1,0x7e,0x8d,0xe0,0x1, 0xd5,0xa4,0xe0,0x3, 0x1c,0xe5, -0x17,0x0, 0x15,0x1, 0x8f,0x84,0x3f,0xfe,0xe0,0x1, 0x5, 0xaf,0xe0,0x2, 0x1e,0x4d, -0x17,0x80,0x3d,0xee,0x3e,0xef,0xe2,0x1, 0xc6,0xff,0x39,0x7d,0x5, 0x92,0xe1,0x80, -0x9c,0x1c,0x38,0xeb,0xe3,0xff,0xc0,0xff,0x38,0xf8,0x3e,0xef,0xc7,0x81,0x1, 0xf3, -0xe2,0x0, 0x7f,0x9c,0x3f,0x9d,0x8f,0x8f,0xe2,0x1, 0xcf,0xff,0xe0,0x0, 0x1, 0xf3, -0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0x0, 0xdd,0xc6,0x1, 0xe2,0x1, -0xc6,0x7f,0xe0,0x40,0xb5,0x2d,0xe0,0x40,0xb5,0x1d,0xe0,0x2, 0xb5,0x2d,0xe0,0x2, -0xb5,0x3d,0xe7,0xff,0x0, 0x9d,0xc6,0x81,0xc5,0x6, 0x3c,0xed,0xe2,0x1, 0xc4,0xff, -0x39,0x79,0x5, 0xa4,0xe0,0x1e,0x98,0x9a,0xf0,0x40,0x3a,0xea,0xe2,0xff,0xc8,0xff, -0xf0,0x3, 0xc2,0xe0,0x1, 0x71,0xe2,0x0, 0x7c,0x10,0x3c,0x1d,0xf0,0x0, 0x8a,0x8, -0xf7,0xff,0x2a,0x6b,0xe0,0xd, 0x36,0x22,0xe8,0xd, 0x3e,0x97,0x3d,0x6d,0xe0,0x88, -0xc5,0x58,0xb0,0x8a,0xe0,0x88,0xc6,0xda,0xe8,0x0, 0x9d,0x25,0xf0,0x0, 0xab,0x8, -0xb5,0xd, 0xe2,0x0, 0x7e,0x9c,0x3e,0x9c,0xac,0x8d,0xc6,0x1, 0xe7,0xfe,0x0, 0xf9, -0x3d,0x63,0x16,0x80,0x0, 0xd3,0x8e,0x8b,0xe2,0x1, 0xce,0xff,0x1, 0x8f,0xe2,0x0, -0x7c,0x90,0x16,0x80,0xe1,0x80,0x8d,0x19,0x38,0xed,0xe2,0x1, 0xc0,0xff,0x2d,0xe, -0xe2,0x0, 0x7d,0x10,0x3e,0x9a,0xa8,0x8b,0xac,0xd, 0x3e,0xec,0xc6,0x81,0x3e,0x6d, -0xe2,0x1, 0xc6,0x7f,0xc5,0x81,0xe7,0xfe,0x0, 0xe4,0xc6,0x81,0x3d,0x6d,0xe2,0x1, -0xc5,0x7f,0x39,0x7a,0x2, 0xe8,0x0, 0xf2,0xe0,0x41,0x9d,0xb, 0xc6,0x81,0xe0,0x40, -0xb5,0x2c,0xe2,0x1, 0xc6,0xff,0xe0,0x40,0x9d,0x7b,0xe0,0x40,0xb5,0x1c,0xe7,0xfe, -0x0, 0xd8,0xe0,0xd, 0x37,0x24,0x3e,0x97,0xe2,0x0, 0x7e,0x4, 0xaf,0xcd,0x3e,0x1f, -0xe4,0x0, 0xc7,0x86,0xad,0xc, 0x3f,0x99,0x9e,0xd, 0x9e,0x9d,0xb6,0x1f,0xb6,0xaf, -0xe7,0xff,0x0, 0x80,0xe1,0x80,0x8e,0x96,0xe2,0x0, 0xce,0x81,0x1, 0x5, 0xe0,0x1e, -0xb7,0x13,0xe0,0x1e,0xb7,0x23,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xc1,0x86,0x39,0x7f, -0x1, 0xf2,0xe7,0xfd,0x0, 0xdc,0x17,0x80,0xe0,0xff,0x17,0x7f,0x0, 0xf9,0x8, 0xb1, -0xe0,0x3, 0x1c,0xc, 0x15,0x1e,0x14,0x80,0xef,0xf4,0xd4,0xee,0xe0,0x3, 0x1c,0x3c, -0xe0,0x2, 0x15,0xe, 0x14,0x80,0x8, 0xa1,0xe6,0x89,0x0, 0xe6,0xe0,0x4, 0x1f,0xb4, -0xe0,0x13,0x8f,0xbf,0xe6,0xff,0xcf,0xff,0x27,0x9a,0x8, 0xb2,0x39,0x68,0xef,0xfb, -0xd2,0x8e,0x3c,0x62,0xef,0xfb,0xd2,0x6f,0xe2,0x0, 0xc9,0x2, 0xe0,0x3, 0x1f,0x8c, -0x17,0x0, 0x1, 0x88,0xb7,0x4f,0xe0,0x1, 0xb7,0x1f,0xe0,0x1, 0xb7,0x6f,0x14,0x0, -0x9, 0x61,0xe4,0x0, 0xc1,0xa, 0x39,0x1f,0xb7,0x2, 0x0, 0xfa,0x14,0x0, 0x38,0x82, -0x8, 0xb4,0xea,0x28,0x79,0xad,0x3a,0x68,0xdf,0xda,0x89,0x3, 0x3c,0x64,0x3f,0xe2, -0xe4,0x0, 0xc4,0x5a,0xe4,0x0, 0xc7,0x8a,0xe4,0x0, 0xc2,0xa, 0x3f,0x98,0xe0,0x3, -0x1c,0x8c,0xe0,0x3, 0x1c,0x3c,0x15,0xa, 0x3c,0x94,0x3c,0x1f,0xc1,0x1, 0xef,0xf4, -0xd4,0x73,0xe2,0x1, 0xc1,0x7f,0xe2,0x0, 0xc9,0x7, 0x2, 0x83,0xa9,0x3, 0xa, 0x61, -0x17,0x80,0xaf,0x83,0x0, 0xfd,0x8, 0xb3,0x3f,0x83,0x14,0x0, 0xef,0xfa,0xd7,0x2e, -0xef,0xf9,0xdc,0xc2,0xef,0xf9,0xdc,0xe3,0xef,0xfa,0xd7,0x94,0xef,0xfa,0xd7,0x40, -0xef,0xfa,0xdb,0x47,0xe0,0x3, 0x1f,0xa3,0x11,0x80,0xa1,0xf, 0x14,0x14,0xe0,0x2, -0x9f,0xb2,0xe7,0xc, 0xcf,0x93,0xe0,0x2, 0xb7,0xb2,0xef,0xfa,0xdb,0x54,0xe0,0x2, -0x9f,0xb2,0x17,0x1, 0xe7,0xc, 0xcf,0x9e,0x14,0x1e,0xe0,0x2, 0xb7,0xb2,0xef,0xfa, -0xdb,0x4a,0xef,0xfa,0xd8,0xa8,0xef,0xfa,0xd8,0x62,0xea,0x28,0x7f,0xb0,0xb1,0x8f, -0xea,0x28,0x7f,0xae,0xe0,0x13,0x17,0x44,0xb7,0xf, 0xef,0xfa,0xd8,0x13,0xef,0xfd, -0xd5,0x4c,0xef,0xfa,0xd7,0xc7,0xef,0xf9,0xdf,0xcc,0xef,0xfa,0xd8,0x73,0x3b,0x0, -0xe0,0x2, 0x1f,0xb1,0xe1,0xf5,0x15,0x3f,0xe0,0xe, 0x8c,0xdf,0xe0,0xe, 0x8c,0x4f, -0xe0,0x1, 0xd2,0xe7,0x9, 0xa1,0xe7,0x6f,0x0, 0xfd,0xea,0x28,0x7f,0xb0,0x17,0x0, -0xb7,0xf, 0xea,0x28,0x7f,0xae,0xb4,0xf, 0x38,0x82,0xea,0x28,0x7f,0x30,0x9f,0x8e, -0xc7,0x81,0xe3,0xff,0xc7,0xff,0xb7,0x8e,0xea,0x28,0x7f,0x2e,0x9f,0xe, 0x3f,0x7f, -0x5, 0x83,0xe7,0x50,0x0, 0x9b,0x38,0x82,0xe7,0xb0,0x0, 0x9c,0x8, 0xb1,0xef,0xfd, -0xd6,0x7d,0xdf,0x46,0x8, 0xa1,0xe7,0xb0,0x0, 0x85,0xe0,0x61,0x3e,0x82,0xe0,0x61, -0x3f,0x82,0x17,0x6f,0x3f,0xde,0xe0,0x61,0x3f,0x92,0xe0,0x3, 0x1f,0x58,0x8c,0xe, -0x3f,0xe8,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x81,0x2, 0x8a,0xaf,0x8e, -0xe0,0x61,0x3e,0x92,0xe0,0x2, 0x1f,0xcc,0xe4,0x0, 0xc4,0x5a,0x3c,0x1f,0x38,0x82, -0x17,0x80,0x0, 0xf6,0x8f,0x89,0x8e,0x88,0x2f,0x83,0xae,0x89,0x38,0x82,0xe0,0xe, -0x3e,0xaf,0xe0,0x43,0x3e,0x1e,0xe2,0x0, 0xce,0x0, 0x2, 0x3, 0xe0,0x41,0x3f,0x4c, -0x3d,0xfe,0x3, 0x5, 0x3f,0xfd,0x3, 0x86,0x3f,0x9a,0xaf,0x89,0x8f,0x89,0xaf,0x88, -0x0, 0xee,0x3f,0xaa,0x0, 0xfb,0x8, 0xb7,0xf8,0x0, 0xc, 0x39,0xc0,0x7c,0xe0,0x3, -0x19,0xeb,0xe0,0x7, 0x35,0x24,0xe0,0xf, 0x39,0x97,0xe0,0x14,0x8f,0x5f,0xe0,0x14, -0x89,0x4f,0x6f,0x6, 0xf0,0x40,0x3c,0xe8,0xe0,0x14,0x8f,0x6f,0xe0,0x2, 0x1f,0xc3, -0x37,0x24,0x6f,0x7, 0xf0,0x40,0x3c,0x69,0x8f,0xf, 0x3b,0x6f,0x3f,0x72,0x5, 0xa8, -0xe0,0x3, 0x1f,0xe0,0xe0,0x3, 0x1a,0xa0,0x8f,0x8f,0xe0,0x1, 0x1a,0x26,0x2f,0xb9, -0x3c,0x60,0x15,0x8f,0x15,0x1, 0xe0,0x9, 0x3a,0x92,0xc4,0x6, 0xdf,0xbc,0x3c,0x60, -0x15,0xa0,0x15,0x10,0xe0,0x9, 0x3a,0x12,0xc4,0x7, 0xdf,0xb5,0x3f,0xe2,0xe4,0x0, -0xc7,0x86,0x3f,0x93,0xe0,0x3, 0xc7,0xe0,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x88, -0x17,0x80,0x3a,0x92,0x39,0x14,0x6f,0x86,0x6f,0x87,0xaf,0x82,0xaf,0x85,0xe0,0x4, -0x8f,0x86,0xe2,0x1, 0xcf,0xff,0x1, 0x8b,0x17,0x80,0x39,0x97,0x6f,0x86,0xe0,0x14, -0x8f,0xc3,0xe2,0x1, 0xcf,0xff,0x1, 0x3, 0x17,0x81,0x6f,0x86,0x4f,0x86,0xe8,0x0, -0xaf,0x89,0x4f,0x87,0xe8,0x0, 0xaf,0x88,0xc0,0x4, 0xf8,0x0, 0xc, 0xa8,0xb, 0xe1, -0xe0,0xf, 0x3a,0x92,0x8f,0x8f,0x6f,0x86,0xe0,0xf, 0x3a,0x12,0x8f,0x8f,0x6f,0x87, -0x0, 0xce,0xe0,0x61,0x3f,0x2, 0xe0,0x61,0x3f,0x82,0x16,0xef,0x3f,0xdd,0xe0,0x61, -0x3f,0x92,0xe0,0x3, 0x1f,0xb7,0xbc,0xf, 0xe0,0x61,0x3f,0x82,0x16,0xdf,0x3f,0xdd, -0xe0,0x61,0x3f,0x92,0xe0,0x3, 0x1f,0x9d,0xea,0x0, 0xce,0x6, 0xa7,0x8f,0xe0,0xb, -0x3c,0x1c,0xa6,0x8f,0xe0,0x1, 0xce,0x80,0xbe,0x8f,0xe0,0x4, 0x1e,0xf7,0xbd,0x9d, -0x3d,0xe8,0xc5,0x81,0x3d,0x9c,0xc4,0x2, 0xbd,0xad,0x3c,0x1c,0xbc,0x3d,0xe7,0xfe, -0x16,0x7f,0xa6,0x8f,0x3e,0xdc,0xbe,0x8f,0xe0,0x61,0x3f,0x82,0xcf,0xa0,0xe0,0x61, -0x3f,0x92,0xe0,0x61,0x3f,0x12,0x38,0x82,0x8, 0xb2,0xe0,0x61,0x39,0x2, 0xe0,0x61, -0x3f,0x82,0x17,0x6f,0x3f,0xde,0xe0,0x61,0x3f,0x92,0xdf,0xc4,0xe0,0x3, 0x1f,0xa3, -0x16,0x80,0xa7,0x8f,0x9f,0x3f,0xe7,0x6, 0xcf,0x1d,0xb7,0x3f,0xe0,0x61,0x39,0x12, -0x9, 0x61,0xe0,0x3, 0x1f,0x8b,0xe0,0x3, 0x1c,0x8a,0x8f,0x8f,0xe0,0x1, 0x14,0x61, -0xaf,0x89,0xe0,0x3, 0x1f,0xd5,0x8f,0x8f,0xaf,0x99,0xe0,0x1, 0x1f,0x88,0x8f,0x8f, -0xaf,0xa9,0xe0,0x0, 0x1f,0xac,0x8f,0x8f,0xaf,0xb9,0xe0,0x3, 0x1f,0x8f,0x8f,0xf, -0xaf,0x49,0x8f,0x1f,0xaf,0x59,0x8f,0x2f,0x8f,0xbf,0xaf,0x69,0xaf,0xf9,0xe0,0x3, -0x1f,0xbb,0x8f,0x8f,0xe0,0x1, 0xaf,0x89,0xe7,0x3a,0x0, 0xf0,0x8, 0xb7,0xf8,0x0, -0xc, 0x3e,0xc0,0x70,0x17,0x80,0xe0,0x3, 0x1a,0xe3,0x6f,0x91,0x6f,0x92,0x17,0x83, -0x6f,0x93,0x89,0x85,0xe0,0x3, 0x1f,0xeb,0xe0,0x1, 0x1b,0xf8,0xf0,0x40,0x3f,0x6f, -0x29,0x87,0xe0,0x16,0xa7,0xaf,0xe6,0xd0,0xcf,0x8f,0xe0,0x2, 0x27,0x8d,0xde,0xde, -0x15,0x3e,0xe0,0x1, 0x14,0xff,0x3b,0x68,0xef,0xf4,0xd3,0xe, 0x11,0x80,0x8e,0x87, -0xf0,0x2, 0x1c,0x43,0xf0,0x3, 0x1c,0xe5,0xf0,0x40,0x3e,0xe3,0xf0,0x40,0x3e,0x63, -0xf0,0x40,0x3d,0x63,0xe8,0x0, 0x8f,0x88,0x3d,0xed,0xe8,0x40,0x3f,0xfa,0xe0,0x0, -0x2, 0xcc,0xe0,0x3, 0x1f,0xde,0xf0,0x0, 0xae,0x16,0x8f,0x8f,0xaf,0x86,0xe0,0x3, -0x1f,0xce,0xe0,0xa, 0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0xe0,0x1, 0x1, 0xda,0xe0,0x3, -0x1f,0xe9,0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x1, 0x91,0xdf,0x94,0xef,0xfd,0xd2,0xec, -0xe0,0x3, 0x1f,0x9b,0xe0,0x0, 0x17,0x64,0xaf,0xf, 0x16,0x80,0xe0,0x3, 0x1f,0xa3, -0xa7,0x8f,0x9f,0x3f,0xe7,0x6, 0xcf,0x1d,0xb7,0x3f,0xe0,0x3, 0x1f,0xe2,0x8f,0xf, -0x39,0x6f,0x27,0x8, 0xe0,0x1, 0x1f,0x86,0x8f,0x8f,0x2f,0x84,0xe0,0x3, 0x1c,0x65, -0xdc,0x2c,0x17,0x80,0xaf,0x85,0x17,0x80,0xb7,0x82,0x89,0x7, 0xe0,0x3, 0x1c,0xe6, -0x31,0x24,0xe0,0x3, 0x1c,0x5d,0x3d,0x62,0xef,0xf4,0xd2,0x86,0xe0,0x1, 0x29,0xbe, -0xe0,0x3, 0x1c,0x5d,0x3d,0x62,0xe0,0x1, 0x14,0xff,0xc0,0x10,0xf8,0x0, 0xf, 0x28, -0xb, 0xa1,0xe6,0x85,0x0, 0xb1,0xf0,0x1b,0x35,0x24,0xf8,0xf, 0x3f,0x1b,0xe0,0x14, -0x8e,0x4f,0x3d,0xfc,0xe0,0x1, 0x5, 0x89,0xe8,0x40,0x3f,0xea,0xc7,0x8a,0x37,0xa4, -0xe8,0xf, 0x3f,0x9e,0x99,0xf, 0x9a,0x1f,0xe6,0xfc,0xcf,0xcc,0xe4,0x0, 0xc7,0x86, -0xe8,0xf, 0x3f,0x99,0x8f,0x8f,0xe2,0x0, 0xcf,0x83,0x6f,0x93,0xe0,0x0, 0x1, 0x75, -0x3c,0xec,0xe2,0x0, 0x7c,0x13,0x7e,0x81,0x7e,0x2, 0x7d,0x83,0xd8,0x1f,0x66,0x81, -0x66,0x2, 0x65,0x83,0xe0,0x0, 0x2c,0x69,0x4f,0x93,0xe2,0x0, 0xcf,0x81,0x1, 0x9d, -0x3f,0xe8,0xe2,0x1, 0xc7,0xff,0x3d,0xff,0x5, 0x98,0xe0,0xe, 0x34,0x24,0xe0,0x4, -0xc7,0x20,0xe8,0xe, 0x3f,0x1e,0x8f,0xe, 0x3f,0xe8,0xe6,0xfc,0xcf,0x4e,0x3f,0x7c, -0xc4,0x1, 0x1, 0xef,0x37,0xa4,0xe8,0xf, 0x3f,0x9e,0x3f,0x6f,0xe0,0x4, 0xc7,0x1c, -0xe0,0x4, 0xc7,0x9e,0x99,0xe, 0x9a,0xf, 0xe8,0x40,0x3d,0xec,0xe8,0x40,0x3d,0x6a, -0xe2,0x0, 0x7c,0x92,0xe2,0x0, 0x7c,0x11,0x7e,0x81,0xf8,0x1b,0x3d,0x9e,0xde,0x5c, -0xe8,0x14,0x8f,0xcb,0xe6,0xd4,0xca,0x44,0xe0,0xe, 0x37,0xac,0xe2,0x1, 0xcf,0xff, -0x3a,0x1e,0xe6,0xd4,0xc9,0x42,0xe3,0xff,0xc2,0x7f,0x66,0x81,0x1, 0x36,0x4f,0x93, -0xe2,0x0, 0xcf,0x81,0x1, 0x8, 0xe8,0x40,0x3f,0x6c,0xc7,0x1, 0xf0,0x40,0x3e,0x6e, -0xf2,0x1, 0xc6,0x7f,0x3f,0x63,0xc7,0x1, 0x39,0xee,0xe2,0x1, 0xc1,0xff,0x37,0xae, -0xe8,0x40,0x3f,0x6d,0xe4,0x0, 0xc7,0x6, 0x3f,0x92,0x3f,0x16,0xe3,0xff,0xc7,0xff, -0xe6,0xc8,0xce,0xf, 0xaf,0xbe,0xe0,0xf, 0x32,0x48,0xaf,0xce,0x4f,0x91,0xae,0x2e, -0xaf,0xee,0x4f,0x92,0xaa,0x5e,0xaf,0xfe,0xe8,0x40,0x3f,0xed,0xc7,0x81,0xf0,0x40, -0x3e,0xef,0xf2,0x1, 0xc6,0xff,0xe8,0x40,0x3f,0xea,0xc7,0x81,0xf0,0x40,0x3d,0x6f, -0xf2,0x1, 0xc5,0x7f,0xe7,0xfe,0x0, 0x98,0xe7,0x80,0x17,0x80,0x0, 0xda,0x29,0x86, -0xe0,0x3, 0x1f,0xe9,0x8f,0x8f,0xe7,0xfe,0x27,0xba,0xde,0xbc,0x3c,0x66,0xde,0xa5, -0xe7,0xfe,0x0, 0xb5,0xe0,0x3, 0x1f,0xa3,0x16,0x81,0xa7,0x8f,0x9f,0x3f,0xe7,0x6, -0xcf,0x1d,0xb7,0x3f,0xe7,0xfe,0x0, 0xbb,0xc0,0x10,0xf8,0x0, 0xf, 0x28,0xb, 0xe1, -0x8, 0xb1,0xef,0xfc,0xdb,0xaf,0x17,0x81,0xe1,0x28,0x3c,0xf, 0x8, 0xe1,0x8, 0xb5, -0xe0,0x0, 0x1f,0xa5,0x11,0x80,0x8a,0xf, 0xe0,0x0, 0x1a,0xa4,0x39,0x63,0x3c,0x63, -0xe2,0x1, 0xc4,0x7f,0x3c,0x74,0x4, 0x83,0x3c,0x62,0xa, 0xe1,0xef,0xfd,0xdc,0xf9, -0x24,0x11,0xe0,0xf, 0x31,0xa1,0x3f,0x95,0x3f,0x6f,0xe0,0x2, 0xc7,0xf, 0xe0,0x2, -0xc7,0x8e,0x8c,0x8e,0x8c,0xf, 0xef,0xfd,0xdd,0x17,0xe0,0x22,0x39,0x68,0xe0,0x43, -0x39,0x12,0xc1,0x81,0x0, 0xe5,0x8, 0xb5,0x11,0x0, 0xe0,0x0, 0x19,0xa5,0xe0,0x2, -0x1a,0x43,0x3a,0xe2,0x8f,0x83,0x3f,0xf2,0x2, 0x84,0xa, 0xa1,0xe7,0xbb,0x0, 0xdf, -0x3c,0x62,0xef,0xfd,0xdd,0x5, 0x97,0xa4,0x3f,0xf8,0x5, 0x5, 0x3c,0xe5,0x3c,0x62, -0xef,0xfd,0xdc,0xdd,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0x0, 0xeb, -0x8, 0xb7,0xe0,0x2, 0x1a,0x43,0x11,0x8a,0x93,0x24,0xdf,0xba,0xe0,0x2, 0x34,0x22, -0xe0,0x22,0x39,0x33,0x3a,0xe8,0xea,0x28,0x7b,0xb4,0xef,0xfc,0xdb,0x5b,0xe0,0x43, -0x39,0x12,0x24,0xa, 0x97,0x87,0x3f,0xf5,0x4, 0x7, 0xe0,0x2, 0x37,0xa2,0xe0,0x22, -0x39,0x33,0xe0,0x43,0x39,0x12,0xe2,0x8, 0xca,0xcc,0xea,0x28,0x79,0xb6,0x5, 0x1c, -0xdf,0x98,0x2c,0x17,0x17,0x8a,0xaf,0x83,0x8f,0x83,0x27,0x89,0x97,0x24,0xe6,0x53, -0xcf,0x8e,0x39,0x7f,0x2, 0x3, 0xe0,0x2f,0x3f,0x62,0xb7,0xa4,0xe0,0x0, 0x1f,0xa5, -0x8f,0x8f,0xe2,0x0, 0xcf,0x81,0x5, 0x82,0xdf,0xaf,0xb3,0x24,0xb2,0x87,0xb, 0xe1, -0xef,0xfc,0xdb,0x30,0x2c,0x68,0xef,0xfc,0xdb,0x2d,0x24,0x5, 0x8f,0x83,0x27,0xe5, -0xc7,0xff,0x0, 0xe2,0xac,0x3, 0x0, 0xe1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x64, -0xe0,0x1, 0x1f,0xae,0xe0,0x1, 0x1f,0x2d,0x89,0x8f,0xe0,0xf, 0x31,0xa8,0x89,0x8e, -0x39,0xcf,0xdf,0x67,0xe2,0x0, 0xcc,0x1, 0x1, 0x2e,0xe0,0x1, 0x1f,0xac,0x8f,0x8f, -0x27,0xaa,0xe0,0x1, 0x1f,0xab,0xe0,0x43,0x39,0x93,0x8f,0x8f,0xe0,0xe, 0x37,0xa8, -0xe0,0x1, 0x1f,0xaa,0x8f,0x8f,0x3f,0xce,0xe0,0x43,0x3f,0x9f,0x7f,0x86,0xef,0xfc, -0xdb,0x1, 0xe2,0x0, 0xcc,0x1, 0x1, 0x8c,0xe0,0x1, 0x1f,0xa9,0xe0,0x1, 0x1f,0x28, -0x89,0x8f,0xe0,0xf, 0x31,0xa8,0x89,0x8e,0x39,0xcf,0xe0,0x43,0x39,0x93,0xe0,0x0, -0x1f,0x98,0x97,0x8f,0xe2,0x8, 0xcf,0xcc,0xe0,0x1, 0x2, 0x77,0xef,0xfc,0xda,0xea, -0xe0,0x1, 0x2c,0x73,0xc0,0x1c,0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x3c,0x62,0xef,0xfd, -0xdc,0x6f,0x7c,0x4, 0xe8,0x40,0x3c,0xe9,0x3c,0x62,0xef,0xfd,0xdc,0xbb,0x67,0x84, -0xe3,0xff,0xc7,0xff,0xe6,0x51,0xca,0xf, 0x3c,0x2f,0xe0,0x24,0x39,0xd4,0xe0,0x43, -0x3c,0x18,0xe0,0x43,0x3a,0x14,0x7a,0x5, 0x7c,0x7, 0xef,0xfc,0xda,0xcb,0xe0,0x0, -0x2c,0x56,0x3f,0x67,0x17,0x80,0x66,0x85,0x66,0x7, 0xe0,0x24,0x3e,0x9c,0x22,0xc, -0x66,0x4, 0x66,0x86,0xe0,0x3b,0x3e,0x9c,0xf0,0x0, 0x25,0x87,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0xe8,0x40,0x3f,0x69,0x3c,0x62,0x7f,0x81,0x7f,0x3, 0xef,0xfd,0xdc,0x4e, -0xe2,0x0, 0xcc,0x0, 0x67,0x81,0x3e,0xe2,0x67,0x3, 0xe8,0x6d,0x39,0x28,0xe0,0x6f, -0x39,0x25,0xf0,0x40,0x3c,0x6d,0x3a,0xef,0x27,0xa, 0x3f,0xe6,0xc7,0x81,0x3b,0x6f, -0x3c,0xe7,0x3c,0x62,0xe2,0x1, 0xc3,0x7f,0xef,0xfd,0xdc,0x9, 0x3f,0xe2,0xc7,0x81, -0x39,0x6f,0xe2,0x1, 0xc1,0x7f,0xe0,0x0, 0x1f,0x25,0x8f,0x8e,0x3f,0xf2,0xe7,0xff, -0x2, 0xaf,0x3f,0xf6,0xe7,0xff,0x1, 0xa8,0xe0,0x1, 0x17,0xff,0xf1,0x2f,0x3c,0xf, -0xe7,0xff,0x27,0xa2,0x17,0x82,0xe1,0x25,0x3f,0xa5,0xe7,0xff,0x22,0x9d,0xe0,0x3, -0x1f,0xea,0x8f,0x8f,0xe7,0xff,0x27,0x98,0x14,0x81,0xe8,0x40,0x3c,0x68,0xc0,0x1c, -0xf8,0x0, 0xf, 0x28,0xb, 0xa1,0xe7,0xb7,0x0, 0xe2,0x3f,0xe2,0xe0,0x1, 0xc7,0x86, -0x37,0xa1,0xe8,0xf, 0x3f,0x9c,0x8a,0x2f,0xe0,0xf, 0x31,0x21,0xe8,0xf, 0x3f,0x9c, -0xe0,0x2, 0xc7,0x8f,0xf0,0x0, 0x8d,0x8f,0xe0,0x0, 0x22,0x66,0xe8,0xe, 0x8f,0xcd, -0xc7,0xff,0x3a,0x7f,0xe0,0x0, 0x3, 0x60,0x3f,0xe4,0xc7,0xff,0x3c,0x6f,0xe8,0x40, -0x3c,0xeb,0xe2,0x1, 0xc4,0x7f,0xef,0xfd,0xdb,0xdf,0x3e,0xe4,0xc6,0x81,0x3f,0xe8, -0x3c,0x6d,0xe8,0x40,0x3c,0xeb,0xe2,0x1, 0xc4,0x7f,0x7f,0x81,0xef,0xfd,0xdb,0xd4, -0x67,0x81,0xe8,0x2d,0x3f,0x9a,0x26,0x85,0xe8,0x2d,0x3c,0x1a,0xe0,0x0, 0x2e,0xc7, -0xe0,0x1, 0x16,0x29,0x3f,0x98,0xe0,0x2f,0x3e,0x2f,0x3e,0x67,0xf0,0x0, 0x25,0xc2, -0xe8,0xe, 0x8e,0xdd,0xc6,0xff,0xf0,0x40,0x3d,0xfd,0x3, 0x3b,0xe8,0x40,0x3e,0xeb, -0xc6,0xff,0x3c,0xed,0xe2,0x1, 0xc4,0xff,0x3c,0x64,0x7f,0x81,0x7e,0x2, 0xef,0xfd, -0xdb,0xb3,0xe8,0x40,0x3f,0x6b,0xc7,0x1, 0x3c,0xee,0x3e,0xe8,0xe2,0x1, 0xc4,0xff, -0x3c,0x64,0x7e,0x83,0xef,0xfd,0xdb,0xa8,0x66,0x83,0x67,0x81,0xe8,0x2e,0x3e,0x9a, -0x66,0x2, 0x27,0x6, 0xe8,0x2e,0x3c,0x1a,0x27,0x3, 0xe7,0xfe,0x2f,0xcc,0xe0,0xe, -0x3e,0x98,0xe2,0x1, 0xcf,0x29,0x2, 0x15,0xf0,0x2d,0x3f,0x2d,0x26,0x92,0xf0,0x28, -0x3f,0x28,0x24,0xf, 0x2e,0xe, 0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe8,0x40,0x3f,0x69, -0xe7,0xfe,0x0, 0xbb,0x3e,0x67,0x17,0x80,0x0, 0xc2,0xe8,0x40,0x3e,0x69,0x0, 0xfc, -0x3f,0x6f,0xe7,0xfe,0x0, 0xb2,0x12,0x80,0x3b,0x65,0xf0,0x1, 0x14,0x7f,0x39,0x65, -0xf0,0x0, 0x1e,0x24,0xf0,0x0, 0x14,0x81,0xf0,0x2, 0x1e,0xb1,0xf0,0x3, 0x15,0x10, -0xf0,0x3, 0x17,0xf, 0x3b,0xe5,0xe7,0xfe,0x0, 0xd0,0x8, 0xb1,0x14,0x1, 0xef,0xfa, -0xdd,0xde,0x24,0xc, 0xe0,0x0, 0x1e,0x25,0xea,0x28,0x7f,0x33,0x8f,0x8c,0xe0,0x0, -0x1d,0xa4,0x2f,0x89,0x17,0x80,0xaf,0x8e,0x0, 0x85,0x14,0x1, 0xef,0xfa,0xdd,0xb3, -0x2c,0x72,0x8, 0xe1,0xe0,0x2, 0x1f,0xc3,0xe0,0xc, 0x95,0xb, 0xe0,0x1, 0x96,0xaf, -0xe0,0x41,0x3f,0xcd,0x3d,0x7f,0x5, 0x6f,0xe4,0xf, 0x36,0xcf,0x3f,0x9d,0xe0,0xc, -0x96,0xbb,0x37,0x81,0x3e,0xff,0x3, 0x67,0x17,0x80,0xaf,0x8c,0xe0,0x3, 0x1f,0xea, -0x8f,0x8f,0x2f,0xe1,0xe0,0x3, 0x1f,0xce,0xe0,0x4, 0x8f,0xff,0xe2,0x0, 0xcf,0x81, -0x1, 0xda,0x8f,0x8e,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe2,0x0, 0xcf,0x90,0xaf,0x8e, -0x5, 0xd9,0x0, 0xd1,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xe0,0x2, 0x1a,0x43,0xe0,0x0, -0x1b,0x24,0xe0,0x1, 0x97,0xa4,0xe0,0xc, 0x97,0x6, 0xe5,0xff,0xc7,0xfe,0x3f,0x7f, -0xe0,0x0, 0x4, 0x7e,0xef,0xfc,0xd9,0x96,0xe0,0x0, 0x24,0x7a,0x12,0x80,0xf0,0x1, -0x95,0x44,0xf0,0x1, 0x94,0x54,0xf0,0x0, 0x1c,0xa5,0xf0,0x2, 0x1e,0x31,0xf0,0x4, -0x1e,0xb4,0x39,0x65,0x13,0x81,0xf0,0x40,0x3d,0xe5,0xe8,0x0, 0x8f,0x89,0x3f,0xf2, -0x2, 0x92,0xef,0xfd,0xdb,0xe4,0xe0,0x4, 0x8f,0xc4,0xe0,0x0, 0x2f,0xe1,0xe0,0x5, -0x8f,0x84,0xe0,0x0, 0x2f,0xdd,0xe0,0x0, 0x2a,0xdb,0xf8,0x0, 0xf, 0x28,0xb, 0xa1, -0xe7,0xff,0x0, 0x8d,0x3c,0x62,0xef,0xfd,0xda,0xcc,0x24,0x26,0x3f,0xe2,0xe0,0x1, -0xc7,0x86,0x37,0xa1,0x3f,0x96,0xf0,0x0, 0x8f,0x2f,0xe0,0xf, 0x31,0x21,0x3f,0x96, -0xe0,0x2, 0xc7,0x8f,0x89,0x8f,0x21,0x9f,0xe8,0x0, 0x8f,0xfd,0xc7,0xff,0x39,0xff, -0x3f,0xe7,0xe0,0x6f,0x39,0xa5,0x3a,0xef,0xe8,0x40,0x3d,0x68,0x3c,0xe3,0x3c,0x67, -0xef,0xfd,0xdb,0x22,0x24,0x12,0xe8,0x40,0x3d,0x6a,0xe8,0x40,0x3c,0xee,0x3c,0x67, -0xef,0xfd,0xda,0xfe,0x24,0x1a,0x3f,0xe2,0xc7,0x81,0x39,0x6f,0xe2,0x1, 0xc1,0x7f, -0xe7,0xff,0x0, 0xbd,0x12,0x81,0x0, 0xe9,0x29,0x96,0xe8,0xe, 0x8f,0xdc,0xc7,0xff, -0x39,0xff,0x1, 0xb, 0xc1,0x81,0x3c,0xe3,0xe8,0x40,0x3d,0x68,0xe2,0x1, 0xc4,0xff, -0x3c,0x67,0xef,0xfd,0xdb,0x1, 0x2c,0x60,0xe8,0x40,0x3c,0xeb,0x3c,0x62,0xef,0xfd, -0xda,0x96,0x0, 0xe2,0x3f,0xe3,0xc7,0xff,0x3c,0xef,0xe8,0x40,0x3d,0x68,0xe2,0x1, -0xc4,0xff,0x3c,0x67,0xef,0xfd,0xda,0xf0,0x24,0x61,0x0, 0xce,0xf8,0x0, 0xf, 0x28, -0xb, 0xe1,0x8, 0xb1,0xdd,0xae,0xdf,0x6f,0x8, 0xa1,0xe7,0xfb,0x0, 0xef,0x8, 0xb6, -0xc0,0x78,0xe0,0x0, 0x1a,0xf5,0x11,0x0, 0xe2,0x0, 0x79,0x88,0xe1,0xc0,0xb9,0x13, -0x17,0x10,0xe0,0x12,0x9f,0xb5,0xe0,0x0, 0x1d,0x55,0xe7,0x20,0xcf,0x8e,0xe0,0x12, -0xb7,0xb5,0x15,0x81,0xe0,0x22,0x14,0x95,0x3c,0x62,0xe0,0x0, 0xdd,0x61,0xe0,0x12, -0x9f,0x95,0x12,0x1, 0xe7,0x0, 0xcf,0x94,0xe0,0x0, 0x1d,0x54,0xe0,0x12,0xb7,0x95, -0x3d,0xe4,0xe0,0x22,0x14,0x93,0x3c,0x62,0xe0,0x0, 0xdd,0x52,0xe0,0x0, 0x14,0x64, -0xef,0xfa,0xd6,0x1, 0x3d,0xe4,0x3d,0x63,0xe0,0x22,0x14,0x99,0x3c,0x62,0xe0,0x22, -0x13,0x19,0xe0,0x0, 0xdc,0xfb,0x12,0x8a,0x5f,0x82,0xe6,0xff,0xcf,0xff,0x2f,0x96, -0xe0,0x0, 0x14,0x64,0xef,0xfa,0xd5,0xef,0x15,0x82,0xe2,0x0, 0x7d,0x8, 0xe0,0x22, -0x14,0x96,0x14,0x0, 0xe0,0x0, 0xdc,0xea,0x5c,0x4, 0x5f,0x85,0xe4,0x8, 0x34,0x20, -0x3c,0x1f,0xe6,0xcc,0xcc,0x8, 0xc0,0x8, 0xb, 0x61,0x3c,0x65,0xef,0xfa,0xd5,0xdb, -0x3d,0xe4,0x3d,0x63,0x3c,0xe6,0x3c,0x62,0xe0,0x0, 0xdc,0xd8,0x0, 0xde,0x8, 0xb1, -0xe0,0x0, 0x1e,0x75,0x17,0x80,0x3d,0xec,0xe6,0xf7,0xce,0x8f,0xe0,0xe, 0x36,0xa1, -0xe6,0xff,0xcd,0x7f,0x3f,0x1c,0x3f,0x1a,0xaf,0xce,0xc7,0x81,0xe2,0x1, 0xc7,0xff, -0xe2,0x0, 0xcf,0xa9,0x1, 0xf2,0x17,0x80,0xe6,0xf7,0xce,0x8f,0xe0,0xe, 0x36,0xa1, -0xe6,0xff,0xce,0x7f,0x3f,0x1b,0x3f,0x1c,0xe0,0x5, 0xaf,0xee,0xc7,0x81,0xe2,0x1, -0xc7,0xff,0xe2,0x0, 0xcf,0xaa,0x1, 0xf1,0xe0,0x0, 0x1d,0x6c,0x15,0x95,0xe0,0x20, -0x14,0x82,0x14,0x0, 0xe0,0x0, 0xdc,0xf4,0xe0,0x0, 0x1d,0x6b,0x15,0x95,0xe0,0x20, -0x14,0x97,0x14,0x0, 0x8, 0xa1,0xe0,0x19,0x0, 0xeb,0x8, 0xb7,0xe0,0x2, 0x1f,0xb1, -0xe0,0x1, 0x18,0x85,0xe0,0xe, 0x8c,0xf, 0xe0,0xe, 0x8f,0x1f,0xe0,0xe, 0x8a,0x2f, -0xe0,0xe, 0x8f,0xbf,0x3f,0x18,0x3d,0xee,0x3f,0x94,0xe2,0x1, 0xc5,0xff,0xc7,0x81, -0x3f,0x9b,0x3e,0x6f,0xe0,0x4, 0x1f,0xb4,0xe2,0x1, 0xc6,0x7f,0xe0,0x12,0x8f,0x3f, -0xe0,0x12,0x89,0x2f,0xe0,0x12,0x89,0x9f,0x3f,0x2b,0xe0,0x12,0x8a,0x8f,0x3c,0xe1, -0x15,0x0, 0x3e,0xef,0x3b,0x61,0xe0,0x7, 0x3d,0x94,0x3f,0x24,0x39,0x2b,0x39,0xa8, -0x3f,0xea,0xe2,0x1, 0xc7,0xff,0x3e,0x7f,0x2, 0x84,0xb, 0xa1,0xe7,0xff,0x0, 0x99, -0x2f,0x85,0xaf,0x86,0xc5,0x1, 0xc4,0x81,0x0, 0xf4,0x3c,0x7f,0x4, 0x88,0xe0,0xf, -0x3a,0x9a,0x3f,0x9d,0xe0,0x8, 0x8f,0xef,0xaf,0x89,0x0, 0xf5,0x3d,0xff,0x4, 0x84, -0xe0,0xf, 0x39,0x9a,0x0, 0xf7,0xe0,0xf, 0x3c,0xa1,0x3b,0xff,0x4, 0x7, 0xe0,0xf, -0x39,0x1a,0x3f,0x9d,0xe0,0xb, 0x8f,0xaf,0x0, 0xf0,0xe0,0xf, 0x3f,0x1a,0x0, 0xfa, -0x8, 0xb7,0xf8,0x0, 0xc, 0x3b,0xe1,0xfe,0xc0,0x54,0x39,0x60,0xc1,0x24,0x3c,0x62, -0xe0,0x0, 0x15,0x6c,0x14,0x80,0xc4,0x4, 0xef,0xf3,0xde,0x6e,0xe0,0x5, 0x1f,0xc8, -0x11,0x81,0x7f,0x89,0x12,0x80,0x67,0x89,0xf0,0x4, 0x1c,0x34,0xe7,0x1b,0xcf,0x93, -0x7f,0x89,0xe0,0x6e,0x13,0x64,0x67,0x89,0xf0,0x4, 0x1c,0xef,0xe7,0x1a,0xcf,0x95, -0x7f,0x89,0x3a,0x65,0xe0,0x5, 0x1f,0xc9,0xf8,0x40,0x3d,0x69,0x7f,0x8e,0xe0,0x7d, -0x17,0xef,0x7f,0x8f,0x3b,0xe5,0xe0,0x5, 0x1f,0xca,0xf0,0x0, 0x15,0x8f,0x7f,0x90, -0x67,0x90,0xe7,0x1e,0xcf,0x95,0x7f,0x90,0xea,0x80,0xcf,0x80,0x7f,0x91,0xe0,0x5, -0x1f,0xcb,0xe0,0x3, 0xbf,0xc2,0xe0,0x3, 0xa7,0xc2,0xe7,0x4, 0xcf,0x95,0xe0,0x3, -0xbf,0xc2,0xe0,0x5, 0x1f,0xcc,0xe0,0x3, 0xbf,0xd2,0xe8,0x13,0x8f,0xb8,0xe0,0x3, -0xa7,0x52,0xe6,0xfc,0xcf,0xef,0xe7,0x8, 0xcf,0x2f,0xe0,0x5, 0x1f,0xcd,0xe0,0x3, -0xbf,0x52,0xe0,0x3, 0xbf,0xe2,0xe0,0x5, 0x1f,0xce,0xe0,0x3, 0xbf,0xf2,0xe0,0x5, -0x1f,0xcf,0xe0,0x4, 0xbf,0x82,0xe0,0x5, 0x1f,0xd0,0xe0,0x4, 0xbf,0x92,0xe0,0x5, -0x1f,0xd1,0xe0,0x4, 0xbf,0xa2,0xe6,0xf7,0xcf,0x84,0xe4,0x0, 0xc7,0x93,0xf0,0xe, -0x3c,0x9f,0x8e,0x8e,0x8e,0x1e,0xe6,0xde,0xce,0xed,0x3e,0xcc,0xe0,0x4, 0xa6,0x2, -0xe7,0x33,0xce,0x2d,0xe0,0x4, 0xbe,0x2, 0x8e,0xae,0x8e,0x3e,0xe6,0xdd,0xce,0xdd, -0x3e,0xcc,0xe0,0x4, 0xa6,0x12,0xe7,0x2b,0xce,0x3d,0xe0,0x4, 0xbe,0x12,0xe0,0x3, -0xa6,0xc2,0x8e,0x4e,0xe7,0x37,0xce,0x8c,0xe0,0x3, 0xbe,0xc2,0xe0,0x1, 0x8e,0x8e, -0xe0,0x3, 0xa7,0x42,0xe7,0x11,0xcf,0x6d,0xe0,0x3, 0xbf,0x42,0xe8,0x13,0x8f,0x38, -0xe0,0x3, 0xa6,0xc2,0xe6,0xff,0xcf,0x7e,0xe7,0x3, 0xce,0x9e,0xe0,0x3, 0xbe,0xc2, -0xa7,0x2, 0xe6,0xe5,0xcf,0x7e,0xe0,0x1, 0x27,0x53,0xa7,0x52,0xe7,0x1f,0xcf,0x13, -0xbf,0x52,0xe6,0xff,0xce,0xf4,0xa7,0x2, 0xe0,0x1, 0x2e,0xd0,0xe7,0x16,0xcf,0x13, -0xbf,0x2, 0xe8,0xf, 0x3f,0x9a,0xa7,0x2, 0xe7,0x17,0xcf,0x1d,0xbf,0x2, 0xe0,0x1, -0x8f,0x1f,0xa7,0x82,0xe7,0xb, 0xcf,0xfe,0xbf,0x82,0xe0,0x3, 0xa7,0xd2,0xe7,0x36, -0xcf,0xa7,0xe0,0x3, 0xbf,0xd2,0xe0,0x3, 0xa7,0xe2,0xe7,0x1e,0xcf,0xa7,0xe0,0x3, -0xbf,0xe2,0xe0,0x4, 0xa7,0x82,0xe7,0x1d,0xcf,0xb7,0xe0,0x4, 0xbf,0x82,0xa7,0x82, -0xe7,0x1d,0xcf,0x97,0xbf,0x82,0xa7,0x82,0xe6,0xe6,0xcf,0xff,0xe0,0x1, 0x2f,0xb3, -0xe0,0x3, 0xa7,0x42,0xe7,0x9, 0xcf,0x4f,0xe0,0x3, 0xbf,0x42,0xe0,0xf, 0x31,0xb5, -0x3f,0x6f,0xe2,0x0, 0xc7,0x13,0xe0,0x1, 0x2f,0x2e,0xe2,0x0, 0xc7,0x8c,0xe0,0x1, -0x2f,0xd2,0xe0,0x4, 0xa7,0x82,0xe0,0x4, 0xa7,0x12,0xe6,0xc3,0xcf,0xff,0xe7,0x36, -0xcf,0x2f,0xe0,0x4, 0xbf,0x12,0x3c,0x64,0xe0,0x4, 0xa7,0x92,0xe0,0x4, 0xa7,0x2, -0xe6,0xca,0xcf,0xdf,0xc7,0xe7,0xe7,0x28,0xcf,0x3f,0xe0,0x4, 0xbf,0x2, 0xe2,0x0, -0x7d,0x14,0xe0,0x4, 0xa7,0x92,0xe0,0x3, 0xa7,0x72,0xe6,0xca,0xcf,0xdf,0xe6,0xc7, -0xcf,0x6e,0xc7,0x83,0x3f,0xae,0xe0,0x3, 0xa7,0x62,0xe2,0x0, 0x7c,0x84,0xe7,0x29, -0xcf,0x3f,0xe0,0x3, 0xbf,0x62,0x3f,0xe4,0xe0,0x3, 0xa7,0x52,0xe0,0x0, 0xc7,0xc2, -0xe2,0x1, 0xc7,0xff,0xe7,0x2d,0xcf,0xf, 0xe0,0x3, 0xbf,0x52,0xef,0xf7,0xd3,0x7d, -0x67,0x81,0x3c,0x66,0xbf,0x92,0x15,0x12,0x67,0x82,0x3c,0xe2,0xbf,0xa2,0xc2,0x81, -0x67,0x83,0xbf,0xb2,0x67,0x84,0xbf,0xc2,0xe0,0x0, 0xdb,0xce,0x3c,0x66,0xc4,0x38, -0x15,0xe, 0xe2,0x1, 0x7c,0x94,0xe3,0xff,0xc4,0x7f,0xe0,0x0, 0xdb,0xc5,0x3f,0xe4, -0xc7,0x81,0x3a,0x6f,0xe2,0x1, 0xc2,0x7f,0xe2,0x0, 0xca,0x5, 0xe0,0x0, 0xc3,0x46, -0xe3,0xff,0xc3,0x7f,0xe7,0xfe,0x1, 0xa9,0xe0,0x5, 0x1c,0x6, 0x14,0x80,0xef,0xf7, -0xd1,0x7b,0xe0,0x0, 0x1c,0x35,0x14,0x80,0xef,0xf7,0xd0,0xe0,0xe0,0x1, 0x1c,0xe, -0x14,0x80,0xef,0xf6,0xdf,0xb1,0xe0,0x5, 0x1c,0x5, 0x14,0x81,0xef,0xf7,0xd1,0x6c, -0xe0,0x0, 0x1c,0x34,0x14,0x81,0xef,0xf7,0xd0,0xd1,0xe0,0x1, 0x1c,0xd, 0x14,0x81, -0xef,0xf6,0xdf,0xa2,0xe0,0x5, 0x1c,0x4, 0x14,0x82,0xef,0xf7,0xd1,0x5d,0xe0,0x0, -0x1c,0x33,0x14,0x82,0xef,0xf7,0xd0,0xc2,0xe0,0x1, 0x1c,0xc, 0x14,0x82,0xef,0xf6, -0xdf,0x93,0xe0,0x1, 0xc0,0x2c,0xf8,0x0, 0xd, 0xa8,0xb, 0xe1,0xa6,0xd2,0xe7,0x1f, -0xce,0x9e,0xbe,0xd2,0xe7,0xfe,0x0, 0xaf,0xe7,0x16,0xcf,0x17,0xbf,0x2, 0xe8,0xf, -0x3f,0x9a,0xa7,0x2, 0xe7,0x17,0xcf,0x13,0xbf,0x2, 0xe0,0x1, 0x8f,0x2f,0xe7,0xfe, -0x0, 0xb2,0xe0,0x3, 0xa7,0xc2,0xe7,0x9, 0xcf,0xc3,0xe0,0x3, 0xbf,0xc2,0xe7,0xfe, -0x0, 0xcf,0xa7,0x82,0xe2,0x0, 0xca,0x4, 0xe7,0x1f,0xcf,0x93,0xbf,0x82,0xa7,0x82, -0xe7,0x1e,0xcf,0x97,0xbf,0x82,0xa7,0x82,0xe8,0x0, 0xcf,0xb8,0xbf,0x82,0xe7,0xfe, -0x1, 0xca,0xa7,0x82,0xe7,0x1d,0xcf,0x93,0xbf,0x82,0xe0,0x3, 0xa7,0xc2,0xe7,0x3, -0xcf,0x97,0xe0,0x3, 0xbf,0xc2,0xe0,0x3, 0xa7,0xc2,0xe7,0x2, 0xcf,0x97,0xe0,0x3, -0xbf,0xc2,0xe0,0x4, 0xa7,0xa2,0xef,0x9, 0xcf,0xdb,0xe0,0x4, 0xbf,0xa2,0xe7,0xfe, -0x0, 0xb2,0xa7,0x82,0xe7,0x1f,0xcf,0x93,0xbf,0x82,0xa7,0x82,0xe7,0x1e,0xcf,0x9e, -0xbf,0x82,0xa7,0x82,0xe8,0x0, 0xcf,0xb8,0xbf,0x82,0xe7,0xfe,0x0, 0xa4,0x8, 0xb4, -0xe0,0x0, 0x19,0x75,0x12,0x0, 0xe0,0x6, 0x9f,0x82,0xe0,0x0, 0x1d,0x53,0xe7,0x8, -0xcf,0x94,0x3c,0x64,0xe0,0x6, 0xb7,0x82,0x15,0x81,0xe0,0x20,0x14,0xb0,0xe0,0x0, -0xda,0xc7,0xe0,0x6, 0x9f,0xd2,0x11,0x81,0xe7,0x5, 0xcf,0x93,0xe0,0x0, 0x1d,0x58, -0x3d,0xe3,0x3c,0x64,0xe0,0x6, 0xb7,0xd2,0xe0,0x20,0x14,0xb5,0xe0,0x0, 0xda,0xb8, -0xe0,0x6, 0x9f,0xe2,0xe0,0x0, 0x1d,0x57,0xe7,0xf, 0xcf,0x93,0x3d,0xe3,0x3c,0x64, -0xe0,0x6, 0xb7,0xe2,0xe0,0x20,0x14,0xb6,0xe0,0x0, 0xda,0xaa,0xe0,0x7, 0x9f,0xa2, -0xe0,0x0, 0x1d,0x59,0xe7,0xf, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0x3d,0xe3,0xe0,0x7, -0x9f,0xa2,0x3c,0x64,0xe7,0x7, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0xe0,0x20,0x14,0xba, -0xe0,0x7, 0x9f,0xa2,0xe7,0x0, 0xcf,0x93,0xe0,0x7, 0xb7,0xa2,0xe0,0x0, 0xda,0x90, -0xe0,0x7, 0x9f,0xe2,0xe0,0x0, 0x1d,0x5a,0xe7,0xf, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2, -0x3d,0xe3,0xe0,0x7, 0x9f,0xe2,0x3c,0x64,0xe7,0xe, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2, -0xe0,0x20,0x14,0xbe,0xe0,0x7, 0x9f,0xe2,0xe7,0xd, 0xcf,0x93,0xe0,0x7, 0xb7,0xe2, -0xe0,0x0, 0xda,0x76,0xe0,0x8, 0x9f,0xa2,0xe0,0x0, 0x1d,0x52,0xe7,0xb, 0xcf,0x93, -0x3d,0xe3,0x3c,0x64,0xe0,0x8, 0xb7,0xa2,0xe0,0x20,0x14,0xc2,0xe0,0x0, 0xda,0x68, -0xe0,0x0, 0x1d,0x51,0xe0,0x0, 0x17,0xd0,0x3d,0xe3,0x3c,0x64,0xe0,0x22,0x14,0x94, -0xe0,0x12,0xb7,0xa2,0xe0,0x0, 0xda,0x5c,0xe0,0x12,0x9f,0xb2,0x17,0x10,0xe7,0x20, -0xcf,0x8e,0xe0,0x0, 0x1d,0x55,0x3d,0xe3,0x3c,0x64,0xe0,0x12,0xb7,0xb2,0xe0,0x22, -0x14,0x95,0xe0,0x0, 0xda,0x4d,0xe0,0x12,0x9f,0xe2,0xe0,0x0, 0x1d,0x50,0xe7,0x0, -0xcf,0xe3,0x3d,0xe3,0xe0,0x22,0x14,0x98,0x3c,0x64,0xe0,0x12,0xb7,0xe2,0xa, 0x21, -0xe0,0x14,0x0, 0xbe,0x8, 0xb2,0xc0,0x5c,0xef,0xf8,0xd5,0x6f,0x15,0x24,0x14,0x80, -0xe2,0x0, 0x7c,0x4, 0xef,0xf3,0xdc,0x18,0x11,0x2, 0x69,0x4, 0x17,0x81,0x6f,0x86, -0xe2,0x0, 0x7c,0x4, 0x4f,0x4, 0x5f,0x84,0xe7,0x20,0xcf,0x8e,0x77,0x84,0xef,0xf8, -0xd5,0x93,0xe0,0x4, 0x1f,0xef,0xe0,0x2, 0xa9,0x2f,0xc0,0x24,0x9, 0x61,0x8, 0xb6, -0xe1,0xfe,0xc0,0x0, 0xe0,0x1, 0x1d,0x1b,0x3f,0xe0,0x3f,0x60,0x8c,0x8a,0xc7,0x84, -0xe0,0x1, 0xc7,0x2a,0x16,0x80,0xe1,0x80,0xb6,0x9f,0x3f,0xfe,0x1, 0xfd,0xe0,0x2, -0x1e,0x31,0xe0,0x1, 0x1a,0x5, 0xe0,0xe, 0x8f,0x8c,0xe0,0xe, 0x8e,0x9c,0xe0,0x1, -0x1a,0x80,0xe0,0x3, 0x3f,0x9d,0x17,0x0, 0x3f,0x73,0x4, 0x36,0x3f,0x9d,0xe0,0xe, -0x8f,0x3c,0xe0,0xe, 0x8e,0xac,0xe0,0x1, 0x19,0x5, 0x3e,0x9e,0x3e,0x93,0xe0,0x1, -0x19,0x80,0xe2,0x1, 0xc7,0xff,0x3f,0xfd,0xe0,0x0, 0x4, 0x43,0xe0,0x1, 0x1f,0x80, -0xe0,0x0, 0x1e,0x7e,0x3f,0x6f,0x38,0xef,0x15,0x80,0xe1,0x80,0xb5,0x9e,0x3f,0x7c, -0x1, 0xfd,0xe2,0x0, 0xcc,0x1, 0xe0,0x0, 0x1, 0xf8,0xe0,0x1, 0x1f,0x9b,0xe0,0x1, -0x1f,0x19,0x16,0x0, 0xe1,0x80,0xae,0x1f,0x3f,0xfe,0x1, 0xfd,0x16,0x0, 0xe0,0x5, -0x1c,0x52,0x3f,0x6c,0xe1,0x5f,0x11,0x6a,0xe0,0xf, 0x11,0xd0,0x3e,0xfe,0x2, 0x3a, -0xe0,0x2, 0xc0,0x0, 0xb, 0x61,0xe0,0xb, 0x3a,0x1e,0xe0,0x1, 0x37,0x21,0xe2,0x0, -0x79,0x4, 0x8b,0x1b,0x38,0x92,0x15,0x80,0x39,0x6b,0xe2,0x1, 0xc1,0x7f,0x3b,0x72, -0x1, 0x86,0xe0,0x2, 0x35,0xa1,0x39,0x15,0x99,0x2, 0xb1,0x1, 0xc5,0x81,0xe2,0x0, -0xcd,0xa9,0x1, 0xf3,0xc7,0x1, 0xe2,0x1, 0xc7,0x7f,0xe7,0xff,0x0, 0xaf,0xe0,0xe, -0x39,0x1f,0x88,0x9e,0xe2,0x0, 0x7d,0x84,0xe0,0xc, 0x37,0xa1,0x3e,0x1b,0xe0,0xb, -0x30,0xa1,0x17,0x0, 0x3d,0x93,0x38,0xfe,0x1, 0x84,0xe0,0x5, 0x9a,0x1b,0xb2,0xc, -0xc7,0x1, 0xe2,0x0, 0xcf,0x2a,0x1, 0xf8,0xc7,0x81,0xe2,0x1, 0xc7,0xff,0xe7,0xff, -0x0, 0xa4,0xe0,0xb, 0x37,0x21,0xe2,0x0, 0x7f,0x84,0x3f,0x9b,0x97,0x8f,0x3d,0x91, -0x3c,0xef,0xe1,0xf5,0xc4,0xe1,0xe3,0xff,0xc4,0xff,0xe2,0x1, 0xcc,0xbc,0xb7,0x8b, -0x2, 0x89,0xb1,0x8b,0x3f,0xee,0xc7,0x81,0x3f,0x6f,0xe2,0x1, 0xc7,0x7f,0xe7,0xff, -0x0, 0xaf,0x3c,0xec,0x3e,0x1a,0xaf,0xc, 0x3e,0x6f,0xe4,0x1e,0xc6,0x40,0x37,0xa5, -0x3e,0x18,0xe0,0xf, 0x39,0x2f,0xe0,0x2f,0x3e,0x3f,0xc4,0x81,0x3e,0x69,0xe2,0x1, -0xc6,0x7f,0xb7,0x8b,0x0, 0xe8,0xe2,0x0, 0xcc,0x3, 0x1, 0xaf,0xe0,0x1, 0x1d,0x98, -0xe0,0x5, 0x1d,0x52,0x16,0x80,0xe1,0x5f,0x14,0x6a,0xe0,0xf, 0x10,0xd0,0x3e,0xf9, -0xe7,0xff,0x1, 0x10,0xe1,0x80,0x8f,0x1b,0xe2,0x0, 0x7e,0x4, 0x37,0x21,0x3f,0x1c, -0x97,0xe, 0x3e,0x6e,0xe1,0xf5,0xc6,0x61,0xe3,0xff,0xc6,0x7f,0xe2,0x1, 0xce,0x3c, -0x2, 0x89,0xb0,0x8f,0x3f,0x6d,0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0xc7,0x82, -0x0, 0xe7,0x3e,0x6e,0xe4,0x1e,0xc6,0x40,0x37,0x25,0x3e,0x1a,0xe0,0xe, 0x3c,0x2e, -0xe0,0x2e,0x3e,0x3e,0xb7,0xf, 0x0, 0xef,0xe2,0x0, 0xcc,0x2, 0xe7,0xfe,0x1, 0xea, -0xe0,0x3, 0x1f,0x40,0xe0,0x0, 0x1e,0x30,0x15,0x0, 0x88,0x8e,0x8e,0x8c,0xe0,0x1, -0x1c,0x18,0x3d,0xea,0x11,0x1, 0x3d,0xf9,0x1, 0xa2,0x25,0x2, 0xae,0x8c,0xea,0x28, -0x7d,0xb8,0x8d,0xc, 0xe0,0x5, 0x1c,0xd2,0x16,0x80,0xe1,0x5f,0x14,0x6a,0xe0,0xf, -0x10,0xd0,0x3d,0x7d,0xe7,0xfe,0x1, 0x4e,0xe1,0x80,0x97,0x1b,0x3e,0x6e,0xe1,0xf5, -0xc6,0x61,0xe3,0xff,0xc6,0x7f,0xe2,0x1, 0xce,0x3c,0x2, 0xa3,0xb0,0x8f,0x3f,0x6d, -0xc7,0x1, 0x3e,0xee,0xe2,0x1, 0xc6,0xff,0xc7,0x82,0x0, 0xec,0xe1,0x80,0x8f,0x18, -0x3f,0x71,0x5, 0x91,0xea,0x28,0x7d,0x38,0x39,0xed,0x36,0xa1,0x3e,0x9a,0x37,0x21, -0xe2,0x0, 0x7d,0x4, 0x3f,0x1a,0x9f,0xe, 0xc1,0x81,0xb7,0xd, 0x3e,0xe3,0x3d,0x62, -0xe2,0x1, 0xc6,0xff,0x3f,0x6b,0xc7,0x1, 0x3d,0xee,0xe2,0x1, 0xc5,0xff,0x0, 0xc4, -0x3e,0x6e,0xe4,0x1e,0xc6,0x40,0x37,0x25,0x3e,0x19,0xe0,0xe, 0x3c,0x2e,0xe0,0x2e, -0x3e,0x3e,0xb7,0xf, 0x0, 0xd5,0x8, 0xb7,0xf8,0x0, 0xc, 0x3e,0xc0,0x7c,0x39,0x68, -0xdc,0x48,0xe0,0x1, 0x1c,0x0, 0xe0,0x2, 0x15,0x0, 0x14,0x80,0xef,0xf3,0xda,0xbc, -0xe2,0x0, 0xc9,0x3, 0xe0,0x9, 0x2, 0xe1,0xdb,0xe9,0xe0,0x2, 0x1f,0x8c,0xe0,0x2, -0x1f,0xb, 0x8f,0x8f,0x8c,0xe, 0x37,0xa8,0x3c,0x4f,0xef,0xff,0xd6,0x58,0xdd,0xf0, -0xde,0x8a,0xe0,0x0, 0x1f,0xb8,0x8c,0xf, 0x3f,0xe8,0xc7,0xff,0xe2,0x0, 0xcf,0xe3, -0xe0,0x2, 0x5, 0x9c,0x14,0x2, 0xef,0xfa,0xd1,0x72,0xe2,0x0, 0xc9,0x1, 0xe0,0x2, -0x1, 0xea,0xe0,0x0, 0x19,0xf5,0x12,0xff,0xe0,0x19,0xb2,0xe3,0x15,0x86,0xe0,0x19, -0xb2,0xf3,0xe0,0x22,0x14,0xd0,0xe0,0x1a,0xb2,0x83,0x14,0x0, 0xe0,0x1a,0xb2,0x93, -0x12,0x0, 0xe0,0x0, 0x1d,0x4f,0xe0,0x1a,0xb2,0xa3,0xe0,0x7, 0x13,0x7f,0xe0,0x1a, -0xb2,0xb3,0xe0,0x0, 0xd8,0x9d,0x17,0x80,0xe0,0x9, 0xb7,0x83,0x15,0x86,0xe0,0x8, -0xb7,0xf3,0xe0,0x20,0x14,0xc3,0xe0,0x8, 0x9f,0xe3,0xe0,0x0, 0x1d,0x4e,0xe7,0x20, -0xcf,0x94,0xe0,0x8, 0xb7,0xe3,0x3c,0x64,0xe0,0x8, 0xb2,0x53,0xe0,0x20,0x13,0xc3, -0xe0,0x8, 0xb2,0x43,0xf0,0x20,0x15,0xc5,0xe0,0x8, 0x9f,0xb3,0xf0,0x1, 0x1c,0x80, -0xe7,0x20,0xcf,0xa4,0xe0,0x8, 0xb7,0xb3,0xe0,0x0, 0xd8,0x7a,0xe0,0x9, 0xb2,0xb3, -0x15,0x83,0xe0,0x9, 0xb2,0xa3,0xe0,0x20,0x14,0xc9,0xe0,0x9, 0x9f,0x93,0xe0,0x0, -0x1d,0x4d,0xe7,0x20,0xcf,0xa6,0x3c,0x64,0xe0,0x9, 0xb7,0x93,0xe0,0x0, 0xd8,0x68, -0xe0,0x1a,0x9f,0xc3,0xe0,0x0, 0x1d,0x4c,0xe7,0x20,0xcf,0xa6,0xe0,0x1a,0xb7,0xc3, -0x15,0x83,0xe0,0x1a,0xb2,0xd3,0xe0,0x22,0x14,0xd6,0x3c,0x64,0xe0,0x1a,0xb2,0xe3, -0xe0,0x0, 0xd8,0x56,0xe0,0x18,0xb2,0x73,0x3d,0xe2,0xe0,0x18,0x9f,0xf3,0xe0,0x0, -0x1d,0x4b,0xe7,0xf, 0xcf,0x92,0xe0,0x22,0x14,0xc9,0x3c,0x64,0xe0,0x18,0xb7,0xf3, -0xe0,0x0, 0xd8,0x46,0xe0,0x8, 0x9f,0xa3,0xe0,0x0, 0x1d,0x52,0xe7,0x8, 0xcf,0x92, -0xe0,0x8, 0xb7,0xa3,0x3d,0xe2,0xe0,0x8, 0x9f,0xa3,0xe0,0x20,0x14,0xc2,0xe7,0x9, -0xcf,0x92,0x3c,0x64,0xe0,0x8, 0xb7,0xa3,0xe0,0x0, 0xd8,0x32,0xe0,0x7, 0x9f,0xf3, -0xe0,0x0, 0x1d,0x4a,0xe7,0xe, 0xcf,0x94,0x3d,0xe2,0xe0,0x20,0x14,0xbf,0x3c,0x64, -0xe0,0x7, 0xb7,0xf3,0xf0,0x20,0x16,0x46,0xf0,0x0, 0x1c,0x4e,0xf0,0x20,0x16,0xc7, -0xf0,0x20,0x17,0x48,0x3a,0xe4,0x3b,0x64,0xe0,0x0, 0xd8,0x1a,0xe2,0x0, 0xcb,0x28, -0xe0,0x1, 0x2, 0x96,0xe2,0x0, 0xcb,0xf, 0xe0,0x0, 0x2, 0xf3,0xe0,0xf, 0x31,0x35, -0xe0,0x0, 0x1d,0x49,0x3d,0xe2,0xe8,0x40,0x3c,0xee,0xe0,0x9, 0xb7,0x83,0x3c,0x64, -0xe0,0x0, 0xd8,0x6, 0xf0,0x40,0x3d,0x66,0xe0,0x12,0x9f,0x63,0xe0,0x22,0x14,0x98, -0xe7,0x8, 0xcf,0x14,0xe0,0x12,0xb7,0x63,0x14,0x0, 0xe0,0x12,0x9f,0x63,0xc2,0x81, -0xe7,0x9, 0xcf,0x12,0xe0,0x12,0xb7,0x63,0xe0,0x12,0x9f,0x63,0xef,0x0, 0xcf,0x6a, -0xe0,0x12,0xb7,0x63,0xe0,0x12,0x9d,0x63,0xd7,0x6c,0xe0,0x3, 0x14,0x10,0xef,0xfa, -0xd0,0x9a,0xda,0x6e,0xe0,0x9, 0xb2,0x3, 0x15,0x86,0xe0,0x8, 0xb2,0x73,0xe8,0x40, -0x3d,0x68,0xe0,0x8, 0x9f,0xe3,0xe9,0x80,0xb4,0x19,0xe7,0x20,0xcf,0x94,0xe0,0x8, -0xb7,0xe3,0x3c,0xe7,0xe0,0x8, 0xb2,0x53,0x14,0x0, 0xe0,0x8, 0xb2,0x43,0xe0,0x8, -0x9f,0xb3,0xe7,0x20,0xcf,0xa4,0xe0,0x8, 0xb7,0xb3,0xd7,0xc9,0x3f,0xe6,0xc7,0x81, -0x3b,0x6f,0xe2,0x1, 0xc3,0x7f,0xe2,0x0, 0xcb,0x53,0xe7,0xff,0x1, 0xa9,0x14,0x1, -0xdd,0x9f,0xe0,0x9, 0xb2,0x33,0xe0,0x9, 0xb2,0x23,0xe0,0x9, 0x9f,0x93,0xe7,0x20, -0xcf,0xa4,0xe0,0x0, 0x1d,0x4d,0x15,0x83,0xe0,0x20,0x14,0xc9,0x14,0x0, 0xe0,0x9, -0xb7,0x93,0xd7,0xad,0xef,0xfa,0xd6,0xfd,0xef,0xfa,0xd7,0x5d,0xc0,0x4, 0xf8,0x0, -0xf, 0x28,0xb, 0xa1,0xe7,0xe, 0x0, 0xf5,0xc4,0x2, 0xe7,0xfd,0x0, 0xe6,0xe2,0x0, -0xcb,0x1f,0x2, 0x8e,0x3f,0xe5,0xc7,0xf0,0xe0,0xf, 0x31,0x3f,0x3d,0xe2,0xe0,0x0, -0x1d,0x48,0xe8,0x40,0x3c,0xed,0xe0,0x8, 0xb7,0xf3,0xe7,0xff,0x0, 0x8a,0xe0,0x8, -0x9f,0x63,0xe0,0xf, 0x31,0x35,0xe7,0x20,0xcf,0x1f,0x3d,0xe2,0xe0,0x0, 0x1d,0x47, -0xe8,0x40,0x3c,0xec,0xe0,0x8, 0xb7,0x63,0xe7,0xfe,0x0, 0xfb,0x3f,0xe6,0xc7,0xd7, -0xf0,0x40,0x3d,0x6f,0xf2,0x1, 0xc5,0x7f,0xf2,0x0, 0xcd,0xf, 0x2, 0x8e,0xe8,0xe, -0x31,0x3a,0xe0,0x0, 0x1d,0x46,0x3d,0xe2,0xe8,0x40,0x3c,0xeb,0xe0,0x8, 0xb7,0x53, -0x3c,0x64,0xd7,0x6d,0xe7,0xfe,0x0, 0xea,0xf2,0x0, 0xcd,0x1f,0x2, 0x8e,0xe8,0x40, -0x3f,0x6a,0xc7,0x70,0xe0,0xe, 0x31,0x3e,0x3d,0xe2,0xe0,0x0, 0x1d,0x45,0xe0,0x20, -0x14,0xc4,0xe0,0x8, 0xb7,0x43,0x0, 0xed,0xe0,0x8, 0x9e,0xb3,0xe8,0xe, 0x31,0x3a, -0xe7,0x20,0xce,0xae,0x3d,0xe2,0xe8,0x40,0x3d,0x68,0x3c,0xe7,0xe0,0x8, 0xb6,0xb3, -0x0, 0xe0,0xe2,0x0, 0xc9,0x3, 0xe0,0x2, 0x1, 0xcf,0xe0,0x0, 0x19,0xf5,0x12,0x0, -0xe0,0x19,0xb2,0x63,0x15,0x86,0xe0,0x19,0xb2,0x73,0xe0,0x22,0x14,0xd0,0xe0,0x1a, -0xb2,0x3, 0x14,0x0, 0xe0,0x1a,0xb2,0x13,0x12,0xff,0xe0,0x0, 0x1d,0x4f,0xe0,0x1a, -0xb2,0x23,0xe0,0x7, 0x13,0x7f,0xe0,0x1a,0xb2,0x33,0xd7,0x31,0xe0,0x9, 0xb2,0x3, -0x15,0x86,0xe0,0x8, 0xb2,0x73,0x12,0x0, 0xe0,0x8, 0x9f,0xe3,0xe0,0x0, 0x1d,0x4e, -0xe7,0x20,0xcf,0x94,0xe0,0x8, 0xb7,0xe3,0xe0,0x20,0x14,0xc3,0xe0,0x8, 0xb2,0x53, -0x3c,0x64,0xe0,0x8, 0xb2,0x43,0xe0,0x20,0x13,0xc3,0xe0,0x8, 0x9f,0xb3,0xf0,0x1, -0x1c,0x80,0xe7,0x20,0xcf,0xa4,0xe0,0x8, 0xb7,0xb3,0xd7,0x11,0xe0,0x9, 0xb2,0xb3, -0x3d,0xe2,0xe0,0x9, 0xb2,0xa3,0xe0,0x20,0x14,0xc9,0xe0,0x9, 0x9f,0x93,0xe0,0x0, -0x1d,0x4d,0xe7,0x20,0xcf,0xa6,0x3c,0x64,0xe0,0x9, 0xb7,0x93,0xd7,0x0, 0xe0,0x1a, -0x9f,0xc3,0xe0,0x0, 0x1d,0x4c,0xe7,0x20,0xcf,0xa6,0xe0,0x1a,0xb7,0xc3,0x3d,0xe2, -0xe0,0x1a,0xb2,0xd3,0xe0,0x22,0x14,0xd6,0x3c,0x64,0xe0,0x1a,0xb2,0xe3,0xd6,0xef, -0xe0,0x18,0xb2,0x73,0x11,0x1, 0xe0,0x18,0x9f,0xf3,0xe0,0x0, 0x1d,0x4b,0xe7,0xf, -0xcf,0x92,0x3d,0xe2,0xe0,0x22,0x14,0xc9,0x3c,0x64,0xe0,0x18,0xb7,0xf3,0xd6,0xdf, -0xe0,0x8, 0x9f,0xa3,0xe0,0x0, 0x1d,0x52,0xe7,0x8, 0xcf,0x92,0xe0,0x8, 0xb7,0xa3, -0x3d,0xe2,0xe0,0x8, 0x9f,0xa3,0xe0,0x20,0x14,0xc2,0xe7,0x9, 0xcf,0x92,0x3c,0x64, -0xe0,0x8, 0xb7,0xa3,0xd6,0xcc,0xe0,0x7, 0x9f,0xf3,0xe0,0x0, 0x1d,0x4a,0xe7,0xe, -0xcf,0x94,0x3d,0xe2,0xe0,0x20,0x14,0xbf,0x3c,0x64,0xe0,0x7, 0xb7,0xf3,0xf0,0x20, -0x15,0xc5,0xf0,0x0, 0x1c,0x4e,0xf0,0x20,0x16,0x46,0xf0,0x20,0x16,0xc7,0xf0,0x20, -0x17,0x48,0x3b,0x64,0x3a,0xe4,0xd6,0xb3,0xe2,0x0, 0xcb,0x28,0xe0,0x1, 0x2, 0x81, -0xe2,0x0, 0xcb,0xf, 0xe0,0x0, 0x2, 0xde,0xe0,0xf, 0x31,0x34,0xe0,0x0, 0x1d,0x49, -0x3d,0xe2,0xe8,0x40,0x3c,0xee,0xe0,0x9, 0xb7,0x83,0x3c,0x65,0xd6,0xa0,0xf0,0x40, -0x3d,0x66,0xe0,0x12,0x9f,0x63,0xe0,0x22,0x14,0x98,0xe7,0x8, 0xcf,0x15,0xe0,0x12, -0xb7,0x63,0x14,0x0, 0xe0,0x12,0x9f,0x63,0xc2,0x1, 0xe7,0x9, 0xcf,0x12,0xe0,0x12, -0xb7,0x63,0xe0,0x12,0x9f,0x63,0xef,0x0, 0xcf,0x6a,0xe0,0x12,0xb7,0x63,0xe0,0x12, -0x9d,0x63,0xd6,0x7, 0xe0,0x3, 0x14,0x10,0xef,0xf9,0xdf,0x35,0xd9,0x9, 0xe0,0x9, -0xb2,0x83,0x15,0x86,0xe0,0x8, 0xb2,0xf3,0xe8,0x40,0x3d,0x68,0xe0,0x8, 0x9f,0xe3, -0xe9,0x80,0xb4,0x19,0xe7,0x20,0xcf,0x95,0xe0,0x8, 0xb7,0xe3,0x3c,0xe7,0xe0,0x8, -0xb2,0xd3,0x14,0x0, 0xe0,0x8, 0xb2,0xc3,0xe0,0x8, 0x9f,0xb3,0xe7,0x20,0xcf,0xa5, -0xe0,0x8, 0xb7,0xb3,0xd6,0x64,0x3f,0xe6,0xc7,0x81,0x3b,0x6f,0xe2,0x1, 0xc3,0x7f, -0xe2,0x0, 0xcb,0x53,0xe7,0xff,0x1, 0xaa,0x14,0x3, 0xdc,0x3a,0xe0,0x9, 0xb2,0xb3, -0xe0,0x9, 0xb2,0xa3,0xe0,0x9, 0x9f,0x93,0xe7,0x20,0xcf,0xa5,0xe7,0xfd,0x0, 0x9b, -0xe2,0x0, 0xcb,0x1f,0x2, 0x8e,0x3f,0xe4,0xc7,0xf0,0xe0,0xf, 0x31,0x3f,0x3d,0xe2, -0xe0,0x0, 0x1d,0x48,0xe8,0x40,0x3c,0xed,0xe0,0x8, 0xb7,0xf3,0xe7,0xff,0x0, 0x9f, -0xe0,0x8, 0x9f,0x63,0xe0,0xf, 0x31,0x34,0xe7,0x20,0xcf,0x1f,0x3d,0xe2,0xe0,0x0, -0x1d,0x47,0xe8,0x40,0x3c,0xec,0xe0,0x8, 0xb7,0x63,0xe7,0xff,0x0, 0x90,0x3f,0xe6, -0xc7,0xd7,0xf0,0x40,0x3d,0x6f,0xf2,0x1, 0xc5,0x7f,0xf2,0x0, 0xcd,0xf, 0x2, 0x8e, -0xe8,0xe, 0x31,0x3a,0xe0,0x0, 0x1d,0x46,0x3d,0xe2,0xe8,0x40,0x3c,0xeb,0xe0,0x8, -0xb7,0x53,0x3c,0x65,0xd6,0x1c,0xe7,0xfe,0x0, 0xfe,0xf2,0x0, 0xcd,0x1f,0x2, 0x8e, -0xe8,0x40,0x3f,0x6a,0xc7,0x70,0xe0,0xe, 0x31,0x3e,0x3d,0xe2,0xe0,0x0, 0x1d,0x45, -0xe0,0x20,0x14,0xc4,0xe0,0x8, 0xb7,0x43,0x0, 0xed,0xe0,0x8, 0x9e,0xb3,0xe8,0xe, -0x31,0x3a,0xe7,0x20,0xce,0xae,0x3d,0xe2,0xe8,0x40,0x3d,0x68,0x3c,0xe7,0xe0,0x8, -0xb6,0xb3,0x0, 0xe0,0xe2,0x0, 0xc9,0x2, 0xe7,0xfc,0x1, 0xce,0xe0,0x0, 0x19,0xf5, -0x12,0x0, 0xe0,0x1, 0x1b,0x1b,0xf0,0x0, 0x1c,0xb0,0xe0,0x19,0xb2,0x63,0x17,0x80, -0xe0,0x19,0xb2,0x73,0x15,0x86,0xe8,0x0, 0xaf,0x89,0xe0,0x22,0x14,0xd0,0x8f,0x86, -0xf0,0x4, 0x1c,0x5b,0xe0,0x1a,0xb2,0x3, 0x14,0x0, 0xe0,0x1a,0xb2,0x13,0x12,0xff, -0xe0,0x0, 0x1d,0x4f,0xe8,0x0, 0xaf,0x88,0xf0,0x7, 0x15,0x7f,0x8f,0x96,0xe0,0x3, -0x1b,0xc0,0xe0,0x1a,0xb2,0x23,0xf0,0x20,0x15,0xc3,0xe0,0x1a,0xb2,0x33,0xf0,0x22, -0x16,0x50,0xaf,0x87,0xd5,0xcc,0xe0,0x9, 0xb2,0x3, 0x15,0x86,0xe0,0x8, 0xb2,0x73, -0x12,0x0, 0xe0,0x8, 0x9f,0xe3,0xe0,0x0, 0x1d,0x4e,0xe7,0x20,0xcf,0x94,0xe0,0x8, -0xb7,0xe3,0xe0,0x20,0x14,0xc3,0xe0,0x8, 0xb2,0x53,0x3c,0x64,0xe0,0x8, 0xb2,0x43, -0xe0,0x8, 0x9f,0xb3,0xe7,0x20,0xcf,0xa4,0xe0,0x8, 0xb7,0xb3,0xd5,0xb0,0xe0,0x9, -0xb2,0xb3,0x15,0x83,0xe0,0x9, 0xb2,0xa3,0xe0,0x20,0x14,0xc9,0xe0,0x9, 0x9f,0x93, -0xe0,0x0, 0x1d,0x4d,0xef,0x20,0xcf,0xaa,0x3c,0x64,0xe0,0x9, 0xb7,0x93,0xd5,0x9f, -0xe0,0x1a,0x9f,0xc3,0xe0,0x0, 0x1d,0x4c,0xef,0x20,0xcf,0xaa,0xe0,0x1a,0xb7,0xc3, -0x15,0x83,0xe0,0x1a,0xb2,0xd3,0xe0,0x22,0x14,0xd6,0x3c,0x64,0xe0,0x1a,0xb2,0xe3, -0xd5,0x8e,0xe0,0x18,0xb2,0x73,0x12,0x81,0xe0,0x18,0x9f,0xf3,0xe0,0x0, 0x1d,0x4b, -0xe7,0xf, 0xcf,0x95,0xe0,0x18,0xb7,0xf3,0x3d,0xe5,0xe0,0x22,0x14,0xc9,0x3c,0x64, -0xd5,0x7e,0xe0,0x8, 0x9f,0xa3,0xe0,0x0, 0x1d,0x52,0xe7,0x8, 0xcf,0x95,0xe0,0x8, -0xb7,0xa3,0x3d,0xe5,0xe0,0x8, 0x9f,0xa3,0xe0,0x20,0x14,0xc2,0xe7,0x9, 0xcf,0x95, -0xe0,0x8, 0xb7,0xa3,0x3c,0x64,0xd5,0x6b,0xe0,0x7, 0x9f,0xf3,0xe0,0x0, 0x1d,0x4a, -0xe7,0xe, 0xcf,0x94,0xe0,0x7, 0xb7,0xf3,0x3d,0xe5,0xe0,0x20,0x14,0xbf,0x3c,0x64, -0xf0,0x40,0x3d,0x63,0x3b,0x65,0xd5,0x5b,0x39,0xe4,0xe0,0x4, 0x1f,0xdb,0x8f,0xf, -0x3f,0x74,0x2, 0x87,0xe0,0x0, 0x1f,0x30,0x17,0x80,0xaf,0x8e,0xe7,0xfb,0x0, 0xa4, -0xe0,0x1, 0x1f,0x1b,0xf0,0x0, 0x14,0x80,0x3f,0x14,0xc7,0x1, 0xf0,0x1, 0x1e,0x80, -0xe8,0x40,0x3b,0xe9,0x7f,0x1, 0xe2,0x0, 0xcb,0xa8,0x67,0x1, 0xf0,0x0, 0x8f,0xe, -0xe0,0x1, 0x2, 0xca,0xe2,0x0, 0xcb,0x8f,0xe0,0x1, 0x2, 0xa6,0xe8,0xe, 0x33,0x39, -0xe0,0x0, 0x1d,0x49,0x3d,0xe5,0xe0,0x20,0x14,0xc8,0xe8,0x9, 0xb7,0xa, 0x3c,0x63, -0xd5,0x2e,0xf0,0x40,0x3c,0x67,0xe0,0x2, 0x1e,0x31,0xe0,0x1, 0x1f,0x5, 0xe0,0xe, -0x8e,0x8c,0xe0,0xe, 0x8e,0x1c,0xe8,0xe, 0x3f,0x1e,0x3e,0x9c,0xf0,0x40,0x3f,0x7d, -0x8f,0x1e,0xe0,0x1, 0x3, 0x7e,0xe2,0x0, 0xcf,0xf, 0xe0,0x1, 0x2, 0xdc,0xe0,0xe, -0x33,0x3e,0xe0,0x0, 0x1d,0x44,0x3d,0xe5,0xe0,0x22,0x14,0xd5,0xe8,0x1a,0xb7,0x3a, -0x3c,0x63,0xd5,0xd, 0xe8,0x12,0x9f,0x6a,0xe0,0x22,0x14,0x98,0xe7,0x8, 0xcf,0x13, -0xe8,0x12,0xb7,0x6a,0x14,0x0, 0xe8,0x12,0x9f,0x6a,0xf0,0x0, 0xc4,0x81,0xe7,0x9, -0xcf,0x16,0xe8,0x12,0xb7,0x6a,0xe8,0x12,0x9f,0x6a,0xef,0x0, 0xcf,0x68,0xe8,0x12, -0xb7,0x6a,0xe8,0x12,0x9d,0x6a,0xd4,0x75,0xe0,0x3, 0x14,0x10,0xef,0xf9,0xdd,0xa3, -0xef,0xff,0xd7,0x77,0xe8,0x19,0xb1,0xea,0x15,0x86,0xe8,0x19,0xb1,0xfa,0xe8,0x40, -0x3c,0xec,0xe8,0x1a,0xb1,0x8a,0xe8,0x1a,0xb1,0x9a,0xe0,0x0, 0x1d,0x4f,0xe9,0x80, -0xb4,0x1d,0x14,0x0, 0xe8,0x1a,0xb1,0xaa,0xe8,0x1a,0xb1,0xba,0xd4,0xd8,0xe8,0x9, -0xb1,0x8a,0x15,0x86,0xe8,0x8, 0xb1,0xfa,0xe8,0x40,0x3c,0xeb,0xe8,0x8, 0x9f,0x6a, -0x14,0x0, 0xe7,0x20,0xcf,0x13,0xe8,0x8, 0xb7,0x6a,0xe8,0x8, 0xb1,0xda,0xe8,0x8, -0xb1,0xca,0xe8,0x8, 0x9f,0x3a,0xe7,0x20,0xcf,0x23,0xe8,0x8, 0xb7,0x3a,0xeb,0x85, -0x7f,0x20,0xe9,0xff,0xc7,0x7e,0xa5,0xe, 0xd4,0xba,0x3f,0x67,0xc7,0x1, 0x3b,0xee, -0xe2,0x1, 0xc3,0xff,0xe2,0x0, 0xcb,0xd3,0xe7,0xfe,0x1, 0xef,0xe0,0x4, 0x1f,0xdb, -0x3b,0xe2,0x8f,0xf, 0xc7,0x1, 0x39,0x7e,0x2, 0xf, 0x14,0x2, 0xda,0x89,0x3f,0x62, -0xc7,0x1, 0x39,0x6e,0xe0,0x1, 0x1f,0x1b,0xe0,0x3, 0x1f,0xc0,0x3b,0x9e,0x8f,0x7, -0xe2,0x1, 0xc1,0x7f,0xaf,0xf, 0x3f,0x64,0xc7,0x1, 0x3a,0x6e,0xe2,0x1, 0xc2,0x7f, -0xe7,0xfe,0x0, 0xbd,0xe2,0x0, 0xcb,0x9f,0x2, 0x8f,0xe8,0x40,0x3f,0x69,0xc7,0x70, -0xe0,0xe, 0x33,0x3e,0x3d,0xe5,0xe0,0x0, 0x1d,0x48,0xe0,0x20,0x14,0xc7,0xe8,0x8, -0xb7,0x7a,0xe7,0xfe,0x0, 0xd6,0xe8,0x8, 0x9e,0xea,0xe8,0xe, 0x33,0x39,0xe7,0x20, -0xce,0x9e,0x3d,0xe5,0xe0,0x0, 0x1d,0x47,0xe0,0x20,0x14,0xc6,0xe8,0x8, 0xb6,0xea, -0xe7,0xfe,0x0, 0xc7,0x3f,0x67,0xc7,0x57,0xf0,0x40,0x3c,0x6e,0xf2,0x1, 0xc4,0x7f, -0xf2,0x0, 0xcc,0xf, 0x2, 0x8e,0xe8,0xe, 0x33,0x38,0xe0,0x0, 0x1d,0x46,0x3d,0xe5, -0xe0,0x20,0x14,0xc5,0xe8,0x8, 0xb7,0x5a,0x3c,0x63,0xd4,0x61,0xe7,0xfe,0x0, 0xb5, -0xf2,0x0, 0xcc,0x1f,0x2, 0x8e,0xe8,0x40,0x3f,0x68,0xc7,0x70,0xe0,0xe, 0x33,0x3e, -0x3d,0xe5,0xe0,0x0, 0x1d,0x45,0xe0,0x20,0x14,0xc4,0xe8,0x8, 0xb7,0x4a,0x0, 0xed, -0xe8,0x8, 0x9e,0xba,0xe8,0xe, 0x33,0x38,0xeb,0x85,0x7f,0xa0,0xe7,0x20,0xce,0xae, -0xe9,0xff,0xc7,0xfe,0x3d,0xe5,0xe8,0x40,0x3c,0xeb,0xa5,0xf, 0xe8,0x8, 0xb6,0xba, -0x0, 0xdc,0xe2,0x0, 0xcf,0x1f,0x2, 0x8d,0xc7,0x70,0xe0,0xe, 0x33,0x3e,0x3d,0xe5, -0xe0,0x0, 0x1d,0x43,0xe0,0x22,0x14,0xd4,0xe8,0x1a,0xb7,0x2a,0xe7,0xfe,0x0, 0xa2, -0xe8,0x1a,0x9e,0x9a,0xe0,0xe, 0x33,0x3e,0xe7,0x20,0xce,0x9e,0x3d,0xe5,0xe0,0x0, -0x1d,0x42,0xe0,0x22,0x14,0xd3,0xe8,0x1a,0xb6,0x9a,0xe7,0xfe,0x0, 0x93,0xe2,0x0, -0xcf,0xf, 0x2, 0x8c,0xe0,0xe, 0x33,0x3e,0x3d,0xe5,0xe0,0x0, 0x1d,0x41,0xe0,0x22, -0x14,0xd2,0xe8,0x1a,0xb7,0xa, 0xe7,0xfe,0x0, 0x85,0xe2,0x0, 0xcf,0x1f,0x2, 0x8d, -0xc7,0x70,0xe0,0xe, 0x33,0x3e,0x3d,0xe5,0xe0,0x0, 0x1d,0x40,0xe0,0x22,0x14,0xd1, -0xe8,0x19,0xb7,0x7a,0xe7,0xfd,0x0, 0xf6,0xe8,0x19,0x9e,0xea,0xe0,0xe, 0x33,0x3e, -0xe7,0x20,0xce,0xae,0x3d,0xe5,0xe0,0x0, 0x1d,0x4f,0xe8,0x40,0x3c,0xec,0xe8,0x19, -0xb6,0xea,0xe7,0xfd,0x0, 0xe7,0xc0,0x4, 0xf8,0x0, 0xf, 0x28,0xb, 0xe1,0x8, 0xb5, -0xe0,0x0, 0x19,0x70,0x12,0x0, 0x9f,0x82,0xe0,0x3, 0x19,0xae,0xe7,0x7, 0xcf,0x94, -0xb7,0x82,0x3a,0xe8,0x9f,0x83,0x15,0x1, 0xe7,0x7, 0xcf,0x94,0x3c,0xe2,0xe0,0x1a, -0x14,0x2, 0xb7,0x83,0xd4,0x38,0x9f,0x82,0x17,0x1, 0xe7,0x3, 0xcf,0x9e,0xb7,0x82, -0x9f,0x82,0x2a,0x90,0xe7,0x6, 0xcf,0x9e,0xb7,0x82,0x15,0x81,0xe0,0x0, 0x1d,0x70, -0xe0,0x1a,0x14,0x82,0x14,0x0, 0xd3,0xcb,0xe0,0x4, 0x1f,0xcc,0x8f,0x8f,0x2f,0x86, -0xa, 0xe1,0xe7,0x6, 0xcf,0x94,0xb7,0x82,0x0, 0xf1,0x9f,0x83,0x15,0x81,0xe7,0x3, -0xcf,0x9b,0xb7,0x83,0x17,0x0, 0x9f,0x83,0xe0,0x3, 0x1d,0x2e,0xe7,0x6, 0xcf,0x9e, -0xe0,0x1a,0x14,0x82,0x14,0x20,0xb7,0x83,0xa, 0xa1,0xe0,0x7, 0x0, 0xb1,0x8, 0xb4, -0x24,0x13,0xe0,0x0, 0x1f,0xf0,0x11,0x1, 0x9f,0xf, 0x3d,0x6f,0xe7,0x7, 0xcf,0x12, -0xb7,0xf, 0x3d,0xe2,0xe0,0x1a,0x14,0x82,0x14,0x0, 0xd3,0xa1,0xe0,0x4, 0x1f,0xcc, -0x8f,0x8f,0x2f,0xaa,0xa, 0x61,0xe0,0x0, 0x19,0x70,0xe0,0x3, 0x1a,0x2e,0x9f,0x82, -0x39,0xe8,0xe7,0x7, 0xcf,0x98,0xb7,0x82,0x3c,0xe2,0x9f,0x84,0x15,0x1, 0xe7,0x7, -0xcf,0x93,0xe0,0x1a,0x14,0x2, 0xb7,0x84,0xd3,0xe6,0x9f,0x82,0x17,0x1, 0xe7,0x3, -0xcf,0x93,0xb7,0x82,0x3c,0xe2,0x9f,0x82,0x3d,0x6e,0xe7,0x6, 0xcf,0x93,0xb7,0x82, -0xe0,0x1a,0x14,0x2, 0x9f,0x82,0xe7,0x4, 0xcf,0x9e,0xb7,0x82,0x99,0x2, 0xb1,0x4, -0xa, 0x21,0xe0,0x7, 0x0, 0xd1,0xe0,0x3, 0x1f,0xae,0x3d,0xe2,0x9f,0xf, 0x3d,0x6f, -0xe7,0x7, 0xcf,0x12,0xe0,0x1a,0x14,0x82,0x14,0x20,0xb7,0xf, 0xa, 0x21,0xe0,0x6, -0x0, 0xe7,0xe0,0x0, 0x1c,0xf1,0xe7,0x54,0x17,0xd5,0xe0,0x3, 0x1f,0x32,0xb7,0x89, -0x15,0x1, 0xe0,0x1a,0x14,0x0, 0xb7,0x8e,0xe0,0x7, 0x0, 0xb6,0xe0,0x0, 0x1e,0xf5, -0x17,0x81,0xe0,0xa, 0x9e,0x6d,0xe0,0x3, 0x1f,0x31,0xe7,0x8, 0xce,0x1f,0xe0,0xa, -0xb6,0x6d,0x3d,0x6f,0xe0,0xa, 0x9e,0xee,0xe0,0x0, 0x1c,0xbf,0xe7,0x8, 0xce,0x9f, -0xe0,0x20,0x14,0x56,0xe0,0xa, 0xb6,0xee,0xe0,0x7, 0x0, 0x9e,0xe4,0x0, 0xc5,0x64, -0xe1,0x28,0x3d,0x38,0xe6,0xd0,0xcc,0x8, 0xe0,0x28,0x3c,0x39,0x3c,0x39,0xe6,0xd0, -0xcc,0x18,0x38,0x82,0xe6,0xd1,0xcc,0x8, 0xe0,0x28,0x3c,0x39,0x38,0x82,0x8, 0xb1, -0xe4,0x0, 0xc5,0xe4,0x35,0x21,0xe1,0x2b,0x3d,0xba,0x34,0x2c,0x3d,0xb9,0xe1,0x28, -0x3c,0x3b,0xef,0xf3,0xd2,0xc2,0xea,0x81,0xcd,0x10,0x15,0x80,0xef,0xf3,0xd0,0x9c, -0xef,0xf3,0xd2,0xda,0x8, 0xe1,0x8, 0xb1,0xef,0xf3,0xd2,0x89,0x3d,0x68,0x3d,0xe9, -0xea,0x82,0xcc,0x50,0x14,0x80,0xef,0xf3,0xd1,0xad,0xef,0xf3,0xd2,0xcd,0x8, 0xe1, -0xe0,0x0, 0x25,0x50,0x8, 0xb7,0xf8,0x0, 0xc, 0x38,0xc0,0x78,0x3a,0x6a,0xc2,0x7f, -0xe6,0xd8,0xca,0x54,0xf0,0x40,0x3c,0x64,0x3a,0xe9,0xe6,0xfb,0xc9,0xb8,0xf0,0x64, -0xc4,0x26,0xe0,0x64,0x11,0x1e,0x13,0x2, 0x13,0x80,0x3c,0xe2,0x3d,0xe6,0xe2,0x0, -0x7d,0x4, 0x3c,0x67,0xd2,0xaa,0x67,0x81,0x3c,0x62,0xe7,0x28,0xcf,0x85,0x7f,0x81, -0x3d,0x66,0x67,0x81,0xe2,0x0, 0x7c,0x84,0xe7,0x0, 0xcf,0xd3,0xc1,0x8, 0xe3,0xff, -0xc1,0x7f,0x7f,0x81,0xd3,0x40,0xe8,0x40,0x39,0x78,0x1, 0xe8,0xe0,0x68,0xc2,0x5e, -0xe0,0x68,0x11,0x56,0x13,0x2, 0x13,0x80,0x3c,0xe2,0x3d,0xe6,0xe2,0x0, 0x7d,0x8, -0x3c,0x67,0xd2,0x8b,0x67,0x82,0x3c,0x62,0xe7,0x28,0xcf,0x85,0x7f,0x82,0x3d,0x66, -0x67,0x82,0xe2,0x0, 0x7c,0x88,0xe7,0x0, 0xcf,0xd3,0xc1,0x8, 0xe3,0xff,0xc1,0x7f, -0x7f,0x82,0xd3,0x21,0x3a,0x72,0x1, 0xe9,0xc0,0x8, 0xf8,0x0, 0xc, 0x28,0xb, 0xe1, -0x38,0x82,0xe0,0x0, 0x1f,0x75,0x3e,0x69,0xe0,0x1c,0xb4,0x1e,0x3e,0xea,0xe0,0x1c, -0xb6,0x2e,0x15,0x4, 0xe0,0x3, 0x1f,0xb1,0xe0,0x1c,0xb6,0xce,0xe0,0x1c,0xb4,0x1f, -0xe0,0x22,0x14,0x63,0xe0,0x0, 0x1c,0xbe,0xe0,0x1c,0xb6,0x2f,0xe0,0x1c,0xb6,0xcf, -0xe0,0x6, 0x0, 0x82,0x8, 0xb6,0xe0,0x0, 0x1f,0xf5,0xe0,0xf, 0x9f,0xef,0xe6,0xfe, -0xcf,0xff,0x39,0x6f,0x2f,0x83,0x3c,0x62,0xb, 0x61,0x39,0xe8,0xe0,0x4, 0x1a,0xcc, -0xe0,0x22,0x14,0x80,0x14,0x0, 0xd1,0xe1,0x8f,0x85,0x11,0x0, 0x3a,0x68,0x3b,0x68, -0x2f,0xa3,0xe6,0xf4,0xca,0x74,0x22,0x13,0x3c,0xe6,0xe3,0xef,0xc4,0xff,0xe0,0x22, -0x14,0x0, 0xd2,0xcf,0x11,0x1, 0x21,0xe8,0xe0,0x22,0x14,0xec,0x14,0x0, 0xd1,0xcd, -0x8f,0x85,0x3a,0x68,0x2f,0x88,0xb2,0x3, 0x3c,0x62,0xb, 0x61,0xe6,0xf4,0xc9,0x72, -0x29,0x6c,0x0, 0xf2,0xe0,0x22,0x14,0xec,0x14,0x20,0xd1,0xbf,0x3a,0x18,0xe3,0xff, -0xc2,0x7f,0xb2,0x3, 0x0, 0xf2,0xe0,0x22,0x14,0x80,0x14,0x20,0xd1,0xb6,0x39,0x68, -0x0, 0xd9,0xe0,0x0, 0x1f,0x75,0x3e,0x69,0xe0,0x1b,0xb4,0x2e,0x3e,0xea,0xe0,0x1b, -0xb6,0x3e,0x15,0x4, 0xe0,0x3, 0x1f,0xb1,0xe0,0x1b,0xb6,0xde,0xe0,0x1b,0xb4,0x2f, -0xe0,0x22,0x14,0x5c,0xe0,0x0, 0x1c,0xbd,0xe0,0x1b,0xb6,0x3f,0xe0,0x1b,0xb6,0xdf, -0xe0,0x5, 0x0, 0xaa,0x8, 0xb6,0xe0,0x0, 0x1f,0xf5,0xe0,0xf, 0x9f,0xef,0xe6,0xfc, -0xcf,0xff,0x39,0x6f,0x2f,0x83,0x3c,0x62,0xb, 0x61,0x39,0xe8,0xe0,0x4, 0x1a,0xcc, -0xe0,0x22,0x14,0x80,0x14,0x0, 0xd1,0x89,0x8f,0x85,0x11,0x0, 0x3a,0x68,0x3b,0x68, -0x2f,0xa3,0xe6,0xf2,0xca,0x74,0x22,0x13,0x3c,0xe6,0xe3,0xbf,0xc4,0xff,0xe0,0x22, -0x14,0x0, 0xd2,0x77,0x11,0x1, 0x21,0xe8,0xe0,0x22,0x14,0xeb,0x14,0x0, 0xd1,0x75, -0x8f,0x85,0x3a,0x68,0x2f,0x88,0xb2,0x3, 0x3c,0x62,0xb, 0x61,0xe6,0xf2,0xc9,0x72, -0x29,0x6c,0x0, 0xf2,0xe0,0x22,0x14,0xeb,0x14,0x20,0xd1,0x67,0x3a,0x18,0xe3,0xff, -0xc2,0x7f,0xb2,0x3, 0x0, 0xf2,0xe0,0x22,0x14,0x80,0x14,0x20,0xd1,0x5e,0x39,0x68, -0x0, 0xd9,0xe0,0x0, 0x1f,0x75,0x3e,0x69,0xe0,0x11,0xb4,0xe, 0x3e,0xea,0xe0,0x11, -0xb6,0x1e,0x15,0x4, 0xe0,0x3, 0x1f,0xb1,0xe0,0x11,0xb6,0xbe,0xe0,0x11,0xb4,0xf, -0xe0,0x22,0x14,0xa, 0xe0,0x0, 0x1c,0xbc,0xe0,0x11,0xb6,0x1f,0xe0,0x11,0xb6,0xbf, -0xe0,0x4, 0x0, 0xd2,0xe0,0x61,0x3c,0x2, 0xe7,0xbf,0x17,0xe7,0x3f,0xd8,0xe0,0x61, -0x3f,0x92,0x38,0x82,0xe0,0x61,0x3c,0x12,0x38,0x82,0x38,0x82,0xe0,0x0, 0x1f,0x2f, -0x17,0x81,0xaf,0x8e,0xe0,0x3, 0x1f,0x38,0xaf,0x8e,0x24,0x8, 0xe0,0x0, 0x1f,0x2a, -0xaf,0x8e,0xe0,0x1, 0x1f,0x87,0xac,0x8f,0x38,0x82,0x8, 0xb5,0xe0,0x0, 0x1f,0xbb, -0xe0,0x3, 0x1f,0x2d,0x9e,0x8f,0x39,0x68,0xe7,0xd, 0xce,0xb8,0xb6,0x8f,0x39,0xe9, -0x9e,0x8e,0xe0,0x0, 0x1a,0x75,0xe7,0xd, 0xce,0xb2,0xb6,0x8e,0xe0,0x26,0x14,0x0, -0x9c,0x8f,0xe0,0x3, 0x1a,0xb1,0xd2,0xd, 0xe0,0x5, 0x9f,0xd4,0xe3,0xff,0xc7,0xe0, -0xe0,0x5, 0xb7,0xd4,0xe0,0x5, 0x9f,0xd4,0xe0,0x5, 0xb7,0xd5,0xe0,0x5, 0x9f,0xd4, -0x3f,0xc3,0xe0,0x5, 0xb7,0xd4,0xe0,0x1, 0x1f,0xa0,0x87,0x8f,0xe2,0x0, 0xcf,0x80, -0x4, 0x10,0xe0,0x4, 0x1f,0xcc,0x8f,0x8f,0x2f,0xa1,0xe2,0x0, 0xc9,0x9e,0x1, 0x25, -0xe0,0x5, 0x9d,0x54,0xe0,0x20,0x14,0xad,0x14,0x0, 0xa, 0xa1,0xe0,0x2, 0x0, 0xa2, -0xe0,0x3, 0x1f,0xa9,0x9f,0x8f,0xe6,0xfb,0xcf,0xef,0xe2,0x0, 0xcf,0x81,0xe0,0x5, -0x9f,0xd4,0x1, 0x1a,0xe7,0x4, 0xcf,0x92,0xe0,0x5, 0xb7,0xd4,0xe0,0x5, 0x9f,0xd4, -0xe7,0x3, 0xcf,0x92,0xe0,0x5, 0xb7,0xd4,0x0, 0xdd,0xe0,0x5, 0x9d,0x55,0xe0,0x20, -0x14,0xad,0x14,0x20,0xd1,0x6, 0x0, 0xda,0xe0,0x0, 0x1c,0xba,0x15,0x3, 0xe0,0x20, -0x14,0x65,0xd1,0xd9,0x0, 0xd6,0xe7,0x1, 0xcf,0x92,0xe0,0x5, 0xb7,0xd4,0xe0,0x5, -0x9f,0xd4,0xe7,0x2, 0xcf,0x92,0xe0,0x5, 0xb7,0xd4,0x0, 0xc4,0x8, 0xb2,0xe0,0x0, -0x1f,0xbb,0x2c,0x22,0x9e,0x8f,0x16,0x3, 0xe0,0x3, 0x1f,0x2d,0xe7,0xd, 0xce,0xbc, -0xb6,0x8f,0x9e,0x8e,0xe0,0x0, 0x19,0x39,0xe7,0xd, 0xce,0xbc,0xb6,0x8e,0x16,0x81, -0x9f,0x2, 0xe3,0x3f,0xc7,0x7b,0xb7,0x2, 0x9f,0x2, 0xe7,0xe, 0xcf,0x1d,0xb7,0x2, -0xe0,0x26,0x14,0x0, 0x9c,0x8f,0xd1,0x9d,0x9d,0x2, 0xe0,0x26,0x14,0x93,0x14,0x0, -0x9, 0x21,0xe0,0x1, 0x0, 0xcf,0x9e,0x8f,0x16,0x4, 0xe0,0x3, 0x1f,0x2d,0xe7,0xd, -0xce,0xbc,0xb6,0x8f,0x9e,0x8e,0xe0,0x0, 0x19,0x39,0xe7,0xd, 0xce,0xbc,0xb6,0x8e, -0x16,0x81,0x9f,0x2, 0xe3,0x3f,0xc7,0x7b,0xb7,0x2, 0x9f,0x2, 0xe7,0xd, 0xcf,0x1d, -0xb7,0x2, 0x0, 0xdf,0x8, 0xb3,0xe0,0x0, 0x19,0x2f,0x89,0x82,0x8f,0x82,0x27,0x93, -0xe0,0x0, 0x1f,0xaa,0x17,0x0, 0xaf,0xf, 0xe0,0x0, 0x1f,0xbb,0x9f,0x8f,0xe6,0xfa, -0xcf,0xff,0x27,0x8b,0x17,0x80,0xe0,0x1, 0x1f,0x3, 0xaf,0x82,0xaf,0x8e,0xe0,0x3, -0x1f,0x38,0xaf,0x8e,0x3c,0x63,0x9, 0xe1,0x14,0x1, 0xdf,0xa9,0x0, 0xf4,0x0, 0x0, -0x8, 0xb1,0xef,0xff,0xdf,0x21,0xe0,0x5, 0x1f,0xd5,0x16,0x0, 0x9e,0xff,0xe7,0x1a, -0x15,0x80,0xe7,0x0, 0xce,0x9c,0xb6,0xff,0x3f,0x6f,0xb5,0x9f,0xe0,0x1, 0x9f,0x9e, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0xe7,0x54,0x16,0xd5,0xb6,0x9e,0xe0,0x5, 0x1f,0x55, -0xe0,0x1, 0x9f,0x9e,0xe6,0xff,0xcf,0xff,0x27,0xfc,0xea,0x2c,0x7e,0x8b,0x8e,0xd, -0x15,0x81,0x3f,0xec,0xcf,0x81,0xaf,0x8d,0x9f,0xfe,0xe7,0x0, 0xcf,0x9b,0xb7,0xfe, -0xe0,0x4, 0x1f,0xcc,0x8f,0x8f,0x27,0xa3,0xe0,0x5, 0x1f,0xd6,0x15,0x0, 0x9d,0xff, -0x3f,0x6f,0xe7,0x0, 0xcd,0x9a,0xb5,0xff,0xe7,0x1a,0x15,0x80,0xe0,0x0, 0xb5,0x9f, -0xe0,0x1, 0x9f,0x9e,0xe6,0xff,0xcf,0xff,0x27,0xfc,0xe7,0x54,0x17,0xd5,0xb7,0x9e, -0xe0,0x5, 0x1f,0x56,0xe0,0x1, 0x9f,0x9e,0xe6,0xff,0xcf,0xff,0x27,0xfc,0xce,0x3, -0xae,0xd, 0x16,0x81,0x9f,0xfe,0xe7,0x0, 0xcf,0x9d,0xb7,0xfe,0x8, 0xa1,0xe7,0xfd, -0x0, 0xdb,0xea,0x2c,0x7f,0x8b,0x8f,0xf, 0x27,0xe, 0x24,0x7, 0xe2,0x1, 0xc7,0x7d, -0x14,0x3, 0xaf,0xf, 0xe7,0x32,0x0, 0xef,0xe2,0x1, 0xc7,0x7e,0x14,0x3, 0xaf,0xf, -0xe7,0x32,0x0, 0xe9,0x38,0x82,0x0, 0x0, 0x8, 0xb5,0xe0,0x5, 0x19,0x55,0x39,0xe9, -0x39,0x18,0x3a,0x68,0xde,0xb8,0x9f,0xf2,0x17,0x0, 0xe7,0x0, 0xcf,0x9e,0x3a,0xe8, -0xe6,0xd2,0xc9,0xa3,0x3c,0x64,0xb7,0xf2,0xdf,0xdd,0xb1,0x92,0xe0,0x1, 0x9f,0x92, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0x17,0x80,0xe0,0x0, 0xb7,0x92,0xe0,0x1, 0x9f,0x92, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0x99,0xb2,0x9f,0xf2,0x17,0x1, 0xe7,0x0, 0xcf,0x9e, -0xb7,0xf2,0x3c,0x65,0xde,0xa0,0xe0,0x0, 0x1f,0xaf,0x8f,0x8f,0x27,0x85,0xe0,0x1, -0x1f,0x83,0x8f,0x8f,0x2f,0x83,0x3c,0x63,0xa, 0xe1,0xdf,0x6b,0x3c,0x63,0xa, 0xe1, -0x8, 0xb6,0xe0,0x5, 0x19,0x55,0x39,0xe9,0x39,0x18,0x3a,0x68,0x3b,0x6a,0xde,0x83, -0x9f,0xf2,0x17,0x0, 0xe7,0x0, 0xcf,0x9e,0xe6,0xd2,0xc9,0xa3,0x3a,0xe8,0xe1,0x0, -0xc9,0x80,0x3c,0x64,0xb7,0xf2,0xdf,0xa6,0xe0,0x0, 0xb1,0x92,0xe0,0x1, 0x9f,0x92, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0xb3,0x12,0xe0,0x1, 0x9f,0x92,0xe6,0xff,0xcf,0xff, -0x27,0xfc,0x9f,0xf2,0x17,0x1, 0xe7,0x0, 0xcf,0x9e,0xb7,0xf2,0x3c,0x65,0xde,0x6b, -0xe0,0x0, 0x1f,0xaf,0x8f,0x8f,0x27,0x85,0xe0,0x1, 0x1f,0x83,0x8f,0x8f,0x2f,0x82, -0xb, 0x61,0xb, 0x21,0xe7,0xfe,0x0, 0xb6,0x8, 0xb7,0xe0,0x5, 0x19,0x55,0x3a,0xe9, -0x39,0x18,0x3a,0x6b,0x3b,0x68,0x39,0xea,0xde,0x4e,0x9f,0xf2,0x17,0x0, 0xe7,0x0, -0xcf,0x9e,0x3b,0xe8,0xb7,0xf2,0x3c,0x66,0xdf,0x75,0xe2,0x0, 0xca,0x1, 0xe6,0xd2, -0xca,0xa5,0x5, 0xaf,0xe0,0x80,0xc2,0x80,0xe0,0x0, 0xb2,0x92,0xe0,0x1, 0x9f,0x92, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0x22,0x15,0x3d,0x64,0xc5,0x7f,0xe6,0xb0,0xcd,0x7a, -0x3f,0x63,0xc7,0x7e,0x3d,0x13,0xe0,0x0, 0x16,0x80,0xb6,0x92,0xe0,0x1, 0x9f,0x92, -0xe6,0xff,0xcf,0xff,0x27,0xfc,0x9f,0xb2,0xe0,0x80,0xb7,0x9e,0x3f,0x7a,0x1, 0xf6, -0x9f,0xf2,0x17,0x1, 0xe7,0x0, 0xcf,0x9e,0xb7,0xf2,0x3c,0x67,0xde,0x24,0xe0,0x0, -0x1f,0xaf,0x8f,0x8f,0x27,0x85,0xe0,0x1, 0x1f,0x83,0x8f,0x8f,0x2f,0x84,0xb, 0xe1, -0xb2,0x92,0x0, 0xd5,0xb, 0xa1,0xe7,0xfd,0x0, 0xed,0x0, 0x0, 0x8, 0xb7,0xe0,0x5, -0x19,0x55,0x3a,0xe9,0x39,0x18,0x3a,0x6b,0x3b,0x68,0x39,0xea,0xde,0x4, 0x9f,0xf2, -0x17,0x0, 0xe7,0x0, 0xcf,0x9e,0x3b,0xe8,0xb7,0xf2,0x3c,0x66,0xdf,0x2b,0xe2,0x0, -0xca,0x1, 0xe6,0xd2,0xca,0xa5,0x5, 0xae,0xe1,0x80,0xc2,0x80,0xe0,0x0, 0xb2,0x92, -0xe0,0x1, 0x9f,0x92,0xe6,0xff,0xcf,0xff,0x27,0xfc,0x22,0x14,0x3d,0x64,0xc5,0x7f, -0xe6,0xb0,0xcd,0x7a,0x3f,0x63,0xc7,0x7e,0xe0,0xa, 0x3d,0x13,0xe0,0x80,0x9f,0x9e, -0xe0,0x0, 0xb7,0x92,0xe0,0x1, 0x9f,0x92,0xe6,0xff,0xcf,0xff,0x27,0xfc,0x3f,0x7a, -0x1, 0xf6,0x9f,0xf2,0x17,0x1, 0xe7,0x0, 0xcf,0x9e,0xb7,0xf2,0x3c,0x67,0xdd,0xdb, -0xe0,0x0, 0x1f,0xaf,0x8f,0x8f,0x27,0x85,0xe0,0x1, 0x1f,0x83,0x8f,0x8f,0x2f,0x86, -0xb, 0xe1,0xe1,0x0, 0xca,0x80,0xb2,0x92,0x0, 0xd4,0xb, 0xa1,0xe7,0xfd,0x0, 0xa2, -0x8, 0xb3,0x3d,0x69,0x39,0x68,0x39,0xe9,0x3c,0xe8,0x14,0x0, 0xdf,0x32,0xe0,0x4, -0x1f,0xcc,0x8f,0x8f,0x2f,0x82,0x9, 0xe1,0x3d,0x63,0x3c,0xe2,0x14,0x20,0x9, 0xa1, -0xe7,0xfe,0x0, 0xa8,0x8, 0xb4,0x3d,0xea,0x39,0x68,0x39,0xe9,0x3a,0x6a,0x3d,0x69, -0x3c,0xe8,0x14,0x0, 0xdf,0x9c,0xe0,0x4, 0x1f,0xcc,0x8f,0x8f,0x2f,0x82,0xa, 0x61, -0x3d,0xe4,0x3d,0x63,0x3c,0xe2,0x14,0x20,0xa, 0x21,0xe7,0xff,0x0, 0x91,0xe0,0x3, -0x1f,0x8d,0x16,0x81,0xa7,0xf, 0xe0,0x4, 0x1f,0xbd,0x9e,0x5e,0xa7,0x8f,0xe7,0xc, -0xce,0x1d,0xb6,0x5e,0xe6,0xf9,0xcc,0x18,0xe0,0x4, 0xbe,0xff,0xe6,0xf9,0xcc,0x99, -0xe0,0x8, 0xb6,0xbf,0xe0,0x1, 0x9e,0x9f,0xe7,0x28,0xce,0x88,0xe0,0x1, 0xb6,0x9f, -0xe0,0x1, 0x9e,0x9f,0xe7,0x20,0xce,0x89,0xe0,0x1, 0xb6,0x9f,0x16,0x80,0xe0,0x9, -0xb5,0x3f,0x9f,0xde,0xe7,0xc, 0xcf,0x9d,0xb7,0xde,0x38,0x82,0xe0,0x3, 0x1f,0x8d, -0x16,0x81,0xa7,0xf, 0xe0,0x4, 0x1f,0xbd,0xf0,0x0, 0x9b,0xde,0xa7,0x8f,0xf7,0xc, -0xcb,0x9d,0xf0,0x0, 0xb3,0xde,0xe6,0xd9,0xcc,0x18,0xe0,0x5, 0xbe,0x8f,0xe6,0xf9, -0xcc,0x99,0xe0,0xf, 0xb6,0x9f,0x3c,0x98,0x35,0x28,0xe0,0x6, 0xbc,0xef,0x3d,0x9a, -0xe0,0x6, 0xbd,0xff,0x16,0x80,0xe0,0x7, 0xbc,0x8f,0xe0,0x9, 0xb6,0x5f,0x9f,0xde, -0xe7,0xc, 0xcf,0x9d,0xb7,0xde,0x38,0x82,0xe0,0x4, 0x1e,0x53,0xe0,0x4, 0x1f,0x3d, -0x8f,0x8c,0xa7,0xe, 0x27,0xa5,0x17,0x80,0xe0,0x1, 0xbf,0xee,0xe0,0x1, 0xbc,0x7e, -0x17,0x81,0x3e,0xef,0xe0,0x4, 0xb7,0x9e,0x0, 0x84,0xe0,0x8, 0x9f,0xde,0x2f,0x95, -0xe0,0x3, 0x9f,0x9e,0xe6,0xff,0xcf,0xff,0x27,0xf9,0x17,0x80,0xaf,0x8c,0x16,0x81, -0xe0,0x3, 0x9f,0xbe,0xe0,0x3, 0x9f,0xbe,0xe7,0x0, 0xcf,0x9d,0xe0,0x3, 0xb7,0xbe, -0x17,0x80,0xe0,0x4, 0xb7,0x9e,0x38,0x82,0xe0,0x9, 0xb6,0x9e,0x0, 0xea,0xe0,0x1, -0xbc,0x6e,0xe0,0x1, 0xbf,0xfe,0x0, 0xdd,0x8, 0xb4,0xe0,0x3, 0x1f,0x8d,0xe0,0x4, -0x1f,0x3d,0xa2,0xf, 0xa1,0xe, 0x9f,0xd4,0x17,0x1, 0xe7,0xc, 0xcf,0x9e,0xb7,0xd4, -0x39,0xe8,0x9f,0xf8,0x9f,0x48,0xb7,0xb2,0xe0,0x1, 0x9f,0x98,0xb7,0xd2,0xe0,0x1, -0x9f,0xb8,0xb7,0xf2,0x8f,0x88,0x8e,0x98,0x37,0xa8,0x3f,0x9d,0xbf,0xd2,0xe0,0x1, -0xbf,0x12,0x8f,0x28,0x9f,0x92,0xe7,0x0, 0xcf,0xde,0xb7,0x92,0xe0,0x1, 0x9c,0x48, -0x24,0xc, 0xe2,0x0, 0xcc,0x2, 0x5, 0x94,0xe2,0x0, 0xcc,0x4, 0x1, 0x86,0x8f,0x33, -0x9f,0x92,0xe7,0xb, 0xcf,0x9e,0xb7,0x92,0xdf,0xa0,0xe0,0x4, 0x9f,0xd2,0x17,0x0, -0xe0,0x1, 0xb7,0xe3,0x9f,0xd4,0xe7,0xc, 0xcf,0x9e,0xb7,0xd4,0xa, 0x61,0xa7,0x82, -0x17,0x5f,0x3f,0xde,0xbf,0x82,0x8f,0xb3,0xa7,0x2, 0x37,0xa5,0x3f,0xce,0xbf,0x82, -0x0, 0xec,0x8, 0xb2,0xe0,0x3, 0x1f,0x8d,0x16,0x81,0xa1,0xf, 0xe0,0x4, 0x1f,0xbd, -0x9f,0x52,0xa7,0x8f,0xe7,0xc, 0xcf,0x1d,0xb7,0x52,0x3f,0x68,0x9e,0xf8,0x9e,0x48, -0xb6,0xbf,0x14,0x10,0xe0,0x1, 0x9e,0xbe,0xb6,0xff,0x8e,0x8e,0x8d,0x9e,0x36,0xa8, -0x3e,0x9b,0xbe,0xdf,0xe0,0x1, 0xbe,0x1f,0x8e,0xae,0x9f,0x1f,0xe7,0x0, 0xcf,0x5d, -0xb7,0x1f,0xe0,0x1, 0xb4,0xdf,0xdf,0x69,0x9f,0xd2,0x17,0x0, 0xe7,0xc, 0xcf,0x9e, -0xb7,0xd2,0x9, 0x61,0x8, 0xb5,0xe0,0x3, 0x1f,0x8d,0xe0,0x4, 0x1f,0x3d,0xa2,0xf, -0xa1,0xe, 0x9f,0xd4,0x17,0x1, 0xe7,0xc, 0xcf,0x9e,0xb7,0xd4,0x3f,0xe8,0x9f,0x38, -0x12,0x80,0xb7,0x32,0xe0,0x2, 0x14,0x0, 0x9f,0x7f,0x39,0xe9,0xb7,0x52,0x9f,0x5f, -0xb7,0x72,0x8f,0x1f,0x8e,0x8f,0x37,0x28,0x3f,0x1d,0xbf,0x52,0x8f,0x2f,0xe0,0x2, -0xb7,0x12,0xe0,0x1, 0x9f,0xf, 0xe0,0x1, 0xba,0x92,0xe0,0x1, 0xb7,0x52,0xe0,0x1, -0x9f,0x1f,0xe0,0x1, 0xb7,0x72,0xe0,0x1, 0x9f,0x2f,0xe0,0x2, 0xb7,0x52,0xe0,0x1, -0x9f,0x3f,0xe0,0x2, 0xb7,0x72,0x8f,0x3f,0x9f,0x92,0xe7,0x7, 0xcf,0x9e,0xb7,0x92, -0xdf,0x2c,0xe0,0x5, 0x9f,0x92,0x37,0xc6,0xaf,0x83,0xe0,0x5, 0x9f,0x92,0xe6,0xfa, -0xcf,0xaf,0xaf,0x93,0xe0,0x5, 0x9d,0x32,0xe0,0x5, 0x9d,0xd2,0xe0,0x6, 0x9e,0x32, -0xe0,0x6, 0x9e,0xd2,0xe0,0x5, 0x9f,0x72,0xe0,0x6, 0x9f,0x92,0xb5,0x13,0xb5,0xa3, -0xb6,0x33,0xb6,0xc3,0xb7,0x53,0xb7,0xe3,0x9f,0xd4,0xe7,0xc, 0xcf,0x95,0xb7,0xd4, -0xa, 0xe1,0x8, 0xb3,0xe0,0x3, 0x1f,0x8d,0x16,0x81,0xa1,0xf, 0xe0,0x4, 0x1f,0xbd, -0x99,0xd2,0x9f,0x52,0xa7,0x8f,0xe7,0xc, 0xcf,0x1d,0xb7,0x52,0x3e,0xe8,0x9f,0x3d, -0xe0,0x0, 0x14,0x40,0xb7,0x3f,0xe6,0xf3,0xc9,0xf3,0x9f,0x5d,0xb7,0x5f,0x9f,0x7d, -0xb7,0x7f,0x8f,0xd, 0x8e,0x9d,0x37,0x28,0x3f,0x1d,0xbf,0x5f,0x17,0x0, 0xe0,0x1, -0xbf,0x1f,0xde,0xeb,0x9f,0xd2,0xe7,0xc, 0xcf,0x93,0xb7,0xd2,0x9, 0xe1,0x0, 0x0, -0x8, 0xb6,0x8f,0x88,0x8a,0x98,0x3a,0x68,0xa4,0x38,0xe0,0x1, 0x15,0x72,0x34,0x21, -0xe0,0x1, 0x14,0xff,0xe8,0x0, 0xc4,0x4, 0xe1,0x25,0x3a,0xef,0xef,0xf2,0xdf,0xfc, -0xe0,0x3, 0x1f,0x8d,0xe0,0x4, 0x1e,0xbd,0xa1,0xf, 0x17,0x1, 0x9f,0xd2,0xa1,0x8d, -0xe7,0xc, 0xcf,0x9e,0xb7,0xd2,0x16,0x8b,0xa3,0x43,0xe0,0x1, 0x9f,0x93,0x3c,0x64, -0xe7,0x28,0xcf,0x8d,0xe0,0x1, 0xb7,0x93,0xe6,0xd0,0xcb,0x6, 0xe0,0x1, 0x9f,0x93, -0xe7,0x20,0xcf,0x8d,0xe0,0x1, 0xb7,0x93,0x9f,0x93,0xe7,0xe, 0xcf,0x9e,0xb7,0x93, -0xef,0xff,0xdf,0xa9,0xbb,0x43,0x9f,0x93,0xe6,0xf1,0xcf,0xff,0xe0,0x0, 0x2f,0xeb, -0x8f,0x84,0xa4,0x34,0x27,0xa4,0x3d,0xef,0xc5,0xff,0x8c,0x94,0xe2,0x1, 0xc5,0xff, -0xe0,0x5, 0x1f,0xd7,0xe4,0x0, 0xc5,0x8b,0x3d,0x69,0x3f,0x98,0xc5,0x7f,0xea,0x0, -0xce,0x2, 0x3e,0x18,0x3d,0x9f,0xe6,0xd8,0xcd,0x7a,0x36,0x21,0x35,0xa1,0xc5,0x2, -0xe0,0xd, 0x3d,0x1c,0x3f,0xec,0x24,0x88,0x9f,0xf, 0xe0,0x41,0x3f,0xe, 0xe1,0x80, -0xb7,0x1f,0x3e,0xff,0x1, 0xfa,0xc6,0x16,0x3d,0xfc,0x1, 0xf3,0xe4,0x2, 0xc2,0x81, -0xb4,0x33,0xe0,0x8, 0x14,0x0, 0xba,0xd3,0xde,0x80,0xa6,0xb4,0xe0,0x5, 0x1d,0xd8, -0x36,0xa1,0x17,0x80,0xe8,0x0, 0xc6,0x84,0x0, 0x90,0xe2,0x0, 0xce,0x7, 0x2, 0xa9, -0xe0,0x7, 0x9e,0x33,0xe0,0xe, 0x36,0x1e,0xe6,0xfc,0xcf,0x4e,0xb7,0xd, 0xc7,0x81, -0xe2,0x0, 0xcf,0x8b,0xc6,0x82,0x1, 0x17,0xe2,0x0, 0xcf,0x83,0xe0,0xe, 0x3f,0x9b, -0x3e,0x6f,0x37,0x22,0xe2,0x1, 0xc6,0x7f,0x2, 0xe9,0xe0,0x7, 0x9f,0x13,0xe0,0xc, -0x37,0xa2,0x37,0x1c,0xc7,0x81,0xe6,0xfc,0xcf,0x4e,0xe2,0x0, 0xcf,0x8b,0xb7,0xd, -0xc6,0x82,0x1, 0xeb,0x9f,0xd2,0x17,0x0, 0xe7,0xc, 0xcf,0x9e,0xb7,0xd2,0xb, 0x61, -0xe0,0x7, 0x9f,0x53,0xe0,0xc, 0x37,0xa2,0x37,0x1c,0xe6,0xfc,0xcf,0x4e,0xb7,0xd, -0x0, 0xd7,0xa4,0x34,0xe7,0xff,0x0, 0xbc,0x8, 0xb3,0xe0,0x3, 0x1f,0x8d,0x16,0x81, -0xa1,0xf, 0xe0,0x4, 0x1f,0xbd,0x9f,0x52,0xa7,0x8f,0xe7,0xc, 0xcf,0x1d,0xb7,0x52, -0x9f,0x78,0x9e,0xc8,0xb7,0x3f,0xe0,0x1, 0x9f,0x18,0xb7,0x5f,0xe0,0x1, 0x9f,0x38, -0xb7,0x7f,0x8f,0x8, 0x8e,0x18,0x37,0x28,0x3f,0x1c,0xbf,0x5f,0xe0,0x1, 0xbe,0x9f, -0x8e,0xa8,0x9f,0x1f,0xe7,0x0, 0xcf,0x5d,0xb7,0x1f,0x8f,0x38,0x27,0x25,0xe2,0x0, -0xcf,0x1, 0x1, 0x15,0x9f,0x1f,0x11,0x80,0xe7,0x8, 0xcf,0x13,0xb7,0x1f,0x14,0x8, -0xe0,0x2, 0x9f,0x1f,0xe0,0x1, 0xcf,0x3, 0xe0,0x2, 0xb7,0x1f,0xe0,0x1, 0xb1,0xff, -0xde,0xc, 0x9f,0xd2,0xe7,0xc, 0xcf,0x93,0xb7,0xd2,0x9, 0xe1,0x9e,0x9f,0xe7,0x7, -0xce,0x9e,0xb6,0x9f,0xe0,0x1, 0xb4,0xdf,0xe0,0x3, 0x8e,0xb8,0x9f,0x1f,0xe7,0x6, -0xcf,0x1d,0xb7,0x1f,0x0, 0xe0,0x9e,0x9f,0xe6,0xd8,0xcc,0x89,0xe7,0x7, 0xce,0x9e, -0xb6,0x9f,0x3d,0x49,0x9f,0x38,0x9e,0x9f,0xe6,0xf1,0xcf,0x7e,0xe7,0xe, 0xce,0x9e, -0xb6,0x9f,0xe0,0x1, 0xb5,0x5f,0x0, 0xcf,0x8, 0xb2,0xe0,0x3, 0x1f,0x8d,0x16,0x81, -0xa1,0xf, 0xe0,0x4, 0x1f,0xbd,0x9f,0x52,0xa7,0x8f,0xe7,0xc, 0xcf,0x1d,0xb7,0x52, -0x3f,0x68,0x9e,0xf8,0x9e,0x48,0xb6,0xbf,0xe0,0x20,0x14,0x0, 0xe0,0x1, 0x9e,0x9e, -0xb6,0xdf,0xe0,0x1, 0x9e,0xbe,0xb6,0xff,0x8e,0x8e,0x8d,0x9e,0x36,0xa8,0x3e,0x9b, -0xbe,0xdf,0xe0,0x1, 0xbe,0x1f,0x9e,0x9f,0x8e,0x2e,0xe7,0x0, 0xce,0xdc,0xb6,0x9f, -0x9e,0x9f,0xe7,0x7, 0xce,0x99,0xb6,0x9f,0x9e,0x9f,0xe0,0x3, 0x8e,0x3e,0xe7,0x6, -0xce,0x9c,0xb6,0x9f,0x9e,0x9f,0xe0,0x3, 0x8e,0x2e,0xe7,0x9, 0xce,0x9c,0xb6,0x9f, -0x8e,0xbe,0x9f,0x1f,0xe7,0x5, 0xcf,0x1d,0xb7,0x1f,0xdd,0xaf,0x9f,0xd2,0x17,0x0, -0xe7,0xc, 0xcf,0x9e,0xb7,0xd2,0x9, 0x61,0x8, 0xb2,0xe0,0x3, 0x1f,0x8d,0x16,0x81, -0xa1,0xf, 0xe0,0x4, 0x1f,0xbd,0x9f,0x52,0xa7,0x8f,0xe7,0xc, 0xcf,0x1d,0xb7,0x52, -0x3f,0x68,0x9e,0xf8,0x9e,0x48,0xb6,0xbf,0xe1,0x0, 0x14,0x0, 0xe0,0x1, 0x9e,0x9e, -0xb6,0xdf,0xe0,0x1, 0x9e,0xbe,0xb6,0xff,0x8e,0x8e,0x8d,0x9e,0x36,0xa8,0x3e,0x9b, -0xbe,0xdf,0xe0,0x1, 0xbe,0x1f,0x9e,0x9f,0x8e,0x2e,0xe7,0x0, 0xce,0xdc,0xb6,0x9f, -0x9e,0x9f,0xe0,0x3, 0x8e,0x3e,0xe7,0x6, 0xce,0x9c,0xb6,0x9f,0x9e,0x9f,0xe0,0x3, -0x8e,0x2e,0xe7,0x9, 0xce,0x9c,0xb6,0x9f,0x8e,0xbe,0x9f,0x1f,0xe7,0x5, 0xcf,0x1d, -0xb7,0x1f,0xdd,0x73,0x9f,0xd2,0x17,0x0, 0xe7,0xc, 0xcf,0x9e,0xb7,0xd2,0x9, 0x61, -0xe0,0x3, 0x1f,0x8d,0x15,0x81,0xa6,0x8f,0x9e,0x5d,0x9f,0xdd,0xe6,0xf3,0xce,0x7c, -0xe7,0xc, 0xcf,0x9b,0xb7,0xdd,0xe0,0x4, 0x1f,0xbd,0xa7,0xf, 0xe0,0xc, 0x9f,0xbe, -0x24,0x8f,0xe7,0x1, 0xcf,0x9b,0xe2,0x0, 0xcc,0x83,0xe0,0xc, 0xb7,0xbe,0x1, 0x8c, -0xe0,0xc, 0x9f,0xbe,0xe7,0x2, 0xcf,0x9b,0xe0,0xc, 0xb7,0xbe,0x0, 0x8c,0xe7,0x1, -0xcf,0x99,0xe0,0xc, 0xb7,0xbe,0x15,0x80,0xe0,0xc, 0x9f,0xbe,0xe7,0x2, 0xcf,0x9b, -0xe0,0xc, 0xb7,0xbe,0x15,0x0, 0xe0,0xc, 0x9f,0xbe,0x15,0x81,0xe7,0x3, 0xcf,0x9a, -0xe0,0xc, 0xb7,0xbe,0x9f,0xf8,0xe0,0x1, 0x9d,0x68,0xe0,0xc, 0xb7,0xde,0xe0,0x1, -0x9f,0x98,0xe0,0xc, 0xb7,0xfe,0xe0,0x1, 0x9f,0xb8,0xe0,0xd, 0xb7,0x9e,0xe0,0x1, -0x9f,0xd8,0xe0,0xd, 0xb7,0xbe,0x8f,0x88,0x8c,0x98,0x37,0xa8,0x3f,0x99,0xe0,0x6, -0xbf,0xee,0x8f,0xa8,0x8c,0xb8,0x37,0xa8,0x3f,0x99,0xe0,0x6, 0xbf,0xfe,0x8f,0xc8, -0x8c,0xd8,0x37,0xa8,0x3f,0x99,0xe0,0x7, 0xbf,0x8e,0x8f,0xe8,0x8c,0xf8,0x37,0xa8, -0x3f,0x99,0xe0,0x7, 0xbf,0x9e,0xe0,0x1, 0x8f,0x88,0xe0,0x1, 0x8c,0x98,0x37,0xa8, -0x3f,0x99,0xe0,0x7, 0xbf,0xae,0xe0,0x1, 0x8f,0xa8,0xe0,0x1, 0x8c,0xb8,0x37,0xa8, -0x3f,0x99,0xe0,0x7, 0xbf,0xbe,0xe0,0x1, 0xbd,0x1e,0xe0,0xc, 0x9f,0xbe,0xe7,0x0, -0xcf,0x9b,0xe0,0xc, 0xb7,0xbe,0xe0,0xc, 0xb5,0x9e,0x0, 0x84,0xe0,0xf, 0x9f,0xbe, -0x2f,0x95,0xe0,0x3, 0x9f,0x9e,0xe6,0xfe,0xcf,0xff,0x27,0xf9,0xe0,0x3, 0x9f,0xbe, -0x15,0x81,0xe7,0x1, 0xcf,0x9b,0xe0,0x3, 0xb7,0xbe,0x17,0x80,0xe0,0xc, 0xb7,0x9e, -0x9f,0xdd,0xe7,0xc, 0xcf,0x9c,0xb7,0xdd,0x38,0x82,0xe0,0xf, 0x9f,0xfe,0xcf,0x81, -0xe0,0xf, 0xb7,0xfe,0x0, 0xe7,0x0, 0x0, 0x70,0x8f,0x0, 0xff,0x44,0xbb,0x5a,0xa5, -0x2, 0xfd,0x96,0x69,0x0, 0x0, 0x3b,0xc4,0x0, 0xff,0x3, 0xfc,0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d,0x31,0x34,0x36,0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27,0xd8,0x57,0x58,0x4e,0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x1, 0x1, 0x1, 0x1, -0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, -0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x11,0x0, 0x26,0x0, 0x11,0x26,0x11,0x26, -0x0, 0x12,0xb, 0x8, 0x13,0x11,0xa, 0x10,0x9, 0xf, 0x7, 0x6, 0x5, 0xe, 0xd, 0xc, -0x4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x1b,0x14,0x21,0x24,0x20,0x23,0x25,0x22,0x12,0x13, -0x26,0x10,0xf, 0x11,0xc, 0xb, 0xd, 0xe, 0x1f,0x7, 0xa, 0x9, 0x1d,0x1e,0x8, 0x1c, -0x6, 0x1a,0x4, 0x3, 0x2, 0x19,0x18,0x17,0x16,0x15,0x27,0x0, 0x0, 0x0, 0x0, 0x9e, -0xa, 0x3, 0xe8,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f, -0x1f,0x1f,0x1f,0x1f,0x1f,0x12,0x12,0x0, 0x0, 0x82,0x82,0x40,0x8, 0x6, 0x6, 0x2, -0x5, 0x12,0x12,0x5, 0xdc,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8,0x1, 0x8, 0x58,0x10,0x0, 0x0, 0x2, 0x16,0x2a, -0x16,0x30,0x1, 0x0, 0x90,0x0, 0x70,0x0, 0xc8,0x46,0x10,0x1, 0x2, 0x2, 0x1b,0x2f, -0x1b,0x2f,0x1, 0x0, 0x90,0x0, 0xe8,0x1, 0x8, 0x4, 0x8, 0x2, 0x4, 0x4, 0x16,0x2a, -0x16,0x2a,0x1, 0x0, 0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, -0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, -0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3f,0x3f,0x3f,0x3f,0x3f, -0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f, -0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f, -0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f, -0x3f,0x3, 0x20,0x0, 0x1, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, -0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0xfa,0x0, 0xfa,0x0, 0xfa,0x0, 0xfa,0x0, -0xfa,0x0, 0xfa,0x1, 0xf4,0x1, 0xf4,0x1, 0xf4,0x2, 0x58,0x2, 0x58,0x1, 0xf4,0x1, -0x90,0x1, 0xf4,0x1, 0x5e,0x2, 0x58,0x1, 0xf4,0x1, 0x5e,0x3, 0x3, 0x3, 0x3, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2, 0x3, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, -0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x1e,0x20,0x1, 0x15,0x20,0x1, -0x15,0x20,0x8, 0x0, 0x64,0xd, 0xac,0x0, 0xc8,0x0, 0xf0,0x0, 0xc8,0x0, 0xc8,0x0, -0x64,0x0, 0x64,0xa, 0x0, 0x1, 0x4a,0x0, 0xb4,0x0, 0x96,0x0, 0x78,0x0, 0x78,0x1, -0xf4,0x1, 0xc2,0x1, 0xc2,0x1, 0xc2,0x3, 0xe8,0x1, 0x5, 0x18,0x21,0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x62,0x1, 0x0, 0x1, 0x56,0x1, 0x0, 0x27,0x1, 0x44,0x0, 0x1, 0x0, 0x5a, -0x1, 0x1, 0x1, 0x0, 0x2, 0x0, 0x0, 0xd8,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x2, 0x40,0x4, 0x80,0x4, 0x38,0x2, 0x1c,0x0, 0x40,0x0, 0x40,0x2, -0x8a,0x2, 0x3a,0x1, 0x0, 0x1, 0x0, 0x9, 0x60,0x4, 0x92,0x0, 0x40,0x0, 0x40,0x2, -0x76,0x2, 0x58,0x1, 0x0, 0x1, 0x0, 0x6, 0x9, 0x2, 0xb7,0x0, 0x64,0x0, 0x14,0x3, -0x0, 0x25,0x2, 0x6, 0x9, 0x0, 0x0, 0x0, 0xb4,0x1, 0x68,0x2, 0x1c,0x0, 0x0, 0x0, -0x0, 0x7, 0xa8,0x1, 0x2c,0x0, 0x50,0x0, 0x1, 0x5, 0x6, 0x0, 0x32,0x0, 0x78,0x0, -0x1, 0x45,0x4, 0x1, 0x2, 0x2, 0x4, 0x4, 0x6, 0x80,0x0, 0xc8,0x13,0x88,0x8, 0x5, -0x6, 0x1, 0x2c,0x2, 0x58,0x3, 0x20,0x1f,0x40,0x23,0x0, 0xc8,0x1, 0x90,0x0, 0x14, -0x1, 0x2c,0x0, 0x64,0x0, 0xe8,0x16,0x1b,0x16,0x2a,0x2f,0x2a,0x16,0x1b,0x16,0x30, -0x2f,0x2a,0x0, 0x0, 0x48,0x16,0x1b,0x16,0x2a,0x2f,0x2a,0x16,0x1b,0x16,0x30,0x2f, -0x2a,0x0, 0x0, 0x88,0x16,0x1b,0x16,0x2a,0x2f,0x2a,0x16,0x1b,0x16,0x30,0x2f,0x2a, -0x0, 0x1, 0xe, 0x2, 0x1c,0x1, 0xe, 0x2, 0x1c,0x3, 0x9e,0x0, 0x0, 0x82,0x82,0x12, -0x12,0x6, 0x6, 0x12,0x12,0x2, 0x8a,0x0, 0x0, 0x78,0x78,0x12,0x12,0x6, 0x6, 0x12, -0x12,0x2, 0x4e,0x0, 0x0, 0x5e,0x5e,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x96,0x0, -0x0, 0x7d,0x7d,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x5f,0x0, 0x0, 0x64,0x64,0x12, -0x12,0x6, 0x6, 0x12,0x12,0x2, 0x3c,0x0, 0x0, 0x5d,0x5d,0x12,0x12,0x6, 0x6, 0x12, -0x12,0x2, 0x9e,0x0, 0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x9e,0x0, -0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x9e,0x0, 0x0, 0x82,0x82,0x12, -0x12,0x6, 0x6, 0x12,0x12,0x2, 0x0, 0x0, 0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12, -0x12,0x2, 0x0, 0x0, 0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x0, 0x0, -0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x1, 0x0, 0x0, 0x82,0x82,0x12, -0x12,0x6, 0x6, 0x12,0x12,0x2, 0x1, 0x0, 0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12, -0x12,0x2, 0x1, 0x0, 0x0, 0x82,0x82,0x12,0x12,0x6, 0x6, 0x12,0x12,0x2, 0x1, 0x68, -0x0, 0x14,0x0, 0x14,0x0, 0x50,0x0, 0x3c,0x0, 0x28,0x0, 0x1e,0x10,0x0, 0xc8,0x1, -0x3, 0x20,0x4, 0xb0,0x3, 0x20,0x0, 0xfa,0x0, 0xc8,0x1, 0x90,0x1, 0x2c,0x1, 0xe, -0x0, 0xfa,0x0, 0xc8,0x1, 0x7c,0x1, 0x5e,0x0, 0xfa,0x0, 0x50,0x0, 0x46,0x0, 0x64, -0x0, 0x64,0x0, 0x64,0x1, 0x18,0x1, 0x18,0xf, 0xf, 0x0, 0x50,0x3, 0xe8,0x0, 0x50, -0x9, 0x10,0x0, 0x32,0x1, 0xf4,0x1, 0xf4,0x3, 0x20,0x0, 0xc8,0x0, 0x3f,0x0, 0x1e, -0x0, 0x80,0x1, 0xe, 0x1, 0x2c,0x0, 0x3c,0x3, 0xe8,0x2, 0x58,0x0, 0x87,0x0, 0x3c, -0x3, 0xe8,0x0, 0x20,0x4, 0x18,0x0, 0x0, 0x9, 0x60,0x0, 0x64,0x0, 0xa0,0x0, 0xa0, -0x13,0x88,0x1, 0x2c,0x0, 0xa0,0x0, 0xa0,0x10,0x0, 0xc, 0x0, 0x11,0xf, 0x5, 0x7, -0xc, 0xa, 0x6, 0x6, 0xc, 0x64,0xc8,0x46,0x0, 0x5, 0xc1,0x0, 0x0, 0x50,0x7, 0x9, -0xc4,0x0, 0x3c,0x0, 0x64,0x4, 0x1a,0x0, 0x3c,0x0, 0x64,0x4, 0x1a,0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x4, 0x21,0x5, 0x59,0x9, 0xda,0xfa,0x69,0xf9,0x7f,0xf3,0xdf, -0x5, 0x23,0x5, 0x34,0xf5,0x3c,0xa, 0x18,0xf7,0x9c,0x7, 0xcb,0x8, 0x1f,0xfe,0xe3, -0xfb,0xf0,0xd, 0xa6,0xb, 0x3c,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,0xc7,0xd, 0xcb, -0x1e,0xc7,0x26,0xdc,0x0, 0x0, 0xd, 0xcb,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x1a,0xce,0x17,0x23,0x0, 0x0, 0x1c,0x1f,0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x75,0x4, 0xe7, -0x20,0x9f,0x1b,0x55,0xf, 0x75,0x1b,0x55,0x0, 0x0, 0x4, 0xe7,0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0xa, 0x8c,0x2, 0xeb,0x1d,0x49,0x15,0x40,0x15,0x40,0x1d,0x49, -0x2, 0xeb,0xa, 0x8c,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe1,0xa, 0x9b, -0x14,0x36,0x12,0x4e,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x4, 0xb0,0x1, 0x8, 0x14,0x47,0xb, 0xb7,0x1a,0x4b,0x1a,0x4b, -0xb, 0xb7,0x14,0x47,0x1, 0x8, 0x4, 0xb0,0x0, 0x0, 0x0, 0x0, 0x7, 0x40,0x2, 0xc2, -0x12,0xb8,0xd, 0x1d,0x16,0x29,0x16,0x29,0xd, 0x1d,0x12,0xb8,0x2, 0xc2,0x7, 0x40, -0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,0x0, 0x5d,0xc, 0x4c,0x5, 0xf1,0x18,0x10,0x18,0x10, -0xc, 0x4c,0x13,0x58,0x1, 0xfe,0x5, 0xf1,0x0, 0x0, 0x0, 0x5d,0x2, 0x2, 0x4, 0x4, -0x6, 0x6, 0x8, 0x0, 0x0, 0x18,0x6a,0x0, 0x0, 0x10,0x46,0xaa,0x0, 0xc, 0x35,0x0, -0x0, 0xa, 0x2c,0x2a,0x0, 0x8, 0x23,0x55,0x2, 0x58,0x3, 0x84,0x4, 0xb0,0x5, 0xa0, -0x7, 0x8, 0x0, 0x0, 0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d, -0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55, -0x3, 0x93,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48, -0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42, -0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45, -0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9, -0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2, -0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7, -0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1, -0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e, -0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59, -0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x95,0x3, 0xd2,0x4, 0x12,0x4, 0x51, -0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49, -0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e, -0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde, -0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x58,0x2, 0x95,0x2, 0xd7, -0x3, 0x16,0x3, 0x55,0x3, 0x96,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd, -0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7, -0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0, -0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d, -0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55, -0x3, 0x95,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48, -0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42, -0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45, -0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9, -0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x95,0x3, 0xd2, -0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7, -0x6, 0xa, 0x6, 0x49,0x6, 0x85,0x6, 0xc8,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1, -0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e, -0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59, -0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x95,0x3, 0xd2,0x4, 0x12,0x4, 0x51, -0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49, -0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x1, 0x8, 0x3e, -0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde, -0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7, -0x3, 0x16,0x3, 0x55,0x3, 0x95,0x3, 0xd2,0x4, 0x12,0x4, 0x50,0x4, 0x8e,0x4, 0xcd, -0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7, -0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x2, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0, -0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d, -0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55, -0x3, 0x93,0x3, 0xd2,0x4, 0x11,0x4, 0x4f,0x4, 0x8d,0x4, 0xcd,0x5, 0xb, 0x5, 0x48, -0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42, -0x7, 0x82,0x7, 0xc1,0x8, 0x2, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45, -0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9, -0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2, -0x4, 0x12,0x4, 0x50,0x4, 0x8e,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7, -0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1, -0x8, 0x2, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e, -0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59, -0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2,0x4, 0x12,0x4, 0x51, -0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49, -0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x1, 0x8, 0x3e, -0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde, -0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7, -0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd, -0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7, -0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0, -0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d, -0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55, -0x3, 0x94,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48, -0x5, 0x8a,0x5, 0xc7,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42, -0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45, -0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5b,0x1, 0x9b,0x1, 0xd9, -0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2, -0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc8, -0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1, -0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e, -0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5d,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59, -0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55,0x3, 0x94,0x3, 0xd2,0x4, 0x12,0x4, 0x51, -0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc9,0x6, 0xa, 0x6, 0x49, -0x6, 0x84,0x6, 0xc7,0x7, 0x6, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e, -0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde, -0x1, 0x1e,0x1, 0x5e,0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7, -0x3, 0x16,0x3, 0x55,0x3, 0x93,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd, -0x5, 0xc, 0x5, 0x48,0x5, 0x8a,0x5, 0xc9,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7, -0x7, 0x7, 0x7, 0x42,0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0, -0x8, 0xf7,0x9, 0x45,0x0, 0x1a,0x0, 0x5e,0x0, 0xa0,0x0, 0xde,0x1, 0x1e,0x1, 0x5e, -0x1, 0x9b,0x1, 0xd9,0x2, 0x1a,0x2, 0x59,0x2, 0x95,0x2, 0xd7,0x3, 0x16,0x3, 0x55, -0x3, 0x94,0x3, 0xd2,0x4, 0x12,0x4, 0x51,0x4, 0x8f,0x4, 0xcd,0x5, 0xc, 0x5, 0x48, -0x5, 0x8a,0x5, 0xc9,0x6, 0xa, 0x6, 0x49,0x6, 0x84,0x6, 0xc7,0x7, 0x7, 0x7, 0x42, -0x7, 0x82,0x7, 0xc1,0x8, 0x0, 0x8, 0x3e,0x8, 0x7f,0x8, 0xc0,0x8, 0xf7,0x9, 0x45, -0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24, -0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24, -0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24, -0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24, -0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x24,0x0, 0x5a,0x0, 0x5a, -0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a, -0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a, -0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a, -0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a, -0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x5a,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e, -0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e, -0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e, -0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e, -0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e,0x0, 0x9e, -0x0, 0x9f,0x0, 0x9f,0x0, 0xe0,0x0, 0xe0,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf, -0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf, -0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf, -0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xe0,0x0, 0xe1,0x0, 0xdf, -0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xdf,0x0, 0xe0,0x0, 0xe1, -0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d, -0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d, -0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d, -0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d, -0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1d,0x1, 0x1e,0x1, 0x1e,0x1, 0x5d,0x1, 0x5d, -0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e, -0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e, -0x1, 0x5e,0x1, 0x60,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e, -0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5d,0x1, 0x5e, -0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x5e,0x1, 0x9c,0x1, 0x9c,0x1, 0x9d,0x1, 0x9d, -0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d, -0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d, -0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d, -0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d,0x1, 0x9c,0x1, 0x9d,0x1, 0x9d,0x1, 0x9d, -0x1, 0x9d,0x1, 0x9c,0x1, 0xdd,0x1, 0xde,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd, -0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd, -0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd, -0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd, -0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd,0x1, 0xdd, -0x2, 0x20,0x2, 0x21,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20, -0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20,0x2, 0x20, -0x2, 0x20,0x2, 0x20,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f, -0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x1f,0x2, 0x20,0x2, 0x20,0x2, 0x20, -0x2, 0x20,0x2, 0x1e,0x2, 0x1c,0x2, 0x1c,0x2, 0x1c,0x2, 0x1c,0x2, 0x5e,0x2, 0x5f, -0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e, -0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e, -0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e, -0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e, -0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x5e,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d, -0x2, 0x9d,0x2, 0x9f,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9e,0x2, 0x9e,0x2, 0x9d, -0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d, -0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9f,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9e, -0x2, 0x9e,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d,0x2, 0x9d, -0x2, 0x9d,0x2, 0x9d,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xe0, -0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xdf,0x2, 0xdf,0x2, 0xde,0x2, 0xde,0x2, 0xde, -0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde, -0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xdf,0x2, 0xdf,0x2, 0xde, -0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde,0x2, 0xde, -0x3, 0x1c,0x3, 0x1d,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1e,0x3, 0x1c,0x3, 0x1c, -0x3, 0x1c,0x3, 0x1d,0x3, 0x1d,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c, -0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c, -0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1d,0x3, 0x1d,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c, -0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1c,0x3, 0x1b,0x3, 0x5e,0x3, 0x60, -0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x60,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5f, -0x3, 0x5f,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e, -0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5f,0x3, 0x5e,0x3, 0x5e, -0x3, 0x5e,0x3, 0x5f,0x3, 0x5f,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e,0x3, 0x5e, -0x3, 0x5e,0x3, 0x5e,0x3, 0x5d,0x3, 0x5c,0x3, 0x9e,0x3, 0x9f,0x3, 0x9e,0x3, 0x9e, -0x3, 0x9e,0x3, 0x9f,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e, -0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e, -0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e, -0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e,0x3, 0x9e, -0x3, 0x9e,0x3, 0x9e,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1, -0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1, -0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1, -0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1, -0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1,0x3, 0xe1, -0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16, -0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16, -0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16, -0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16, -0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x4, 0x16,0x7, 0x79,0x7, 0x64, -0x7, 0x49,0x7, 0x2e,0x7, 0x13,0x6, 0xf8,0x6, 0xdd,0x6, 0xc2,0x6, 0xa7,0x6, 0x8c, -0x6, 0x71,0x6, 0x56,0x6, 0x3b,0x6, 0x20,0x6, 0x5, 0x5, 0xea,0x5, 0xcf,0x5, 0xb4, -0x5, 0x99,0x5, 0x7e,0x5, 0x63,0x5, 0x48,0x5, 0x2d,0x5, 0x12,0x4, 0xf7,0x4, 0xdc, -0x4, 0xc1,0x4, 0xa6,0x4, 0x8b,0x4, 0x70,0x4, 0x55,0x4, 0x3a,0x4, 0x1f,0x4, 0x4, -0x3, 0xe9,0x3, 0xce,0x3, 0xb3,0x3, 0x98,0x3, 0x7d,0x3, 0x62,0x3, 0x47,0x3, 0x2c, -0x3, 0x11,0x2, 0xf6,0x2, 0xdb,0x2, 0xc0,0x2, 0xa5,0x2, 0x8a,0x2, 0x6f,0x2, 0x54, -0x2, 0x39,0x2, 0x1e,0x2, 0x3, 0x1, 0xe8,0x1, 0xcd,0x1, 0xb2,0x1, 0x97,0x1, 0x7c, -0x1, 0x61,0x1, 0x46,0x1, 0x2b,0x1, 0x10,0x0, 0xf5,0x0, 0xda,0x0, 0xbf,0x0, 0xa4, -0x0, 0x89,0x0, 0x6e,0x0, 0x53,0x0, 0x38,0x0, 0x1d,0x0, 0x8, 0x4, 0x31,0x4, 0x1d, -0x4, 0x2, 0x3, 0xe7,0x3, 0xcc,0x3, 0xb1,0x3, 0x96,0x3, 0x7b,0x3, 0x60,0x3, 0x45, -0x3, 0x2a,0x3, 0xf, 0x2, 0xf4,0x2, 0xd9,0x2, 0xbe,0x2, 0xa3,0x2, 0x88,0x2, 0x6d, -0x2, 0x52,0x2, 0x37,0x2, 0x1c,0x2, 0x1, 0x1, 0xe6,0x1, 0xcb,0x1, 0xb0,0x1, 0x95, -0x1, 0x7a,0x1, 0x5f,0x1, 0x44,0x1, 0x29,0x1, 0xe, 0x0, 0xf3,0x0, 0xd8,0x0, 0xbd, -0x0, 0xa2,0x0, 0x87,0x0, 0x6c,0x0, 0x51,0x0, 0x36,0x0, 0x1b,0x0, 0x7, 0x0, 0x0, -0x0, 0x4, 0x73,0xd4,0x96,0x96,0x0, 0x0, 0x64,0x64,0xaa,0xaa,0xfa,0xfa,0x0, 0x0, -0x32,0x4, 0x19,0x4, 0x0, 0x4, 0xf8,0x5, 0xe7,0x7, 0xce,0x8, 0xc2,0x9, 0xb5,0xa, -0x0, 0x4, 0x13,0xc4,0x1, 0x2, 0x4, 0x8, 0x10,0x20,0x40,0x80,0x3, 0x20,0x0, 0xb, -0x1, 0xf4,0x2, 0x58,0x0, 0x8, 0x0, 0xfa,0x1, 0xc2,0x0, 0x6, 0x0, 0xc8,0x1, 0x40, -0x0, 0x5, 0x0, 0x78,0x0, 0xc8,0x0, 0x4, 0x0, 0x3c,0x0, 0x78,0x0, 0x3, 0x0, 0xa, -0x0, 0x3c,0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xca,0x12,0x73,0x71,0x72,0x74, -0x0, 0x0, 0x0, 0x0, 0x80,0x0, 0xc, 0x0, 0x80,0x0, 0xb, 0x0, 0x80,0x0, 0xe, 0x0, -0x80,0x0, 0xa, 0x0, 0x80,0x0, 0x5, 0x0, 0x80,0x0, 0x4, 0x20,0x80,0x0, 0x4, 0x0, -0x80,0x0, 0x6, 0x0, 0x80,0x0, 0x8, 0x0, 0x80,0x0, 0x2, 0x0, 0x80,0x0, 0x3, 0x0, -0x80,0x0, 0x1, 0x0, 0x80,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2, 0x2, -0x3, 0x3, 0x3, 0x3, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x5, 0x5, 0x5, 0x5, -0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x5, 0x6, 0x6, 0x6, 0x6, -0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, -0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x7, 0x7, 0x7, 0x7, -0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, -0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, -0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, -0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x7, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, -0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x1, 0x3, 0x1, 0xe0, -0x1, 0x0, 0x0, 0x0, 0x0, 0x4, 0x53,0xae,0x2, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, -0x1, 0x0, 0x0, 0x0, 0x0, 0x4, 0x5f,0x7c,0x1, 0x0, 0x0, 0x60,0x8, 0x0, 0x0, 0x1, -0x82,0x1, 0x1, 0x2, 0x4, 0xb0,0x1, 0xff,0xff,0xff,0x0, 0x0, 0x1, 0x1, 0x1, 0x1, -0x1, 0x1, 0x1, 0x64,0x1, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, -0x0, 0x4, 0x0, 0x48,0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, -0x0, 0x1, 0xc3,0xf8,0x0, 0x4, 0x71,0xb2,0x0, 0x4, 0x70,0x9d,0x0, 0x4, 0x70,0xd6, -0x0, 0x4, 0x70,0x9b,0x0, 0x4, 0x71,0xac,0x0, 0x4, 0x6f,0xea,0x0, 0x4, 0x6f,0xc0, -0x0, 0x4, 0x70,0x9a,0x0, 0x4, 0x73,0xa4,0x0, 0x4, 0x73,0xa2,0x0, 0x4, 0x73,0xa3, -0x0, 0x4, 0x73,0x9c,0x0, 0x4, 0x73,0x9a,0x0, 0x4, 0x73,0xa0,0x0, 0x4, 0x73,0x9e, -0x0, 0x4, 0x71,0x6c,0x0, 0x4, 0x73,0x99,0x0, 0x4, 0x73,0x98,0x0, 0x4, 0x73,0x95, -0x0, 0x4, 0x73,0x94,0x0, 0x4, 0x73,0x92,0x0, 0x4, 0x73,0x8e,0x0, 0x4, 0x73,0x8d, -0x0, 0x4, 0x73,0x96,0x0, 0x4, 0x73,0x90,0x0, 0x4, 0x71,0xa8,0x0, 0x4, 0x70,0x4a, -0x0, 0x4, 0x70,0x14,0x0, 0x4, 0x70,0x29,0x0, 0x4, 0x6f,0xa1,0x0, 0x4, 0x6f,0xbc, -0x0, 0x4, 0x6f,0xb9,0x0, 0x4, 0x6f,0x8c,0x0, 0x4, 0x73,0x8c,0x0, 0x4, 0xbe,0xc8, -0x0, 0x1, 0xc3,0xf4,0x0, 0x4, 0x10,0x6, 0x0, 0x4, 0x0, 0xc, 0x0, 0x4, 0x17,0x41, -0x0, 0x4, 0x10,0x50,0x0, 0x4, 0x78,0xb0,0x0, 0x4, 0x10,0x58,0x0, 0x4, 0x10,0x4, -0x0, 0x4, 0x17,0x42,0x0, 0x4, 0x16,0x72,0x0, 0x0, 0xbe,0x6c,0x0, 0x4, 0x0, 0x1e, -0x0, 0x4, 0x5a,0x70,0x0, 0x4, 0x5a,0x5e,0x0, 0x4, 0x5a,0x4c,0x0, 0x4, 0x6d,0xcc, -0x0, 0x8, 0x16,0x74,0x0, 0x4, 0x16,0x74,0x0, 0x4, 0xcb,0xc2,0x0, 0x4, 0xca,0x56, -0x0, 0x4, 0xcb,0x9c,0x0, 0x4, 0xca,0x9c,0x0, 0x4, 0xcb,0x40,0x0, 0x4, 0xcb,0x4e, -0x0, 0x4, 0xca,0x38,0x0, 0x4, 0xcb,0x2a,0x0, 0x4, 0xcb,0x2c,0x0, 0x4, 0xcb,0x2e, -0x0, 0x4, 0xcb,0x30,0x0, 0x4, 0xcb,0x32,0x0, 0x4, 0xca,0x14,0x0, 0x4, 0xca,0x16, -0x0, 0x4, 0xca,0x18,0x0, 0x4, 0xca,0x1a,0x0, 0x4, 0xca,0x1c,0x0, 0x4, 0xca,0xa, -0x0, 0x4, 0xcb,0x1a,0x0, 0x4, 0xcb,0x34,0x0, 0x4, 0xca,0x1e,0x0, 0x4, 0xca,0x12, -0x0, 0x4, 0xcb,0x28,0x0, 0x4, 0xca,0xb8,0x0, 0x4, 0xca,0xb0,0x0, 0x4, 0xca,0x10, -0x0, 0x4, 0xc9,0xec,0x0, 0x4, 0xca,0xae,0x0, 0x4, 0xca,0xb2,0x0, 0x4, 0xca,0xc8, -0x0, 0x4, 0xc9,0xf8,0x0, 0x4, 0xc9,0xf6,0x0, 0x4, 0xca,0x0, 0x0, 0x4, 0xca,0x8, -0x0, 0x4, 0xca,0xb4,0x0, 0x4, 0xca,0x88,0x0, 0x4, 0xc9,0x8f,0x0, 0x4, 0xcb,0x12, -0x0, 0x4, 0xc9,0xe4,0x0, 0x4, 0xcb,0x8e,0x0, 0x4, 0xcb,0x7e,0x0, 0x4, 0xcb,0x8c, -0x0, 0x4, 0xcb,0x9a,0x0, 0x4, 0xcb,0x98,0x0, 0x4, 0xcb,0x96,0x0, 0x4, 0xcb,0x94, -0x0, 0x4, 0xcb,0x92,0x0, 0x4, 0xcb,0x90,0x0, 0x4, 0xc9,0xe8,0x0, 0x4, 0xca,0x4, -0x0, 0x4, 0xc9,0xba,0x0, 0x4, 0xc9,0x90,0x0, 0x4, 0xcc,0x1e,0x0, 0x4, 0xcc,0x1c, -0x0, 0x4, 0xcc,0x1a,0x0, 0x4, 0xcc,0x18,0x0, 0x4, 0xcc,0x14,0x0, 0x4, 0xcc,0x16, -0x0, 0x4, 0xca,0x54,0x0, 0x4, 0xca,0x32,0x0, 0x4, 0xc9,0x8c,0x0, 0x4, 0x12,0xdc, -0x0, 0x4, 0x10,0x48,0x0, 0x0, 0xbe,0x0, 0x0, 0x4, 0x19,0x34,0x0, 0x4, 0x19,0xc, -0x0, 0x8, 0x11,0x29,0x0, 0x4, 0x11,0x29,0x0, 0x4, 0x13,0xbb,0x0, 0x4, 0xc8,0x5a, -0x0, 0x8, 0xc7,0xb4,0x0, 0x4, 0xc7,0xb4,0x0, 0x4, 0xbe,0xe0,0x0, 0x4, 0xbe,0xd4, -0x0, 0x4, 0x17,0x44,0x0, 0x4, 0x15,0x4c,0x0, 0x4, 0xc8,0xb4,0x0, 0x4, 0x78,0x36, -0x0, 0x4, 0x17,0x40,0x0, 0x4, 0x78,0xb1,0x0, 0x1, 0xc3,0xf0,0x0, 0xa, 0x6d,0x70, -0x0, 0x4, 0x6d,0xd0,0x0, 0x4, 0x5b,0x0, 0x0, 0x4, 0x5a,0xc2,0x0, 0x4, 0x5a,0x84, -0x0, 0x4, 0x0, 0x22,0x0, 0x0, 0xbd,0x4a,0x0, 0x4, 0x18,0x60,0x0, 0x4, 0x18,0x5f, -0x0, 0x4, 0x0, 0x28,0x0, 0x4, 0x57,0x70,0x0, 0x4, 0x10,0x5b,0x0, 0x4, 0x13,0xa2, -0x0, 0x4, 0x16,0x70,0x0, 0x4, 0x16,0x79,0x0, 0x4, 0x16,0xcb,0x0, 0x8, 0x16,0x78, -0x0, 0x4, 0x16,0x78,0x0, 0x4, 0x13,0xbf,0x0, 0x4, 0x10,0x9, 0x0, 0x1, 0xc3,0xa4, -0x0, 0xa, 0x0, 0x24,0x0, 0x4, 0x0, 0x24,0x0, 0x4, 0x0, 0x36,0x0, 0x4, 0xbf,0xe0, -0x0, 0x4, 0xbf,0xd8,0x0, 0x4, 0xbf,0xd0,0x0, 0x4, 0xbe,0xf0,0x0, 0x4, 0xc7,0x8c, -0x0, 0x4, 0xc1,0x2c,0x0, 0x1, 0xb6,0xd3,0x0, 0x1, 0xb6,0xd2,0x0, 0x1, 0xb6,0xd5, -0x0, 0x1, 0xb6,0xd4,0x0, 0x1, 0xb6,0xcf,0x0, 0x1, 0xb6,0xd1,0x0, 0x1, 0xb6,0xd0, -0x0, 0x1, 0xb4,0xcf,0x0, 0x1, 0xb4,0xe6,0x0, 0x1, 0xb4,0xe5,0x0, 0x1, 0xb5,0xc9, -0x0, 0x1, 0xb6,0xc3,0x0, 0x1, 0xb6,0xc2,0x0, 0x1, 0xb6,0xc1,0x0, 0x1, 0xb6,0xc0, -0x0, 0x1, 0xb6,0xc7,0x0, 0x1, 0xb6,0xc6,0x0, 0x1, 0xb5,0x7e,0x0, 0x1, 0xb5,0x7d, -0x0, 0x1, 0xb5,0x7b,0x0, 0x1, 0xb5,0x82,0x0, 0x1, 0xb5,0x81,0x0, 0x1, 0xb5,0x7c, -0x0, 0x1, 0xb5,0x7f,0x0, 0x1, 0xb5,0x80,0x0, 0x1, 0xb5,0x6e,0x0, 0x1, 0xb5,0x6d, -0x0, 0x1, 0xb5,0x6c,0x0, 0x1, 0xb5,0x6b,0x0, 0x1, 0xb5,0x72,0x0, 0x1, 0xb5,0x71, -0x0, 0x1, 0xb5,0x70,0x0, 0x1, 0xb5,0x6f,0x0, 0x1, 0xb4,0xc7,0x0, 0x1, 0xb3,0xf5, -0x0, 0x1, 0xb4,0x2b,0x0, 0x1, 0xb3,0xc5,0x0, 0x1, 0xb5,0xaa,0x0, 0x1, 0xb5,0xa6, -0x0, 0x1, 0xb5,0xa5,0x0, 0x1, 0xb5,0xa4,0x0, 0x1, 0xb5,0xa3,0x0, 0x1, 0xb5,0xae, -0x0, 0x1, 0xb5,0xad,0x0, 0x1, 0xb5,0xac,0x0, 0x1, 0xb5,0xab,0x0, 0x1, 0xb4,0xd4, -0x0, 0x1, 0xb4,0xd3,0x0, 0x1, 0xb4,0xd2,0x0, 0x1, 0xb5,0x25,0x0, 0x1, 0xb4,0xea, -0x0, 0x1, 0xb4,0xe9,0x0, 0x1, 0xb4,0xce,0x0, 0x1, 0xb4,0xe2,0x0, 0x1, 0xb4,0xe1, -0x0, 0x1, 0xb4,0xe0,0x0, 0x1, 0xb4,0xdf,0x0, 0x1, 0xb4,0xde,0x0, 0x1, 0xb4,0xdd, -0x0, 0x1, 0xb4,0xcb,0x0, 0x1, 0xb4,0xe4,0x0, 0x1, 0xb4,0xe3,0x0, 0x1, 0xb4,0xee, -0x0, 0x1, 0xb4,0xed,0x0, 0x1, 0xb4,0xec,0x0, 0x1, 0xb4,0xeb,0x0, 0x1, 0xb4,0xdc, -0x0, 0x1, 0xb4,0xdb,0x0, 0x1, 0xb4,0xf9,0x0, 0x1, 0xb3,0x38,0x0, 0x1, 0xb3,0xd8, -0x0, 0x1, 0xb3,0xd7,0x0, 0x1, 0xb3,0xd6,0x0, 0x1, 0xb3,0xd5,0x0, 0x1, 0xb3,0xd9, -0x0, 0x1, 0xb4,0xe8,0x0, 0x1, 0xb4,0xe7,0x0, 0x1, 0xb4,0xda,0x0, 0x1, 0xb4,0xd9, -0x0, 0x1, 0xb5,0xb1,0x0, 0x1, 0xb4,0xc9,0x0, 0x1, 0xb5,0x62,0x0, 0x1, 0xb5,0x78, -0x0, 0x1, 0xb5,0x77,0x0, 0x1, 0xb5,0x68,0x0, 0x1, 0xb5,0x67,0x0, 0x1, 0xb5,0xa9, -0x0, 0x1, 0xb5,0xb0,0x0, 0x1, 0xb5,0xaf,0x0, 0x1, 0xb5,0xa8,0x0, 0x1, 0xb5,0xa7, -0x0, 0x1, 0xb6,0xa, 0x0, 0x1, 0xb3,0x7f,0x0, 0x1, 0xb5,0x24,0x0, 0x1, 0xb6,0x2e, -0x0, 0x1, 0xb6,0xc5,0x0, 0x1, 0xb6,0xc4,0x0, 0x1, 0xb4,0xd8,0x0, 0x1, 0xb4,0xd7, -0x0, 0x1, 0xb4,0xd6,0x0, 0x1, 0xb4,0xd5,0x0, 0x7, 0xb2,0xc8,0x0, 0x1, 0xb7,0x4d, -0x0, 0x1, 0xb7,0x4c,0x0, 0x1, 0xb7,0x50,0x0, 0x1, 0xb7,0x4e,0x0, 0x1, 0xb7,0x4f, -0x0, 0x1, 0xb7,0x4a,0x0, 0x1, 0xb7,0x49,0x0, 0x1, 0xb7,0x4b,0x0, 0x1, 0xb7,0x2f, -0x0, 0x1, 0xb7,0x2e,0x0, 0x1, 0xb7,0x2d,0x0, 0x1, 0xb7,0x2c,0x0, 0x1, 0xb7,0x31, -0x0, 0x1, 0xb7,0x30,0x0, 0x1, 0xb6,0xf9,0x0, 0x1, 0xb7,0xb, 0x0, 0x1, 0xb7,0xa, -0x0, 0x1, 0xb7,0x7, 0x0, 0x1, 0xb7,0x6, 0x0, 0x1, 0xb7,0x1, 0x0, 0x1, 0xb7,0x0, -0x0, 0x1, 0xb6,0xff,0x0, 0x1, 0xb6,0xfe,0x0, 0x1, 0xb6,0xfd,0x0, 0x1, 0xb6,0xfc, -0x0, 0x1, 0xb6,0xfb,0x0, 0x1, 0xb6,0xfa,0x0, 0x1, 0xb5,0x8f,0x0, 0x1, 0xb4,0xca, -0x0, 0x1, 0xb5,0xd1,0x0, 0x1, 0xb5,0xd0,0x0, 0x1, 0xb4,0xcd,0x0, 0x1, 0xb4,0xc8, -0x0, 0x1, 0xb7,0x48,0x0, 0x1, 0xb7,0x47,0x0, 0x1, 0xb2,0xc8,0x0, 0x0, 0xb9,0xc, -0x0, 0x4, 0x0, 0x20,0x0, 0x1, 0xc3,0xfc,0x0, 0x4, 0x10,0x53,0x0, 0x4, 0xc1,0x2e, -0x0, 0x0, 0xb7,0x22,0x0, 0x4, 0x10,0x4a,0x0, 0x0, 0xbc,0x90,0x0, 0x4, 0x11,0x3a, -0x0, 0x4, 0xc0,0x8c,0x0, 0x4, 0xc0,0x8e,0x0, 0x4, 0xbf,0xe6,0x0, 0x4, 0xbf,0xe4, -0x0, 0x4, 0xbf,0xf8,0x0, 0x4, 0x10,0x55,0x0, 0x4, 0xc1,0xa4,0x0, 0x4, 0x10,0x59, -0x0, 0x4, 0x73,0xa8,0x0, 0x8, 0x57,0x75,0x0, 0x8, 0x57,0x74,0x0, 0x4, 0x57,0x74, -0x0, 0x1, 0xc3,0xe8,0x0, 0x4, 0x0, 0x3c,0x0, 0x4, 0xbe,0x64,0x0, 0x4, 0x18,0x64, -0x0, 0x4, 0x57,0xd2,0x0, 0x4, 0x57,0x78,0x0, 0x4, 0xbd,0x64,0x0, 0x0, 0xbd,0x3c, -0x0, 0x0, 0xbd,0x14,0x0, 0x4, 0xbd,0x3c,0x0, 0x4, 0xbd,0x14,0x0, 0x4, 0xbe,0x5a, -0x0, 0x4, 0xb4,0x2a,0x0, 0x4, 0xb9,0x18,0x0, 0x4, 0x79,0xb4,0x0, 0x4, 0x79,0x38, -0x0, 0x4, 0x82,0xe8,0x0, 0x4, 0xbd,0x8, 0x0, 0x4, 0x7e,0x8c,0x0, 0x4, 0xb4,0x28, -0x0, 0x4, 0x7c,0x9c,0x0, 0x4, 0x7c,0x20,0x0, 0x4, 0x7b,0xa4,0x0, 0x4, 0xb6,0x22, -0x0, 0x4, 0xb8,0x1c,0x0, 0x4, 0x96,0xa0,0x0, 0x0, 0xbd,0x64,0x0, 0x4, 0x78,0xba, -0x0, 0x4, 0x7b,0x2a,0x0, 0x4, 0x7b,0x26,0x0, 0x4, 0x7a,0x2e,0x0, 0x4, 0x7a,0xac, -0x0, 0x4, 0x7a,0x30,0x0, 0x4, 0xbc,0xa, 0x0, 0x4, 0x7b,0x28,0x0, 0x4, 0xbd,0x10, -0x0, 0x4, 0xbc,0xc, 0x0, 0x4, 0xbc,0x60,0x0, 0x4, 0x82,0xec,0x0, 0x4, 0xbe,0x5c, -0x0, 0x4, 0x7e,0x10,0x0, 0x4, 0x7d,0x94,0x0, 0x4, 0xa0,0x78,0x0, 0x4, 0x7d,0x18, -0x0, 0x4, 0xaa,0x50,0x0, 0x4, 0x8c,0xc8,0x0, 0x4, 0x82,0xf0,0x0, 0x4, 0xbd,0xc, -0x0, 0x0, 0x82,0xf0,0x0, 0x4, 0x78,0xbc,0x0, 0x4, 0xbe,0x56,0x0, 0x4, 0x6e,0x28, -0x0, 0x4, 0xc0,0xec,0x0, 0x4, 0xc0,0x8c,0x0, 0x8, 0x58,0x30,0x0, 0x4, 0x58,0x30, -0x0, 0x0, 0xbc,0xec,0x0, 0x4, 0xc1,0xa3,0x0, 0x4, 0x10,0xe4,0x0, 0x4, 0x10,0xea, -0x0, 0x0, 0xb8,0xb6,0x0, 0x4, 0x23,0x84,0x0, 0x4, 0x19,0xac,0x0, 0x4, 0x12,0xd4, -0x0, 0x4, 0x13,0xb4,0x0, 0x0, 0xb8,0x16,0x0, 0x1, 0xc4,0x8, 0x0, 0x4, 0xc7,0x98, -0x0, 0x4, 0x0, 0x2d,0x0, 0x4, 0xc6,0x5c,0x0, 0x1, 0xc4,0x14,0x0, 0x4, 0x13,0xb6, -0x0, 0x4, 0x78,0xb4,0x0, 0x4, 0x6d,0xe0,0x0, 0x4, 0x6e,0x2c,0x0, 0x4, 0x11,0x38, -0x0, 0x4, 0xbe,0xaa,0x0, 0x8, 0xbe,0xc3,0x0, 0x8, 0xbe,0xc2,0x0, 0xa, 0xbe,0xc0, -0x0, 0x8, 0xbe,0xb4,0x0, 0xa, 0xbe,0x9d,0x0, 0x8, 0xbe,0x68,0x0, 0x4, 0xbe,0x68, -0x0, 0x4, 0x10,0xe9,0x0, 0x1, 0xbd,0x90,0x0, 0x1, 0xc3,0xec,0x0, 0x4, 0xc1,0xe0, -0x0, 0x4, 0xc1,0xe2,0x0, 0x4, 0xc7,0xa4,0x0, 0x4, 0x78,0x38,0x0, 0x4, 0x0, 0x1, -0x0, 0x1, 0xc4,0x10,0x0, 0x4, 0xc9,0x7e,0x0, 0x4, 0xc9,0x84,0x0, 0x4, 0xc9,0x82, -0x0, 0x4, 0xc9,0x80,0x0, 0x4, 0xc9,0x7c,0x0, 0x4, 0x6d,0xbc,0x0, 0x4, 0x14,0x0, -0x0, 0x8, 0x10,0x45,0x0, 0x4, 0x10,0x45,0x0, 0x4, 0xce,0x30,0x0, 0x4, 0xce,0xac, -0x0, 0x4, 0xce,0xb2,0x0, 0x4, 0xce,0xaa,0x0, 0x4, 0xcc,0x20,0x0, 0x4, 0xce,0xa8, -0x0, 0x4, 0xc1,0xe3,0x0, 0x4, 0x78,0x74,0x0, 0x4, 0x60,0x36,0x0, 0x4, 0x5f,0x7c, -0x0, 0x4, 0xc7,0xb0,0x0, 0x4, 0x0, 0x40,0x0, 0x4, 0xc2,0xc, 0x0, 0x4, 0x12,0xd6, -0x0, 0x4, 0x78,0xb8,0x0, 0x4, 0xc6,0x7c,0x0, 0x4, 0x11,0x3f,0x0, 0x4, 0x10,0x15, -0x0, 0x4, 0x10,0x2, 0x0, 0x4, 0x16,0x75,0x0, 0x4, 0xc1,0xe4,0x0, 0x4, 0xc1,0xe3, -0x0, 0x4, 0x13,0xba,0x0, 0x4, 0x0, 0x2b,0x0, 0x0, 0xb8,0x60,0x0, 0x4, 0x6d,0xe2, -0x0, 0x4, 0x46,0xf4,0x0, 0x4, 0xc1,0xe8,0x0, 0x4, 0xc3,0xc4,0x0, 0x8, 0x10,0x46, -0x0, 0x4, 0x10,0x46,0x0, 0x4, 0xc1,0x3a,0x0, 0x8, 0xc0,0xb4,0x0, 0x4, 0xc1,0x34, -0x0, 0x8, 0x10,0x43,0x0, 0x4, 0x10,0x43,0x0, 0x4, 0x0, 0x0, 0x0, 0x8, 0x0, 0x39, -0x0, 0x4, 0x0, 0x39,0x0, 0x4, 0x10,0xe6,0x0, 0x4, 0x78,0xb9,0x0, 0x4, 0x12,0xd5, -0x0, 0x8, 0x64,0x0, 0x0, 0x4, 0x15,0x6a,0x0, 0x4, 0x11,0x2a,0x0, 0x4, 0x11,0x37, -0x0, 0x4, 0x0, 0x25,0x0, 0x0, 0xb7,0xc0,0x0, 0x4, 0x75,0xf0,0x0, 0x4, 0x76,0x9b, -0x0, 0x4, 0x76,0x9a,0x0, 0x4, 0x76,0xa0,0x0, 0x4, 0x76,0xa1,0x0, 0x4, 0x76,0x9e, -0x0, 0x4, 0x76,0xa2,0x0, 0x4, 0x76,0xa3,0x0, 0x4, 0x75,0xb4,0x0, 0x4, 0x74,0x74, -0x0, 0x4, 0x75,0x14,0x0, 0x4, 0x76,0x9d,0x0, 0x4, 0x76,0x9f,0x0, 0x4, 0x76,0x99, -0x0, 0x4, 0x73,0xd4,0x0, 0x4, 0x76,0x98,0x0, 0x4, 0x13,0xc0,0x0, 0x4, 0x52,0x6c, -0x0, 0x4, 0x52,0x6a,0x0, 0x4, 0x52,0x68,0x0, 0x4, 0x51,0xec,0x0, 0x4, 0x51,0x70, -0x0, 0x4, 0x50,0xf4,0x0, 0x4, 0x47,0x1c,0x0, 0x4, 0xbe,0xc4,0x0, 0x4, 0x0, 0x10, -0x0, 0x4, 0x52,0x98,0x0, 0x4, 0x52,0x70,0x0, 0x1, 0xc4,0xc, 0x0, 0x4, 0x58,0x34, -0x0, 0x4, 0x0, 0x2, 0x0, 0x4, 0x10,0x8, 0x0, 0x4, 0x10,0xe2,0x0, 0x4, 0x12,0xd9, -0x0, 0x4, 0x6d,0xe4,0x0, 0x0, 0xb9,0x66,0x0, 0x0, 0xb9,0xce,0x0, 0x4, 0xc2,0x6, -0x0, 0x4, 0x11,0x2c,0x0, 0x8, 0x11,0x2c,0x0, 0x4, 0x6d,0xe6,0x0, 0x1, 0xc4,0x18, -0x0, 0x4, 0x10,0x5, 0x0, 0x8, 0x77,0x8b,0x0, 0x4, 0x77,0x65,0x0, 0x4, 0x77,0x59, -0x0, 0x4, 0x77,0x4d,0x0, 0x4, 0x78,0x20,0x0, 0x4, 0x77,0x89,0x0, 0x4, 0x77,0x87, -0x0, 0x4, 0x77,0x85,0x0, 0x4, 0x77,0x83,0x0, 0x4, 0x77,0x81,0x0, 0x4, 0x77,0xad, -0x0, 0x4, 0x78,0x16,0x0, 0x4, 0x78,0xa, 0x0, 0x4, 0x77,0xfe,0x0, 0x4, 0x77,0xf2, -0x0, 0x4, 0x77,0xe6,0x0, 0x4, 0x77,0xda,0x0, 0x4, 0x77,0xa9,0x0, 0x4, 0x78,0x14, -0x0, 0x4, 0x78,0x8, 0x0, 0x4, 0x77,0xfc,0x0, 0x4, 0x77,0xf0,0x0, 0x4, 0x77,0xe4, -0x0, 0x4, 0x77,0xd8,0x0, 0x4, 0x77,0xd1,0x0, 0x4, 0x77,0x8b,0x0, 0x4, 0x77,0x46, -0x0, 0x4, 0x77,0xd5,0x0, 0x4, 0x77,0xd4,0x0, 0x4, 0x77,0xd2,0x0, 0x4, 0x77,0xa8, -0x0, 0x4, 0x77,0x3, 0x0, 0x4, 0x76,0xef,0x0, 0x8, 0x77,0xac,0x0, 0x8, 0x77,0xab, -0x0, 0xa, 0x77,0x73,0x0, 0xa, 0x77,0x7c,0x0, 0x8, 0x77,0xa2,0x0, 0x4, 0x76,0xc5, -0x0, 0x4, 0x77,0x8f,0x0, 0x4, 0x76,0xb1,0x0, 0x4, 0x77,0xac,0x0, 0x4, 0x77,0xab, -0x0, 0x4, 0x77,0x98,0x0, 0x4, 0x76,0xa8,0x0, 0x4, 0x53,0x10,0x0, 0x4, 0x53,0x38, -0x0, 0x4, 0x10,0x54,0x0, 0x4, 0x14,0x24,0x0, 0x4, 0xc3,0xec,0x0, 0x4, 0xc1,0x30, -0x0, 0x1, 0xc4,0x4, 0x0, 0x4, 0x6d,0xb8,0x0, 0x1, 0xc4,0x0, 0x0, 0x4, 0x78,0x1c, -0x0, 0x4, 0x59,0x34,0x0, 0xa, 0x6d,0xe7,0x0, 0x4, 0x6d,0xe7,0x0, 0x4, 0x6e,0x30, -0x0, 0x4, 0x11,0x3e,0x0, 0x1, 0xc4,0x2c,0x0, 0x4, 0x13,0xb8,0x0, 0x4, 0x53,0x84, -0x0, 0x4, 0x6c,0x0, 0x0, 0x4, 0x10,0x5a,0x0, 0x4, 0x59,0x36,0x0, 0x4, 0x0, 0x44, -0x0, 0x4, 0x10,0x0, 0x0, 0x4, 0xc9,0x88,0x0, 0x4, 0x10,0x4e,0x0, 0x4, 0x0, 0x18, -0x0, 0x8, 0x59,0x38,0x0, 0x4, 0x59,0x38,0x0, 0x1, 0xb8,0x84,0x0, 0x4, 0x12,0xd8, -0x0, 0x4, 0x17,0x45,0x0, 0x0, 0xce,0xb4,0x0, 0x4, 0xce,0xb4,0x0, 0x4, 0xc4,0x34, -0x0, 0x8, 0x0, 0x27,0x0, 0x4, 0x0, 0x27,0x0, 0x4, 0x59,0x3a,0x0, 0x4, 0x6c,0xb0, -0x0, 0x4, 0x16,0x73,0x0, 0x0, 0xb7,0x6c,0x0, 0x1, 0xc3,0x2c,0x0, 0x4, 0x5b,0x40, -0x0, 0x4, 0x10,0xe8,0x0, 0x4, 0x15,0x64,0x0, 0x4, 0x61,0x1e,0x0, 0x4, 0x60,0x64, -0x0, 0x4, 0x59,0x40,0x0, 0x4, 0x10,0x7, 0x0, 0x4, 0xc4,0x38,0x0, 0x4, 0x6e,0x26, -0x0, 0x4, 0x0, 0x1c,0x0, 0x1, 0xc3,0xe4,0x0, 0x4, 0x0, 0x14,0x0, 0x4, 0x59,0x44, -0x0, 0x4, 0x59,0x48,0x0, 0x4, 0xc4,0x44,0x0, 0x4, 0x6e,0x34,0x0, 0x4, 0x6d,0xf8, -0x0, 0x4, 0x6d,0xec,0x0, 0x4, 0x5f,0x4, 0x0, 0x4, 0x5e,0xc6,0x0, 0x4, 0x5e,0x88, -0x0, 0x4, 0x6e,0x38,0x0, 0x0, 0xbc,0x32,0x0, 0x4, 0x12,0xe0,0x0, 0x0, 0x68,0x0, -0x0, 0x4, 0x68,0x0, 0x0, 0x4, 0xc7,0x8a,0x0, 0x4, 0x10,0xeb,0x0, 0x4, 0x0, 0x32, -0x0, 0x4, 0x0, 0x31,0x0, 0x4, 0x0, 0x30,0x0, 0x8, 0x0, 0x38,0x0, 0x4, 0x0, 0x38, -0x0, 0x8, 0x59,0x4c,0x0, 0x4, 0x59,0x4c,0x0, 0x4, 0x0, 0x8, 0x0, 0x4, 0x11,0x28, -0x0, 0x4, 0xc4,0x54,0x0, 0x4, 0x5f,0x68,0x0, 0x4, 0x5f,0x56,0x0, 0x4, 0x5f,0x44, -0x0, 0x4, 0x12,0xd7,0x0, 0x4, 0x0, 0x4, 0x0, 0x4, 0x10,0x14,0x0, 0x4, 0x12,0xde, -0x0, 0x4, 0x10,0x4c,0x0, 0x4, 0x53,0xae,0x0, 0x4, 0x53,0xac,0x0, 0x4, 0x6d,0xe8, -0x0, 0x4, 0x18,0x68,0x0, 0x0, 0x6c,0xb8,0x0, 0x4, 0x6c,0xb8,0x0, 0x4, 0xc7,0x8b, -0x0, 0x4, 0xc0,0xf0,0x0, 0x4, 0x6d,0xe9,0x0, 0x4, 0x10,0x52,0x0, 0x4, 0xc2,0x8, -0x0, 0x8, 0x16,0x76,0x0, 0x4, 0x16,0x76,0x0, 0x1, 0xc2,0x9c,0x7f,0xff,0xff,0xff, -0xff,0xfc,0x0, 0x36,0x0, 0x4, 0x38,0x0, 0x55,0x50,0x47,0x52,0x0, 0x4, 0x38,0x4, -0x41,0x44,0x45,0x20,0x0, 0x4, 0x38,0x8, 0x66,0xcc,0x99,0x33,0x0, 0x4, 0x38,0xc, -0x46,0x4c,0x41,0x47,0x0, 0xe, 0xa6,0x0, 0x38,0x0, 0x2, 0x0, 0x90,0x2, 0x0, 0xa, -0x5, 0x5, 0x0, 0x3f,0x7f,0xff,0xff,0xff,0xe7,0x83,0x80,0x0, 0x2, 0x10,0x42,0x43, -0x2, 0x20,0x4, 0x8a,0x5, 0xf2,0x24,0x1d,0x1c,0x32,0xa, 0x6e,0x1, 0xc9,0x59,0x19, -0x7, 0x84,0x9, 0x76,0x31,0x8c,0x56,0xaf,0x1, 0xff,0xff,0xff,0x3f,0xff,0xff,0xff, -0x33,0x22,0x20,0x0, 0x80,0xf0,0x2, 0x3, 0xe0,0x0, 0x3, 0xc0,0x11,0x9a,0x81,0xe0, -0x5a,0x0, 0x2, 0x29,0x0, 0x50,0x1, 0x0, 0x90,0x1, 0x0, 0x20,0x0, 0x3f,0xff,0xff, -0x52,0x0, 0x2, 0x29,0x90,0x2, 0x0, 0x20,0x0, 0x11,0x7, 0x77,0x0, 0x5, 0xff,0xff, -0x12,0x34,0x56,0x78,0x5, 0xb8,0xd8,0x0, 0x1, 0xe8,0x48,0x0, 0x0, 0xf, 0x42,0x40, -0x3, 0xd0,0x90,0x0, 0x0, 0x18,0x69,0xff,0x39,0x38,0x70,0x0, 0x7f,0xff,0xff,0xff, -0x21,0x27,0x2a,0x2d,0x5, 0x5, 0x0, 0x3f,0x7f,0xff,0xff,0xff,0xe7,0x83,0x80,0x0, -0x2, 0x10,0x42,0x43,0x2, 0x20,0x4, 0x8a,0x5, 0xf2,0x24,0x1d,0x1c,0x32,0xa, 0x6e, -0x1, 0xc9,0x59,0x19,0x7, 0x84,0x9, 0x76,0x31,0x8c,0x56,0xaf,0x0, 0x13,0xd, 0x9e, -0x7f,0xff,0xff,0xff,0x0, 0xf, 0xff,0xff,0x80,0x0, 0x4, 0x0, 0x80,0x0, 0x4, 0x20, -0x0, 0x2, 0x0, 0xb, 0x3f,0xff,0xff,0xfc,0xf, 0xff,0xff,0xff,0x1f,0xff,0xff,0xff, -0x1f,0xff,0xff,0xff,0xf, 0xff,0xff,0xff,0x0, 0xff,0xff,0xff,0x0, 0xf, 0xff,0xff, -0xf, 0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x0, 0xf, 0xff,0xff,0xf, 0xff,0xff,0xff, -0x0, 0x0, 0x0, 0x0, \ No newline at end of file diff --git a/drivers/input/touchscreen/focaltech_touch/include/firmware/fw_sample.i b/drivers/input/touchscreen/focaltech_touch/include/firmware/fw_sample.i deleted file mode 100755 index e69de29bb2d1d6..00000000000000 diff --git a/drivers/input/touchscreen/focaltech_touch_ft3658u/focaltech_config.h b/drivers/input/touchscreen/focaltech_touch_ft3658u/focaltech_config.h deleted file mode 100644 index 656bb83b58f4be..00000000000000 --- a/drivers/input/touchscreen/focaltech_touch_ft3658u/focaltech_config.h +++ /dev/null @@ -1,277 +0,0 @@ -/* - * - * FocalTech TouchScreen driver. - * - * Copyright (c) 2012-2019, FocalTech Systems, Ltd., all rights reserved. - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - */ - -/************************************************************************ -* -* File Name: focaltech_config.h -* -* Author: Focaltech Driver Team -* -* Created: 2016-08-08 -* -* Abstract: global configurations -* -* Version: v1.0 -* -************************************************************************/ -#ifndef _LINUX_FOCLATECH_CONFIG_H_ -#define _LINUX_FOCLATECH_CONFIG_H_ - -/**************************************************/ -/****** G: A, I: B, S: C, U: D ******************/ -/****** chip type defines, do not modify *********/ -#define _FT8716 0x87160805 -#define _FT8736 0x87360806 -#define _FT8006M 0x80060807 -#define _FT8607 0x86070809 -#define _FT8006U 0x8006D80B -#define _FT8006S 0x8006A80B -#define _FT8613 0x8613080C -#define _FT8719 0x8719080D -#define _FT8739 0x8739080E -#define _FT8615 0x8615080F -#define _FT8201 0x82010810 -#define _FT8006P 0x86220811 -#define _FT7251 0x72510812 -#define _FT7252 0x72520813 -#define _FT8613S 0x8613C814 -#define _FT8756 0x87560815 -#define _FT8302 0x83020816 -#define _FT8009 0x80090817 -#define _FT8656 0x86560818 -#define _FT8006S_AA 0x86320819 -#define _FT7250 0x7250081A -#define _FT7120 0x7120081B -#define _FT8720 0x8720081C -#define _FT8016 0x8016081D - - -#define _FT5416 0x54160402 -#define _FT5426 0x54260402 -#define _FT5435 0x54350402 -#define _FT5436 0x54360402 -#define _FT5526 0x55260402 -#define _FT5526I 0x5526B402 -#define _FT5446 0x54460402 -#define _FT5346 0x53460402 -#define _FT5446I 0x5446B402 -#define _FT5346I 0x5346B402 -#define _FT7661 0x76610402 -#define _FT7511 0x75110402 -#define _FT7421 0x74210402 -#define _FT7681 0x76810402 -#define _FT3C47U 0x3C47D402 -#define _FT3417 0x34170402 -#define _FT3517 0x35170402 -#define _FT3327 0x33270402 -#define _FT3427 0x34270402 -#define _FT7311 0x73110402 -#define _FT5526_V00 0x5526C402 - -#define _FT5626 0x56260401 -#define _FT5726 0x57260401 -#define _FT5826B 0x5826B401 -#define _FT5826S 0x5826C401 -#define _FT7811 0x78110401 -#define _FT3D47 0x3D470401 -#define _FT3617 0x36170401 -#define _FT3717 0x37170401 -#define _FT3817B 0x3817B401 -#define _FT3517U 0x3517D401 - -#define _FT6236U 0x6236D003 -#define _FT6336G 0x6336A003 -#define _FT6336U 0x6336D003 -#define _FT6436U 0x6436D003 -#define _FT6436T 0x6436E003 - -#define _FT3267 0x32670004 -#define _FT3367 0x33670004 - -#define _FT3327DQQ_XXX 0x3327D482 -#define _FT5446DQS_XXX 0x5446D482 - -#define _FT3427_003 0x3427D482 -#define _FT3427G_003 0x3427A482 -#define _FT5446_003 0x5446D482 -#define _FT5446_Q03 0x5446C482 -#define _FT5446_P03 0x5446A481 -#define _FT5426_003 0x5426D482 -#define _FT5526_003 0x5526D482 - -#define _FT3518 0x35180481 -#define _FT3518U 0x3518D481 -#define _FT3558 0x35580481 -#define _FT3528 0x35280481 -#define _FT5536 0x55360481 -#define _FT5536L 0x5536E481 -#define _FT3418 0x34180481 - -#define _FT5446U 0x5446D083 -#define _FT5456U 0x5456D083 -#define _FT3417U 0x3417D083 -#define _FT5426U 0x5426D083 -#define _FT3428 0x34280083 -#define _FT3437U 0x3437D083 - -#define _FT7302 0x73020084 -#define _FT7202 0x72020084 -#define _FT3308 0x33080084 -#define _FT6446 0x64460084 - -#define _FT6346U 0x6346D085 -#define _FT6346G 0x6346A085 -#define _FT3067 0x30670085 -#define _FT3068 0x30680085 -#define _FT3168 0x31680085 -#define _FT3268 0x32680085 -#define _FT6146 0x61460085 - -#define _FT5726_003 0x5726D486 -#define _FT5726_V03 0x5726C486 - -#define _FT3618 0x36180487 -#define _FT5646 0x56460487 -#define _FT3A58 0x3A580487 -#define _FT3B58 0x3B580487 -#define _FT3D58 0x3D580487 -#define _FT5936 0x59360487 -#define _FT5A36 0x5A360487 -#define _FT5B36 0x5B360487 -#define _FT5D36 0x5D360487 -#define _FT5946 0x59460487 -#define _FT5A46 0x5A460487 -#define _FT5B46 0x5B460487 -#define _FT5D46 0x5D460487 - -#define _FT3658U 0x3658D488 - -/******************* Enables *********************/ -/*********** 1 to enable, 0 to disable ***********/ - -/* - * show debug log info - * enable it for debug, disable it for release - */ -#define FTS_DEBUG_EN 0 - -/* - * Linux MultiTouch Protocol - * 1: Protocol B(default), 0: Protocol A - */ -#define FTS_MT_PROTOCOL_B_EN 1 - -/* - * Report Pressure in multitouch - * 1:enable(default),0:disable -*/ -#define FTS_REPORT_PRESSURE_EN 1 - -/* - * Gesture function enable - * default: disable - */ -#define FTS_GESTURE_EN 0 - -/* - * ESD check & protection - * default: disable - */ -#define FTS_ESDCHECK_EN 0 - -/* - * Production test enable - * 1: enable, 0:disable(default) - */ -#define FTS_TEST_EN 0 - -/* - * Pinctrl enable - * default: disable - */ -#define FTS_PINCTRL_EN 1 - -/* - * Customer power enable - * enable it when customer need control TP power - * default: disable - */ -#define FTS_POWER_SOURCE_CUST_EN 1 - -/****************************************************/ - -/********************** Upgrade ****************************/ -/* - * auto upgrade - */ -#define FTS_AUTO_UPGRADE_EN 1 - -/* - * auto upgrade for lcd cfg - */ -#define FTS_AUTO_LIC_UPGRADE_EN 0 - -/* - * Numbers of modules support - */ -#define FTS_GET_MODULE_NUM 0 - -/* - * module_id: mean vendor_id generally, also maybe gpio or lcm_id... - * If means vendor_id, the FTS_MODULE_ID = PANEL_ID << 8 + VENDOR_ID - * FTS_GET_MODULE_NUM == 0/1, no check module id, you may ignore them - * FTS_GET_MODULE_NUM >= 2, compatible with FTS_MODULE2_ID - * FTS_GET_MODULE_NUM >= 3, compatible with FTS_MODULE3_ID - */ -#define FTS_MODULE_ID 0x0000 -#define FTS_MODULE2_ID 0x0000 -#define FTS_MODULE3_ID 0x0000 - -/* - * Need set the following when get firmware via firmware_request() - * For example: if module'vendor is tianma, - * #define FTS_MODULE_NAME "tianma" - * then file_name will be "focaltech_ts_fw_tianma" - * You should rename fw to "focaltech_ts_fw_tianma", and push it into - * etc/firmware or by customers - */ -#define FTS_MODULE_NAME "otter" -#define FTS_MODULE2_NAME "" -#define FTS_MODULE3_NAME "" - -/* - * FW.i file for auto upgrade, you must replace it with your own - * define your own fw_file, the sample one to be replaced is invalid - * NOTE: if FTS_GET_MODULE_NUM > 1, it's the fw corresponding with FTS_VENDOR_ID - */ -#define FTS_UPGRADE_FW_FILE "include/firmware/fw_sample.i" - -/* - * if FTS_GET_MODULE_NUM >= 2, fw corrsponding with FTS_VENDOR_ID2 - * define your own fw_file, the sample one is invalid - */ -#define FTS_UPGRADE_FW2_FILE "include/firmware/fw_sample.i" - -/* - * if FTS_GET_MODULE_NUM >= 3, fw corrsponding with FTS_VENDOR_ID3 - * define your own fw_file, the sample one is invalid - */ -#define FTS_UPGRADE_FW3_FILE "include/firmware/fw_sample.i" - -/*********************************************************/ - -#endif /* _LINUX_FOCLATECH_CONFIG_H_ */ From f3420f73bfef0735b415bec5e11de1cabee629cd Mon Sep 17 00:00:00 2001 From: Eugene Lepshy Date: Sat, 11 Oct 2025 19:52:08 +0300 Subject: [PATCH 12/12] arm64: configs: create separate nothing-spacewar defconfig Signed-off-by: Eugene Lepshy --- arch/arm64/configs/spacewar_defconfig | 943 ++++++++++++++++++++++++++ 1 file changed, 943 insertions(+) create mode 100644 arch/arm64/configs/spacewar_defconfig diff --git a/arch/arm64/configs/spacewar_defconfig b/arch/arm64/configs/spacewar_defconfig new file mode 100644 index 00000000000000..123086c3197443 --- /dev/null +++ b/arch/arm64/configs/spacewar_defconfig @@ -0,0 +1,943 @@ +CONFIG_LOCALVERSION="-sc7280" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_SYSVIPC=y +CONFIG_POSIX_MQUEUE=y +CONFIG_AUDIT=y +CONFIG_NO_HZ_IDLE=y +CONFIG_HIGH_RES_TIMERS=y +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_JIT=y +CONFIG_PREEMPT=y +CONFIG_IRQ_TIME_ACCOUNTING=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_PSI=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_NUMA_BALANCING=y +CONFIG_MEMCG=y +CONFIG_BLK_CGROUP=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_RT_GROUP_SCHED=y +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_BPF=y +CONFIG_USER_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_KALLSYMS_ALL=y +CONFIG_PROFILING=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_AIROHA=y +CONFIG_ARCH_AXIADO=y +CONFIG_ARCH_BLAIZE=y +CONFIG_ARCH_CIX=y +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_SOPHGO=y +# CONFIG_CAVIUM_ERRATUM_22375 is not set +# CONFIG_CAVIUM_ERRATUM_23144 is not set +# CONFIG_CAVIUM_ERRATUM_23154 is not set +# CONFIG_CAVIUM_ERRATUM_27456 is not set +# CONFIG_CAVIUM_ERRATUM_30115 is not set +# CONFIG_CAVIUM_TX2_ERRATUM_219 is not set +# CONFIG_FUJITSU_ERRATUM_010001 is not set +# CONFIG_HISILICON_ERRATUM_161600802 is not set +# CONFIG_NVIDIA_CARMEL_CNP_ERRATUM is not set +# CONFIG_ROCKCHIP_ERRATUM_3588001 is not set +# CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set +CONFIG_SCHED_MC=y +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_SMT=y +CONFIG_NUMA=y +CONFIG_XEN=y +CONFIG_COMPAT=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_PM_AUTOSLEEP=y +CONFIG_PM_WAKELOCKS=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_ENERGY_MODEL=y +CONFIG_CPU_IDLE=y +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPUFREQ_DT=y +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_ARM_QCOM_CPUFREQ_NVMEM=y +CONFIG_ARM_QCOM_CPUFREQ_HW=y +CONFIG_ARM_SCMI_CPUFREQ=y +CONFIG_MODULES=y +CONFIG_MODULE_UNLOAD=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_MISC=m +CONFIG_ZSMALLOC_STAT=y +# CONFIG_COMPAT_BRK is not set +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_KSM=y +CONFIG_MEMORY_FAILURE=y +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_CMA=y +CONFIG_NET=y +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_DIAG=y +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +CONFIG_IPV6=m +CONFIG_NETFILTER=y +CONFIG_BRIDGE_NETFILTER=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=y +CONFIG_NFT_CT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_NAT=m +CONFIG_NFT_REJECT=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_IP_VS=m +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_HTB=y +CONFIG_NET_SCH_PRIO=y +CONFIG_NET_SCH_MULTIQ=y +CONFIG_NET_CLS_CGROUP=m +CONFIG_NETLINK_DIAG=m +CONFIG_HSR=m +CONFIG_NET_SWITCHDEV=y +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_CGROUP_NET_PRIO=y +CONFIG_BT=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_HIDP=m +CONFIG_BT_LEDS=y +# CONFIG_BT_DEBUGFS is not set +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_QCOMSMD=m +CONFIG_BT_NXPUART=m +CONFIG_CFG80211=m +CONFIG_MAC80211=m +CONFIG_RFKILL=m +CONFIG_RFKILL_GPIO=m +CONFIG_NFC=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_PAGE_POOL_STATS=y +CONFIG_PCI=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +CONFIG_PCI_IOV=y +CONFIG_HOTPLUG_PCI=y +CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCIE_MEDIATEK_GEN3=m +CONFIG_PCIE_QCOM=y +CONFIG_PCI_ENDPOINT=y +CONFIG_PCI_ENDPOINT_CONFIGFS=y +CONFIG_PCI_EPF_TEST=m +CONFIG_UEVENT_HELPER=y +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_LOADER_COMPRESS_ZSTD=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_MHI_BUS_PCI_GENERIC=m +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_IMX_SCMI_BBM_EXT=y +CONFIG_ARM_SCPI_PROTOCOL=y +CONFIG_ARM_SDE_INTERFACE=y +CONFIG_GOOGLE_FIRMWARE=y +CONFIG_GOOGLE_CBMEM=m +CONFIG_GOOGLE_COREBOOT_TABLE=m +CONFIG_EFI_CAPSULE_LOADER=y +CONFIG_QCOM_QSEECOM=y +CONFIG_QCOM_QSEECOM_UEFISECAPP=y +CONFIG_GNSS=m +CONFIG_OF_OVERLAY=y +CONFIG_ZRAM=m +CONFIG_ZRAM_MEMORY_TRACKING=y +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_RAM=y +CONFIG_VIRTIO_BLK=y +CONFIG_QCOM_COINCELL=m +CONFIG_QCOM_FASTRPC=m +CONFIG_PCI_ENDPOINT_TEST=m +CONFIG_EEPROM_AT24=y +CONFIG_MISC_RP1=m +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=y +# CONFIG_SCSI_PROC_FS is not set +CONFIG_BLK_DEV_SD=y +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_MD=y +CONFIG_BLK_DEV_DM=y +CONFIG_DM_CRYPT=y +CONFIG_DM_THIN_PROVISIONING=y +CONFIG_NETDEVICES=y +CONFIG_DUMMY=m +CONFIG_WIREGUARD=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN=m +CONFIG_VXLAN=m +CONFIG_TUN=y +CONFIG_VETH=m +CONFIG_VIRTIO_NET=y +CONFIG_MHI_NET=m +CONFIG_ENA_ETHERNET=m +CONFIG_AMD_XGBE=y +CONFIG_BCMGENET=m +CONFIG_SYSTEMPORT=m +CONFIG_THUNDER_NIC_PF=y +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_MVMDIO=y +CONFIG_SKY2=y +CONFIG_NET_VENDOR_MEDIATEK=y +CONFIG_NET_MEDIATEK_STAR_EMAC=m +# CONFIG_NET_VENDOR_NI is not set +CONFIG_QCOM_EMAC=m +CONFIG_RMNET=m +CONFIG_R8169=m +CONFIG_SMSC911X=y +# CONFIG_NET_VENDOR_SOCIONEXT is not set +CONFIG_QCOM_IPA=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM54140_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_MARVELL_10G_PHY=y +CONFIG_MARVELL_88Q2XXX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_DP83869_PHY=m +CONFIG_DP83TD510_PHY=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_GPIO=y +CONFIG_PCS_XPCS=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_MCS7830=m +CONFIG_ATH10K=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_SNOC=m +CONFIG_WCN36XX=m +CONFIG_ATH11K=m +CONFIG_ATH11K_AHB=m +CONFIG_ATH11K_PCI=m +CONFIG_ATH12K=m +CONFIG_IWLWIFI=m +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MT7921E=m +CONFIG_RSI_91X=m +CONFIG_WWAN=m +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=y +CONFIG_KEYBOARD_GPIO=y +CONFIG_KEYBOARD_IMX_BBM_SCMI=y +CONFIG_KEYBOARD_CROS_EC=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_GOODIX_BERLIN_SPI=m +CONFIG_TOUCHSCREEN_FTS_SPI=m +# CONFIG_TOUCHSCREEN_FOCALTECH_FT3658U is not set +CONFIG_INPUT_MISC=y +CONFIG_INPUT_PM8941_PWRKEY=y +CONFIG_INPUT_PM8XXX_VIBRATOR=m +CONFIG_INPUT_UINPUT=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_RK805_PWRKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +# CONFIG_SERIO_SERPORT is not set +CONFIG_SERIO_AMBAKMI=y +CONFIG_LEGACY_PTY_COUNT=16 +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_NR_UARTS=8 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_DW=y +CONFIG_SERIAL_OF_PLATFORM=y +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=y +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y +CONFIG_NULL_TTY=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_HW_RANDOM_CN10K=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=y +CONFIG_I2C_MUX_PINCTRL=m +CONFIG_I2C_CADENCE=m +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +CONFIG_I2C_GPIO=m +CONFIG_I2C_QCOM_CCI=m +CONFIG_I2C_QCOM_GENI=y +CONFIG_I2C_QUP=y +CONFIG_I2C_CROS_EC_TUNNEL=y +CONFIG_I2C_SLAVE=y +CONFIG_SPI=y +CONFIG_SPI_MEM=y +CONFIG_SPI_QCOM_QSPI=m +CONFIG_SPI_QUP=y +CONFIG_SPI_QCOM_GENI=y +CONFIG_SPI_SPIDEV=m +CONFIG_SPMI=y +CONFIG_PINCTRL_DA9062=m +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6779=y +CONFIG_PINCTRL_MT6795=y +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT6893=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT7981=y +CONFIG_PINCTRL_MT7986=y +CONFIG_PINCTRL_MT7988=y +CONFIG_PINCTRL_MT8167=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8186=y +CONFIG_PINCTRL_MT8188=y +CONFIG_PINCTRL_MT8189=y +CONFIG_PINCTRL_MT8192=y +CONFIG_PINCTRL_MT8195=y +CONFIG_PINCTRL_MT8196=y +CONFIG_PINCTRL_MT8365=y +CONFIG_PINCTRL_MT8516=y +CONFIG_PINCTRL_MSM=y +CONFIG_PINCTRL_IPQ5424=y +CONFIG_PINCTRL_QCS615=y +CONFIG_PINCTRL_QCS8300=y +CONFIG_PINCTRL_SC7280=y +CONFIG_PINCTRL_SM8750=y +CONFIG_PINCTRL_QCOM_SPMI_PMIC=y +CONFIG_PINCTRL_LPASS_LPI=y +CONFIG_PINCTRL_SC7280_LPASS_LPI=y +CONFIG_PINCTRL_SOPHGO_SG2000=y +CONFIG_GPIO_SYSCON=y +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_ADP5585=m +CONFIG_POWER_RESET_MSM=y +CONFIG_POWER_RESET_QCOM_PON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_SYSCON_REBOOT_MODE=y +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_BATTERY_QCOM_BATTMGR=m +CONFIG_BATTERY_BQ27XXX=y +CONFIG_SENSORS_ARM_SCMI=y +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_TMP102=m +CONFIG_THERMAL=y +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_CPU_THERMAL=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_THERMAL_EMULATION=y +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_QCOM_TSENS=y +CONFIG_QCOM_SPMI_ADC_TM5=y +CONFIG_QCOM_SPMI_TEMP_ALARM=y +CONFIG_QCOM_LMH=m +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +CONFIG_QCOM_WDT=m +CONFIG_PM8916_WATCHDOG=m +CONFIG_MFD_ADP5585=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_MAX77759=m +CONFIG_MFD_SPMI_PMIC=y +CONFIG_MFD_RK8XX_I2C=y +CONFIG_MFD_RK8XX_SPI=y +CONFIG_MFD_SEC_I2C=y +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REGULATOR_ARM_SCMI=y +CONFIG_REGULATOR_CROS_EC=y +CONFIG_REGULATOR_DA9211=m +CONFIG_REGULATOR_GPIO=y +CONFIG_REGULATOR_LP873X=m +CONFIG_REGULATOR_MAX20411=m +CONFIG_REGULATOR_PWM=y +CONFIG_REGULATOR_QCOM_PM8008=m +CONFIG_REGULATOR_QCOM_REFGEN=m +CONFIG_REGULATOR_QCOM_RPMH=y +CONFIG_REGULATOR_QCOM_SMD_RPM=y +CONFIG_REGULATOR_QCOM_SPMI=y +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_S2MPS11=y +CONFIG_REGULATOR_VCTRL=m +CONFIG_RC_CORE=m +CONFIG_RC_DEVICES=y +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_CEC_NXP_TDA9950=m +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_USB_SUPPORT=y +CONFIG_USB_VIDEO_CLASS=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_QCOM_CAMSS=m +CONFIG_VIDEO_QCOM_IRIS=m +CONFIG_VIDEO_QCOM_VENUS=m +CONFIG_VIDEO_IMX471=m +CONFIG_VIDEO_S5KJN1=m +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_DW9800=m +CONFIG_DRM=y +CONFIG_DRM_HDLCD=m +CONFIG_DRM_MSM=y +CONFIG_DRM_PANEL_HIMAX_HX8279=m +CONFIG_DRM_PANEL_HIMAX_HX83112A=m +CONFIG_DRM_PANEL_HIMAX_HX83112B=m +CONFIG_DRM_PANEL_KHADAS_TS050=m +CONFIG_DRM_PANEL_NOVATEK_NT36672E=m +CONFIG_DRM_PANEL_RAYDIUM_RM692E5=m +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=m +CONFIG_DRM_PANEL_STARTEK_KD070FHFID015=m +CONFIG_DRM_PANEL_EDP=m +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_VISIONOX_RM692E5=m +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_ITE_IT6263=m +CONFIG_DRM_SIMPLE_BRIDGE=m +CONFIG_DRM_TOSHIBA_TC358767=m +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_PANTHOR=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_GUD=m +CONFIG_DRM_POWERVR=m +CONFIG_FB=y +CONFIG_FB_EFI=y +CONFIG_FB_SIMPLE=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +CONFIG_SOUND=m +CONFIG_SND=m +CONFIG_SND_ALOOP=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_QMI=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_USB=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_QCOM=m +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_QDSP6_USB=m +CONFIG_SND_SOC_MSM8996=m +CONFIG_SND_SOC_SDM845=m +CONFIG_SND_SOC_SM8250=m +CONFIG_SND_SOC_SC8280XP=m +CONFIG_SND_SOC_SC7180=m +CONFIG_SND_SOC_SC7280=m +CONFIG_SND_SOC_X1E80100=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_OF=m +CONFIG_SND_SOC_SOF_MTK_TOPLEVEL=y +CONFIG_SND_SOC_AK4619=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_ES8326=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_TFA9872=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_WCD939X_SDW=m +CONFIG_SND_SOC_WSA883X=m +CONFIG_SND_SOC_WSA884X=m +CONFIG_SND_SOC_MT6357=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_AUDIO_GRAPH_CARD2=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_I2C_HID_OF=m +CONFIG_I2C_HID_OF_ELAN=m +CONFIG_USB_HID=m +CONFIG_USB_ULPI_BUS=y +CONFIG_USB=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y +CONFIG_USB_OTG=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_SIDEBAND=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_ACM=m +CONFIG_USB_STORAGE=y +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CDNS3=m +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_DWC3=y +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_QCOM_EUD=m +CONFIG_USB_ONBOARD_DEV=m +CONFIG_USB_ULPI=y +CONFIG_USB_GADGET=y +CONFIG_U_SERIAL_CONSOLE=y +CONFIG_USB_SNP_UDC_PLAT=y +CONFIG_USB_BDC_UDC=y +CONFIG_USB_CONFIGFS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_TYPEC=y +CONFIG_TYPEC_TCPM=y +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_QCOM_PMIC=y +CONFIG_TYPEC_UCSI=y +CONFIG_UCSI_CCG=m +CONFIG_UCSI_PMIC_GLINK=y +CONFIG_CROS_EC_UCSI=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_MUX_FSA4480=m +CONFIG_TYPEC_MUX_GPIO_SBU=y +CONFIG_TYPEC_MUX_IT5205=m +CONFIG_TYPEC_MUX_PS883X=m +CONFIG_TYPEC_MUX_PTN36502=m +CONFIG_TYPEC_MUX_WCD939X_USBSS=m +CONFIG_TYPEC_DP_ALTMODE=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK_MINORS=32 +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHCI_OF_DWCMSHC=y +CONFIG_MMC_SDHCI_MSM=y +CONFIG_MMC_SPI=y +CONFIG_MMC_DW=y +CONFIG_MMC_HSQ=y +CONFIG_SCSI_UFSHCD=y +CONFIG_SCSI_UFS_BSG=y +CONFIG_SCSI_UFSHCD_PLATFORM=y +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +CONFIG_SCSI_UFS_QCOM=y +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=y +CONFIG_LEDS_CLASS_MULTICOLOR=m +CONFIG_LEDS_LM3692X=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_GPIO=y +CONFIG_LEDS_PWM=y +CONFIG_LEDS_SYSCON=y +CONFIG_LEDS_QCOM_FLASH=y +CONFIG_LEDS_QCOM_LPG=m +CONFIG_LEDS_TRIGGER_TIMER=y +CONFIG_LEDS_TRIGGER_ONESHOT=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=y +CONFIG_LEDS_TRIGGER_BACKLIGHT=y +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_ACTIVITY=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=y +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_EDAC=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_DRV_S5M=y +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_EFI=y +CONFIG_RTC_DRV_CROS_EC=y +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_IMX_BBM_SCMI=y +CONFIG_DMADEVICES=y +CONFIG_QCOM_BAM_DMA=y +CONFIG_QCOM_GPI_DMA=y +CONFIG_QCOM_HIDMA_MGMT=y +CONFIG_QCOM_HIDMA=y +CONFIG_DW_EDMA=m +CONFIG_UDMABUF=y +CONFIG_VFIO=y +CONFIG_VFIO_PCI=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_MMIO=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +CONFIG_GREYBUS=m +CONFIG_GREYBUS_BEAGLEPLAY=m +CONFIG_STAGING=y +CONFIG_STAGING_MEDIA=y +CONFIG_VIDEO_MAX96712=m +CONFIG_CHROME_PLATFORMS=y +CONFIG_CROS_EC=y +CONFIG_CROS_EC_I2C=y +CONFIG_CROS_EC_RPMSG=m +CONFIG_CROS_EC_SPI=y +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_TYPEC=m +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_CLK_VEXPRESS_OSC=y +CONFIG_COMMON_CLK_SCMI=y +CONFIG_COMMON_CLK_SCPI=y +CONFIG_COMMON_CLK_S2MPS11=y +CONFIG_COMMON_CLK_PWM=y +CONFIG_COMMON_CLK_RS9_PCIE=y +CONFIG_COMMON_CLK_VC3=y +CONFIG_COMMON_CLK_QCOM=y +CONFIG_CLK_QCM2290_GPUCC=m +CONFIG_QCOM_A53PLL=y +CONFIG_QCOM_CLK_SMD_RPM=y +CONFIG_QCOM_CLK_RPMH=y +CONFIG_IPQ_APSS_6018=y +CONFIG_IPQ_CMN_PLL=m +CONFIG_IPQ_GCC_5424=y +CONFIG_MSM_GCC_8953=y +CONFIG_SA_CAMCC_8775P=m +CONFIG_QCS_GCC_8300=y +CONFIG_QCS_GCC_615=y +CONFIG_SC_CAMCC_7280=y +CONFIG_SA_DISPCC_8775P=m +CONFIG_SC_DISPCC_7280=y +CONFIG_SC_GPUCC_7280=y +CONFIG_SC_LPASS_CORECC_7280=m +CONFIG_SC_VIDEOCC_7280=y +CONFIG_SM_CAMCC_6350=m +CONFIG_SM_CAMCC_8550=m +CONFIG_SM_CAMCC_8650=m +CONFIG_SM_DISPCC_6350=m +CONFIG_SM_DISPCC_8750=m +CONFIG_SM_GCC_4450=y +CONFIG_SM_GCC_6350=y +CONFIG_SM_GCC_8750=y +CONFIG_SM_GPUCC_6350=m +CONFIG_SM_GPUCC_8350=m +CONFIG_SM_TCSRCC_8750=m +CONFIG_SA_VIDEOCC_8775P=m +CONFIG_SM_VIDEOCC_6350=m +CONFIG_SM_VIDEOCC_8550=m +CONFIG_QCOM_HFPLL=y +CONFIG_SM_VIDEOCC_8450=m +CONFIG_CLK_SOPHGO_CV1800=y +CONFIG_HWSPINLOCK=y +CONFIG_HWSPINLOCK_QCOM=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_MAILBOX=y +CONFIG_ARM_MHU=y +CONFIG_PLATFORM_MHU=y +CONFIG_QCOM_APCS_IPC=y +CONFIG_QCOM_CPUCP_MBOX=m +CONFIG_QCOM_IPCC=y +CONFIG_CIX_MBOX=y +CONFIG_IOMMU_IO_PGTABLE_ARMV7S=y +CONFIG_ARM_SMMU=y +CONFIG_ARM_SMMU_V3=y +CONFIG_QCOM_IOMMU=y +CONFIG_REMOTEPROC=y +CONFIG_REMOTEPROC_CDEV=y +CONFIG_QCOM_Q6V5_ADSP=m +CONFIG_QCOM_Q6V5_MSS=m +CONFIG_QCOM_Q6V5_PAS=m +CONFIG_QCOM_SYSMON=m +CONFIG_QCOM_WCNSS_PIL=m +CONFIG_RPMSG_CHAR=y +CONFIG_RPMSG_CTRL=m +CONFIG_RPMSG_QCOM_GLINK_RPM=y +CONFIG_RPMSG_QCOM_GLINK_SMEM=y +CONFIG_RPMSG_QCOM_SMD=y +CONFIG_RPMSG_VIRTIO=y +CONFIG_SOUNDWIRE=m +CONFIG_SOUNDWIRE_QCOM=m +CONFIG_QCOM_AOSS_QMP=y +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_GENI_SE=y +CONFIG_QCOM_LLCC=y +CONFIG_QCOM_OCMEM=y +CONFIG_QCOM_PMIC_GLINK=y +CONFIG_QCOM_RMTFS_MEM=y +CONFIG_QCOM_RPMH=y +CONFIG_QCOM_SMEM=y +CONFIG_QCOM_SMD_RPM=y +CONFIG_QCOM_SMP2P=y +CONFIG_QCOM_SMSM=y +CONFIG_QCOM_SOCINFO=y +CONFIG_QCOM_SPM=m +CONFIG_QCOM_STATS=m +CONFIG_QCOM_WCNSS_CTRL=m +CONFIG_QCOM_APR=y +CONFIG_QCOM_ICC_BWMON=m +CONFIG_QCOM_PBS=m +CONFIG_SOC_TI=y +CONFIG_QCOM_CPR=y +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_GOV_PASSIVE=m +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_EXTCON=y +CONFIG_EXTCON_USB_GPIO=y +CONFIG_EXTCON_USBC_CROS_EC=y +CONFIG_MEMORY=y +CONFIG_IIO=y +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_SOPHGO_CV1800B_ADC=m +CONFIG_TI_ADS1015=m +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_VCNL4000=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_PWM=y +CONFIG_PWM_ADP5585=m +CONFIG_PWM_CROS_EC=m +CONFIG_QCOM_PDC=y +CONFIG_QCOM_MPM=y +CONFIG_RESET_GPIO=m +CONFIG_RESET_QCOM_AOSS=y +CONFIG_RESET_QCOM_PDC=m +CONFIG_PHY_SNPS_EUSB2=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_NXP_PTN3222=m +CONFIG_PHY_CADENCE_TORRENT=m +CONFIG_PHY_CADENCE_DPHY=m +CONFIG_PHY_CADENCE_DPHY_RX=m +CONFIG_PHY_CADENCE_SIERRA=m +CONFIG_PHY_CADENCE_SALVO=m +CONFIG_PHY_QCOM_EDP=m +CONFIG_PHY_QCOM_PCIE2=m +CONFIG_PHY_QCOM_QMP=y +CONFIG_PHY_QCOM_QMP_PCIE=m +CONFIG_PHY_QCOM_QMP_PCIE_8996=m +CONFIG_PHY_QCOM_QUSB2=y +CONFIG_PHY_QCOM_EUSB2_REPEATER=m +CONFIG_PHY_QCOM_M31_USB=m +CONFIG_PHY_QCOM_USB_HS=y +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=y +CONFIG_PHY_QCOM_USB_HSIC=y +CONFIG_PHY_QCOM_USB_HS_28NM=m +CONFIG_PHY_QCOM_USB_SS=y +CONFIG_PHY_QCOM_SGMII_ETH=m +CONFIG_ARM_CCI_PMU=m +CONFIG_ARM_CCN=m +CONFIG_ARM_CMN=m +CONFIG_ARM_SMMU_V3_PMU=m +CONFIG_ARM_DSU_PMU=m +CONFIG_ARM_SPE_PMU=m +CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU=m +CONFIG_NVIDIA_CORESIGHT_PMU_ARCH_SYSTEM_PMU=m +CONFIG_ANDROID_BINDER_IPC=y +CONFIG_NVMEM_LAYOUT_SL28_VPD=m +CONFIG_NVMEM_QCOM_QFPROM=y +CONFIG_NVMEM_QCOM_SEC_QFPROM=m +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_TEE=y +CONFIG_OPTEE=y +CONFIG_MUX_GPIO=m +CONFIG_MUX_MMIO=m +CONFIG_SLIMBUS=y +CONFIG_SLIM_QCOM_CTRL=y +CONFIG_SLIM_QCOM_NGD_CTRL=m +CONFIG_INTERCONNECT_QCOM=y +CONFIG_INTERCONNECT_QCOM_MSM8953=y +CONFIG_INTERCONNECT_QCOM_OSM_L3=y +CONFIG_INTERCONNECT_QCOM_QCS615=y +CONFIG_INTERCONNECT_QCOM_QCS8300=y +CONFIG_INTERCONNECT_QCOM_QDU1000=y +CONFIG_INTERCONNECT_QCOM_SC7280=y +CONFIG_INTERCONNECT_QCOM_SM6115=y +CONFIG_INTERCONNECT_QCOM_SM6350=y +CONFIG_INTERCONNECT_QCOM_SM8750=y +CONFIG_COUNTER=m +CONFIG_HTE=y +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QFMT_V2=y +CONFIG_AUTOFS_FS=y +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_OVERLAY_FS=m +CONFIG_VFAT_FS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_HUGETLBFS=y +CONFIG_EFIVAR_FS=y +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +CONFIG_PSTORE=y +CONFIG_PSTORE_CONSOLE=y +CONFIG_PSTORE_PMSG=y +CONFIG_PSTORE_RAM=y +CONFIG_NFS_FS=y +CONFIG_NFS_V4=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_ROOT_NFS=y +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_ISO8859_1=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_CRYPTO_USER=y +CONFIG_CRYPTO_BENCHMARK=m +CONFIG_CRYPTO_CURVE25519=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_XTS=y +CONFIG_CRYPTO_ECHAINIV=y +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_MD5=m +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_CRC32C=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_ZSTD=m +CONFIG_CRYPTO_ANSI_CPRNG=y +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +CONFIG_CRYPTO_GHASH_ARM64_CE=y +CONFIG_CRYPTO_SHA3_ARM64=m +CONFIG_CRYPTO_SM3_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_DEV_QCE=m +CONFIG_CRYPTO_DEV_QCOM_RNG=m +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +CONFIG_PKCS8_PRIVATE_KEY_PARSER=y +CONFIG_PACKING=y +CONFIG_INDIRECT_PIO=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_CMA=y +CONFIG_CMA_SIZE_MBYTES=32 +CONFIG_IRQ_POLL=y +CONFIG_PRINTK_TIME=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y +CONFIG_DEBUG_INFO_REDUCED=y +CONFIG_MAGIC_SYSRQ=y +# CONFIG_FTRACE is not set +CONFIG_CORESIGHT=m +CONFIG_CORESIGHT_LINK_AND_SINK_TMC=m +CONFIG_CORESIGHT_CATU=m +CONFIG_CORESIGHT_SINK_TPIU=m +CONFIG_CORESIGHT_SINK_ETBV10=m +CONFIG_CORESIGHT_STM=m +CONFIG_CORESIGHT_CPU_DEBUG=m +CONFIG_CORESIGHT_CTI=m +CONFIG_MEMTEST=y