// https://syzkaller.appspot.com/bug?id=c1440cba2797e17beebf049f8eabe816cf8de2e5 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_bpf #define __NR_bpf 321 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } const int kInitNetNsFd = 201; #define MAX_FDS 30 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 #define USB_MAX_FDS 6 struct usb_endpoint_index { struct usb_endpoint_descriptor desc; int handle; }; struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_index eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bDeviceClass; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[USB_MAX_FDS]; static struct usb_device_index* lookup_usb_index(int fd) { for (int i = 0; i < USB_MAX_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) return &usb_devices[i].index; } return NULL; } static int usb_devices_num; static bool parse_usb_descriptor(const char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bDeviceClass = index->dev->bDeviceClass; index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num].desc, buffer + offset, sizeof(iface->eps[iface->eps_num].desc)); iface->eps_num++; } } offset += desc_length; } return true; } static struct usb_device_index* add_usb_index(int fd, const char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= USB_MAX_FDS) return NULL; if (!parse_usb_descriptor(dev, dev_len, &usb_devices[i].index)) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response_in(int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, struct usb_qualifier_descriptor* qual, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_data = (char*)qual; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: break; } break; default: break; } break; default: break; } return false; } typedef bool (*lookup_connect_out_response_t)( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done); static bool lookup_connect_response_out_generic( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done) { switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_SET_CONFIGURATION: *done = true; return true; default: break; } break; } return false; } #define UDC_NAME_LENGTH_MAX 128 struct usb_raw_init { __u8 driver_name[UDC_NAME_LENGTH_MAX]; __u8 device_name[UDC_NAME_LENGTH_MAX]; __u8 speed; }; enum usb_raw_event_type { USB_RAW_EVENT_INVALID = 0, USB_RAW_EVENT_CONNECT = 1, USB_RAW_EVENT_CONTROL = 2, }; struct usb_raw_event { __u32 type; __u32 length; __u8 data[0]; }; struct usb_raw_ep_io { __u16 ep; __u16 flags; __u32 length; __u8 data[0]; }; #define USB_RAW_EPS_NUM_MAX 30 #define USB_RAW_EP_NAME_MAX 16 #define USB_RAW_EP_ADDR_ANY 0xff struct usb_raw_ep_caps { __u32 type_control : 1; __u32 type_iso : 1; __u32 type_bulk : 1; __u32 type_int : 1; __u32 dir_in : 1; __u32 dir_out : 1; }; struct usb_raw_ep_limits { __u16 maxpacket_limit; __u16 max_streams; __u32 reserved; }; struct usb_raw_ep_info { __u8 name[USB_RAW_EP_NAME_MAX]; __u32 addr; struct usb_raw_ep_caps caps; struct usb_raw_ep_limits limits; }; struct usb_raw_eps_info { struct usb_raw_ep_info eps[USB_RAW_EPS_NUM_MAX]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, __u32) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, __u32) #define USB_RAW_IOCTL_EPS_INFO _IOR('U', 11, struct usb_raw_eps_info) #define USB_RAW_IOCTL_EP0_STALL _IO('U', 12) #define USB_RAW_IOCTL_EP_SET_HALT _IOW('U', 13, __u32) #define USB_RAW_IOCTL_EP_CLEAR_HALT _IOW('U', 14, __u32) #define USB_RAW_IOCTL_EP_SET_WEDGE _IOW('U', 15, __u32) static int usb_raw_open() { return open("/dev/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; strncpy((char*)&arg.driver_name[0], driver, sizeof(arg.driver_name)); strncpy((char*)&arg.device_name[0], device, sizeof(arg.device_name)); arg.speed = speed; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_ep0_stall(int fd) { return ioctl(fd, USB_RAW_IOCTL_EP0_STALL, 0); } #define USB_MAX_PACKET_SIZE 4096 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (int ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable( fd, index->ifaces[index->iface_cur].eps[ep].handle); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (int ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep].desc); if (rv < 0) { } else { index->ifaces[n].eps[ep].handle = rv; } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } static volatile long syz_usb_connect_impl(uint64_t speed, uint64_t dev_len, const char* dev, const struct vusb_connect_descriptors* descs, lookup_connect_out_response_t lookup_connect_response_out) { if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; char* response_data = NULL; uint32_t response_length = 0; struct usb_qualifier_descriptor qual; if (event.ctrl.bRequestType & USB_DIR_IN) { if (!lookup_connect_response_in(fd, descs, &event.ctrl, &qual, &response_data, &response_length)) { usb_raw_ep0_stall(fd); continue; } } else { if (!lookup_connect_response_out(fd, descs, &event.ctrl, &done)) { usb_raw_ep0_stall(fd); continue; } response_data = NULL; response_length = event.ctrl.wLength; } if ((event.ctrl.bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD && event.ctrl.bRequest == USB_REQ_SET_CONFIGURATION) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; const char* dev = (const char*)a2; const struct vusb_connect_descriptors* descs = (const struct vusb_connect_descriptors*)a3; return syz_usb_connect_impl(speed, dev_len, dev, descs, &lookup_connect_response_out_generic); } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { unsigned long nb = a1; char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(nb % 10); nb /= 10; } return open(buf, a2, 0); } } static long syz_init_net_socket(volatile long domain, volatile long type, volatile long proto) { return syscall(__NR_socket, domain, type, proto); } static long syz_genetlink_get_family_id(volatile long name, volatile long sock_arg) { int fd = sock_arg; if (fd < 0) { fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (fd == -1) { return -1; } } struct nlmsg nlmsg_tmp; int ret = netlink_query_family_id(&nlmsg_tmp, fd, (char*)name, false); if ((int)sock_arg < 0) close(fd); if (ret < 0) { return -1; } return ret; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 29; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 1 ? 4000 : 0) + (call == 5 ? 4000 : 0) + (call == 6 ? 4000 : 0) + (call == 8 ? 3000 : 0) + (call == 17 ? 500 : 0) + (call == 19 ? 500 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[8] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: res = syscall(__NR_socket, /*domain=*/0xaul, /*type=SOCK_SEQPACKET*/ 5ul, /*proto=*/0x84); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x200000009600, "xfs\000", 4); memcpy((void*)0x200000009640, "./file0\000", 8); memcpy((void*)0x200000001340, "permit_directio", 15); *(uint8_t*)0x20000000134f = 0x2c; memcpy((void*)0x200000001350, "fowner", 6); *(uint8_t*)0x200000001356 = 0x3d; sprintf((char*)0x200000001357, "%020llu", (long long)0); *(uint8_t*)0x20000000136b = 0x2c; *(uint8_t*)0x20000000136c = 0; memcpy( (void*)0x20000001c300, "\x78\x9c\xec\xda\x09\xd8\xa6\x73\xc1\xb8\xff\xfb\x19\xc6\x2e\x63\xa8" "\xa4\xd4\x54\x44\x8b\xac\x59\xa2\x9a\x19\xcc\x50\x48\x96\x68\x47\x96" "\x94\xa5\xa4\x42\x1b\x4a\x0a\x15\x11\xed\xd9\xb7\x6c\x65\x09\x65\x6d" "\x23\xd9\x4b\x94\x90\x36\x59\x22\x2d\xb6\x61\xfe\xc7\x63\x9e\x61\x8c" "\x93\x57\xbf\xde\xff\xe1\xad\xf3\x3c\x8f\xe3\xb9\x97\xeb\xbe\xae\xeb" "\xf9\xde\xdf\xcf\xb5\x3c\x53\x36\x99\xb4\xc1\xc4\xc1\x60\x8e\xc1\xb4" "\xc6\x0d\x66\xee\xdc\xeb\x26\x4f\x19\x73\xcd\xba\xb7\x1f\xb9\xf9\xfc" "\xc7\x2c\x73\xca\xdd\xfb\x3f\x7a\xc5\x45\xc7\x8f\x3c\x4f\x18\x79\x9e" "\x38\x18\x0c\x46\x8d\x7c\x3c\x34\x6d\xd9\xd8\xc1\xa9\xa7\x8d\x1a\xcc" "\xfa\xd0\xf2\x47\x9a\x7b\xce\xb9\x86\xe6\x1d\x0c\x96\x1d\x79\x3b\xb2" "\x9f\xc1\x8a\xd3\x9e\xe6\xbd\x62\xfa\x7a\x53\x67\x6a\xe6\x81\x0e\x3d" "\xf2\xb0\xf7\xb4\x9f\x87\x9a\x6f\xf8\x57\x0c\xbf\x38\x6c\xff\x3d\x0f" "\x1f\x0c\x06\x63\x66\xd8\x7e\x68\x30\x18\xda\xed\x31\x5f\x54\xda\x26" "\x13\x26\x4f\x7a\xc4\xea\x61\xb7\x61\xab\xd1\x23\xaf\x67\xfc\x99\x6d" "\xda\xcf\xbc\x17\x0f\x06\xf3\x9e\x31\xe0\xe3\x63\xc6\x75\x87\x9e\x82" "\xaf\x34\xfc\x3b\x77\x7b\xc9\x39\xa3\xd7\x7d\x0a\x7e\xf7\x7f\x5c\x9b" "\x4c\x98\xbc\xd6\x4c\xfe\xc3\xe7\xe2\x2c\x23\xcb\x56\x1c\x3e\xc7\x67" "\x3e\x07\x8d\xcd\x7c\x9c\xdf\xba\xd8\xa6\x2b\x8f\x4c\xe1\x43\xc7\xdb" "\x60\x30\x7c\x89\x7b\xd4\xb9\xf2\x1f\xd1\x26\x13\x26\xad\x3d\x78\xfc" "\xeb\xfc\xe0\xc8\x55\x2e\xdc\x7b\xea\xb4\xeb\xe6\xec\x83\x69\x37\x8a" "\x39\x07\x83\xc1\x5c\x23\xd7\xd7\x79\x9e\x6a\x97\xfa\xf7\x9a\x30\x71" "\xb9\x87\xee\xd9\xd3\xdf\x8f\xb0\x4f\x3f\x96\x77\xa3\xe3\xe2\xf8\xb7" "\x9f\xf4\xe0\xf0\x4d\x7a\x30\x18\x2c\x30\x18\x8c\x5d\x73\xfa\xbd\xa0" "\xaa\xaa\xaa\xfe\x33\x9a\x30\x71\xb9\xd5\xe0\xfe\x3f\xc7\x13\xdd\xff" "\x4f\x3e\x79\xe1\x33\xba\xff\x57\x55\x55\xfd\xe7\xb6\xd6\x84\x89\xcb" "\x0d\xdf\xeb\x67\xba\xff\xcf\xf3\x44\xf7\xff\x1d\x17\xbe\x68\x8f\x69" "\xff\xdb\xff\xf8\x15\xa7\x6d\xf5\xe0\x53\xfb\x25\xaa\xaa\xaa\xea\x5f" "\x6a\xd2\x5a\x78\xff\x1f\xf3\x44\xf7\xff\x15\x57\xbb\x6c\xed\xee\xff" "\x55\x55\x55\xff\xb9\xad\xbf\xce\x43\xf7\xff\x79\x66\xba\xff\x2f\xf8" "\x44\xf7\xff\xb7\x9c\xb4\xca\x22\x23\xeb\x4d\xff\xbb\xe1\x81\x19\x76" "\x39\x34\xc3\xff\x9f\x70\xff\x0c\xcb\x67\x99\x61\xf9\x7d\x33\x2c\x1f" "\x3d\xc3\x7e\x66\x5c\x7f\xb6\x19\x96\xdf\x33\xc3\xf2\xd9\x87\x3f\x83" "\xf5\xc7\x0d\x06\x63\xa7\xff\xf7\x82\x53\x1e\x59\x3c\x76\xdc\xf0\x67" "\x23\xcb\xef\x9d\x61\xf9\xf8\x47\xfe\x3b\x9d\x45\x57\x9f\x61\xf9\x84" "\x19\x96\x4f\x9a\x61\xf9\xc4\x91\xb1\x0e\x2f\x9f\x3c\xc3\xf2\xc9\x33" "\xac\xbf\xe6\x13\x4c\x75\x55\x55\xd5\xff\x99\xd6\x5f\x6e\xd2\x6a\x83" "\x19\xfe\x3b\xfb\x91\xc5\x0b\x4d\xff\x9c\xee\xff\xe7\x9f\x79\xfd\x92" "\x4f\xd5\x78\xab\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xea\x3f\xb3\x07\x6f\x3f\xeb\x9c\xc1\x60\x30\x34\x18\x0c" "\x46\x0d\x06\x53\x06\x23\xaf\x67\x7c\x1e\x4c\x9d\x3a\x75\xea\xf0\xfb" "\x93\xcf\xbb\xfc\xf2\xa7\x6c\xa0\xff\x37\x1a\x3a\xf7\xba\xc9\x53\xc6" "\x5c\xb3\xee\xed\x47\x6e\x3e\xff\x31\xcb\x9c\x72\xf7\xfe\x8f\xcc\xd2" "\x7f\x6c\xff\xf9\xdf\xa0\xfe\x9d\x86\xfd\xe7\x38\x6e\xdc\x60\xb0\xfd" "\x46\x4f\xf5\x50\xea\x29\xa8\xf3\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\x9b\xd9\x7f\xf4\x05\x4f\xd1\x40\xea\x29\xa9\xf3\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xb8\x07\x6f\x3f\xeb\x9c\x91\x63\x60\xd4\x60" "\x30\x65\x30\xf2\x7a\xb7\xe9\xcf\x67\xee\xf7\xe6\xb7\x8e\xac\xba\xf2" "\xc6\xa7\xdc\x79\xd0\x23\x5b\x2e\x3a\x7e\x9b\x91\x57\xe7\x5e\x37\x79" "\xca\x36\x4f\xc1\xd8\x9f\x82\x86\x86\xbf\xeb\x98\x6b\xd6\xbd\xfd\xc8" "\xcd\xe7\x3f\x66\x99\x53\xee\xde\xff\xbf\xe0\xec\xf9\xcf\xff\x06\xf5" "\xef\xf4\x90\xff\x36\x43\x83\xc1\xc8\xf9\x3d\x66\xf8\x5c\x5e\x77\xc2" "\xfa\x1b\x2e\x31\x18\x0c\x0e\xba\xf3\x94\x8d\x57\x18\x3c\xfc\xd9\x4a" "\xc3\x9f\xad\x32\x76\x96\xc1\x2c\x0f\x6d\xba\xc4\x43\x8f\x6b\x2c\xca" "\x3b\xde\x6d\xcd\x69\xcf\xe3\x87\x1f\x16\x7c\x78\x1f\x27\x3f\xb4\xff" "\xb5\xa6\x1e\x3a\xcb\xd0\x4c\x83\x98\xa1\x57\x9d\x7b\xd3\x91\xef\xda" "\xe4\xee\xe5\x67\x7e\x5e\xfc\xf1\xbf\xc7\xa8\xe9\x2f\x0e\xbf\xe1\xf4" "\xbb\xa6\x4e\x9d\x3a\xf5\x51\x0b\x47\x9a\xe3\x71\x36\x9e\xbe\xff\xe9" "\xdf\x65\xe6\xf3\x7c\x64\xec\x4b\x0c\x8f\x7d\xa9\x9d\xb6\x7b\xef\x52" "\xef\xdf\x65\xd7\x25\xb7\xd9\x6e\xb3\xad\xb7\xdc\x7a\xcb\xed\x97\x59" "\x6e\xa5\xe5\x57\x58\x76\x99\x15\x56\x7e\xc5\x52\x5b\x6d\xb3\xed\x96" "\x4b\x4f\x7b\x7c\x9c\x39\x1b\xf7\xd0\xe3\x6a\x4f\x66\xce\xe6\x99\x79" "\xce\x6e\x9f\x30\xe3\x9c\xcd\xfc\xdd\x1e\x6f\xce\xc6\x3d\xf1\x9c\x3d" "\xb4\xc7\x29\xbb\x0e\x6d\x38\x7d\xce\x66\xfd\x17\xe7\x6c\xb5\x27\x9e" "\xb3\x71\xdb\x8c\xfc\xa2\x45\xc7\x8f\x1e\x6c\xfa\xd0\xd4\x0c\x0d\x06" "\x8b\xae\x3e\x7a\xb0\xf3\xf0\x9b\x65\x66\x1f\x0c\x16\x5d\x63\x64\xdd" "\x85\x86\xd7\x5d\x75\xec\xa8\xc1\x60\xbf\x47\xbe\xe8\xf0\xab\xd9\x1f" "\x3e\x06\x87\x76\x1b\x5e\x67\x93\x49\x1b\x4c\x7c\x64\x64\x8f\xfd\x86" "\x8f\xb9\x4e\x3f\x6a\xc5\x45\xc7\x8f\x3c\x4f\x18\x79\x9e\x38\x6d\x88" "\xe3\x06\x8f\x1c\x8a\x63\x07\xa7\x9e\x36\x6a\x78\x2e\x1e\x35\xcd\x73" "\xcf\x39\xd7\xd0\xbc\x83\xc1\xb2\x23\x6f\x47\xf6\x33\x58\x79\xe4\xd3" "\x43\xa6\xaf\x37\x75\xa6\x66\x1e\xe8\xd0\x23\x0f\x7b\x4f\xfb\x79\xa8" "\xf9\x86\x77\x32\xfc\xe2\xdd\x4b\x9f\x75\xed\xf0\xb9\x38\xd3\xf6\xff" "\x7f\xf4\xff\x74\xfd\x7f\x8c\xd7\x4a\x43\x0f\x4f\xd4\xd0\xc8\xcf\xc8" "\x3a\xd3\xbc\x26\x4c\x5e\xeb\x91\xdf\xf5\xd0\x34\x0c\xcf\xdd\x2c\x23" "\xcb\x56\x1c\x36\x99\x79\xce\xfe\x37\x7b\xcc\x78\xc7\xcd\x3a\x18\xf3" "\x04\xe3\x9d\xb4\xd6\xc4\xe5\x86\x17\xcf\x34\xff\xd3\x37\xc1\xe3\xeb" "\x8e\xc5\x2e\xfc\xf0\xb4\x63\x6b\xfc\x8a\xd3\xb6\x7a\xf0\xff\x19\x85" "\xc6\x3b\xcf\x13\x8c\x77\xad\x09\x38\xde\x79\x9e\x68\xbc\xc7\x7d\xe4" "\xd2\xd3\xa6\xed\xea\x7f\x6d\xbc\x33\x5d\xeb\xd6\x7e\xe8\x71\xfc\x93" "\xb9\xd6\x0d\x9e\xf8\x5a\x37\x0b\xed\x60\xcb\x4b\x16\x99\xf9\x5a\xf7" "\xba\xc7\x1f\xe2\xa3\xce\xe3\xe9\x73\x34\xfb\x4c\x2b\x3d\xde\xb5\x6e" "\xe7\x83\x97\xdd\x6d\x78\xff\xe3\x9f\xf8\x5a\xb7\xf6\xf0\xd8\x47\x3f" "\xea\x5a\x37\x6a\x30\x58\x74\xb5\xe9\xd7\xba\xe1\x0b\xdf\xa4\xd1\x83" "\xfd\x86\xdf\x2c\x3b\xfc\x66\xf2\xe8\xc1\x31\xc3\x6f\x96\x7b\xe8\xcd" "\x9c\x83\xf3\x86\xdf\xbc\xfc\x9d\x3b\x6c\xbb\xc5\xf0\x82\x35\xa7\xcf" "\xc9\xd2\xc3\xfb\x1d\x3f\x76\xe8\x21\xf7\x0b\x57\xbc\x65\xf1\xa9\x07" "\x4c\x9d\xba\xfa\xc8\x58\xc6\x8f\x7d\xf4\x58\x47\x8e\x8f\x71\x33\xde" "\xcf\x27\x8c\x9d\x36\x99\xd3\xb7\x9d\xbe\xdf\xe1\x55\xa7\xef\xf7\xe6" "\x67\x4e\xfb\x6c\xd2\xc8\x7e\x27\xfc\x0b\xfb\x9d\xbe\x2d\x8d\xf7\xce" "\xf9\xa6\x7d\x36\x79\x64\xbf\x13\x67\xda\xef\xe8\x27\xd8\xef\xf4\x6d" "\x1f\x73\x3e\x2c\x31\xf4\xf0\x85\xeb\x71\xae\x37\x93\x66\xba\xde\x8c" "\xfc\x1b\x67\xfa\xaf\x7b\xd4\xcf\x6c\xd3\x7e\xe6\xbd\x78\x30\x98\xf7" "\x0c\xf2\x9d\x69\xdd\xff\xf1\x9a\x49\xe7\xef\x1c\x4f\x30\xde\x09\x13" "\x97\x5b\x6d\x78\x7c\x33\x9d\xbf\x0f\x1f\x8e\x74\xfe\x5e\x3a\xf9\x9a" "\xe1\x7b\xc5\xbc\x83\xc1\x60\x81\xc1\x60\xec\x9a\xd3\xc7\xfe\x2f\x36" "\xf4\x78\xe3\x9d\xf5\x89\xc7\x3b\x11\xc6\x3b\xeb\x13\x8d\xf7\xca\x63" "\xb7\x5b\xe7\x7f\x61\xbc\x83\x19\xc6\xfb\xa8\xe3\x6c\x93\xf5\xa7\x1d" "\x2b\x6b\x8e\x1c\x67\x93\xff\x85\xe3\x77\xfa\xb6\x33\x5f\xc7\x46\x3f" "\xf4\xe9\xb4\xcb\xfe\x9a\x4f\xe6\x3a\x36\xee\x31\xd7\xb1\xdd\x67\x19" "\x35\xd3\x64\xcf\xd0\xe3\xfd\xcd\xb6\x05\xac\x3f\xed\xf5\x42\x8f\xfc" "\x9d\x7b\xdd\x89\x47\x4f\x9f\xfb\xd1\x33\xed\xf7\x7f\xfa\x9b\x6d\x86" "\xef\x32\x04\xd7\xb1\x31\x33\xfd\x7b\x7e\xd4\x9a\x37\x0e\x86\x68\xce" "\x77\x3b\x6e\xd5\xcb\x86\x0e\x7c\xe2\x39\x1f\x3d\x78\xf4\xbf\x2d\xa6" "\xcf\xf9\xf4\x6d\x9f\x68\xce\x27\x3f\x99\x39\x7f\xce\x13\xcf\xf9\x93" "\xfd\x3b\x79\x89\x17\x4e\xfb\x7c\xf4\x4c\xe3\x9f\x71\xce\xd7\xdb\xf7" "\xd9\xfb\x4c\x9f\xf3\xd9\x66\xda\xef\xff\x34\xe7\x93\x9f\xf8\xde\xf1" "\xd8\x39\x1f\x3f\x18\x4d\x73\xbe\xf4\x7d\xd3\xe6\xed\x89\xae\xa7\x8f" "\x37\xe7\xd3\xb7\x9d\x3e\xe7\xc3\x5f\x71\x95\xb1\xb3\x0e\xd6\x18\xbe" "\x67\x8d\xcc\xf9\xa4\x27\x33\xe7\x0b\xfd\xef\x1c\xe7\x73\xc1\xfa\xd3" "\x5e\x6f\xf9\xf0\xa2\xb3\x8f\x3c\xe5\x8d\xd3\xe7\x7c\xe6\x39\xfe\x9f" "\xe6\x7c\xd2\xbf\x3a\xe7\xe3\x1e\x3e\xce\x17\x7d\xe8\xb3\x17\x8c\x1a" "\xcc\x36\xdb\x60\xe7\xcd\x76\xda\x69\xc7\x65\xa6\x3d\x4e\x7f\xbb\xec" "\xb4\x47\xbe\x16\xdd\x73\xdd\xb4\x79\x7e\xa2\x7b\xe9\xe3\x19\x4d\xdf" "\xf6\x89\xce\x8b\xd5\x9f\x8c\xd1\x98\x27\x65\x34\xf4\x3f\x19\x2d\x3c" "\xeb\xe3\x19\x3d\x72\x6a\x1d\xb1\xc3\x8e\xcf\xf8\x7f\xbd\x16\xad\xfe" "\xaf\x1a\x0d\xf8\x5a\x74\xcd\xd1\xd3\xe6\xed\x89\xfe\x2e\x7a\xbc\x39" "\x9f\xbe\x2d\xdd\x07\x17\x9c\x61\xfb\x99\xff\x1d\xba\xfe\x3a\x0f\xfd" "\xdd\x3d\xcf\x4c\xf7\xc1\xe9\x9b\xe0\x7d\xf0\xec\x33\xd7\xde\x6b\xfa" "\x2e\x47\x36\x7b\x60\xa6\x61\x4e\xbf\xaf\xde\x3f\xc3\xf2\x59\x66\x58" "\x7e\xdf\x0c\xcb\x47\xcf\xb0\x9f\x19\xd7\x9f\x6d\x86\xe5\xf7\xcc\xb0" "\x7c\xf8\x2b\xcc\x36\xc3\xfa\xd3\x59\xc7\x0d\xff\x9b\x77\x64\xf9\x94" "\x47\x56\x1f\x3b\xfc\xc7\xd3\xb8\x91\xe5\xf7\xce\xb0\x7c\xfc\x23\xdb" "\x2e\xba\xfa\x0c\xcb\x27\xcc\xb0\x7c\xd2\x0c\xcb\x27\x3e\x72\x68\x2c" "\x3a\x79\x86\xe5\x93\x67\x58\x7f\xcd\xc1\xbf\xd8\xf4\xff\x4d\x7a\x9b" "\x99\x2f\xf2\xf5\x64\xeb\x7f\xff\x75\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\x2f\xee\xc1\xdb\xcf\x3a\x67\xe4" "\x18\x18\x35\x18\x4c\x19\x4c\x7b\x3d\x34\xf2\x3c\xd8\x6d\x68\xbd\xdb" "\x5e\x33\xfc\x3c\x18\x0c\x46\xaf\x78\xc2\xd4\xf5\x9e\xea\xf1\x3e\xc5" "\x0d\x9d\x7b\xdd\xe4\x29\x63\xae\x59\xf7\xf6\x23\x37\x9f\xff\x98\x65" "\x4e\xb9\x7b\xff\xff\x82\xb3\xe7\x3f\xff\x1b\xd4\xbf\xd3\x43\xfe\xdb" "\x0c\x0d\x06\x23\xe7\xf7\x98\x6d\x06\x83\xc1\xba\x13\xd6\xdf\x70\x89" "\xc1\x60\xb0\xde\xd4\x13\x56\x1c\x35\x78\xf8\xb3\x85\x86\x3f\x5b\x75" "\xec\xa8\xc1\x60\xbf\xa1\x47\xed\x60\xf6\x87\xd7\x19\xda\x6d\x78\x9d" "\x4d\x26\x6d\x30\x71\x30\x98\x63\x64\x8d\x71\x8f\xf9\xa5\x8f\x39\x8f" "\x1e\xb5\xe2\xa2\xe3\x47\x9e\x27\x8c\x3c\x4f\x9c\x76\x7d\x1a\x37\x78" "\xe4\x78\x1d\x3b\x38\xf5\xb4\x51\x83\x59\x1f\x5a\xfe\x48\x73\xcf\x39" "\xd7\xd0\xbc\x83\xc1\xb2\x23\x6f\x47\xf6\x33\x58\x71\xda\xd3\xbc\x57" "\x4c\x5f\x6f\xea\x4c\xcd\x3c\xd0\xa1\x47\x1e\xf6\x9e\xf6\xf3\x50\xf3" "\x0d\xff\x8a\xe1\x17\x3b\x6f\x3d\xf9\xb9\xc3\x73\x35\xd3\xf6\xff\x67" "\x9a\x7e\xad\xde\x66\xd4\xff\xb8\x6a\xe7\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\xdd\xbf\xe6\xdf\xd1\xf2\xdf\x56\xa2" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x71\x0f\xde\x7e\xd6\x39\x23\xc7\xc0\xa8\xc1\x60\xca" "\x60\xda\xeb\xa1\xdd\x46\x9e\x07\x43\x27\x9d\xfa\xe2\x91\x43\x64\xf4" "\x2e\x57\x1d\x75\xe8\x53\x3d\xde\xa7\xb8\xa1\x73\xaf\x9b\x3c\x65\xcc" "\x35\xeb\xde\x7e\xe4\xe6\xf3\x1f\xb3\xcc\x29\x77\xef\xff\x5f\x70\xf6" "\xfc\xe7\x7f\x83\xfa\x77\x7a\xc8\x7f\x9b\xa1\xc1\x60\xe4\xfc\x1e\xb3" "\xcd\x60\x30\x58\x77\xc2\xfa\x1b\x2e\x31\x18\x0c\x0e\x3d\xea\xaa\x5d" "\x46\x0d\x1e\xfe\x6c\xa1\xe1\xcf\x56\x1d\x3b\x6a\x30\xd8\x6f\xe8\x51" "\x3b\x98\xfd\xe1\x75\x86\x76\x1b\x5e\x67\x93\x49\x1b\x4c\x1c\x0c\xe6" "\x18\x59\x63\xdc\x63\x7e\xe9\x63\xce\xa3\x47\xad\xb8\xe8\xf8\x91\xe7" "\x09\x23\xcf\x13\xa7\x5d\x9f\xc6\x0d\x1e\x39\x5e\xc7\x0e\x4e\x3d\x6d" "\xd4\x60\xd6\x87\x96\x3f\xd2\xdc\x73\xce\x35\x34\xef\x60\xb0\xec\xc8" "\xdb\x91\xfd\x0c\x56\x9c\xf6\x34\xef\x15\xd3\xd7\x9b\x3a\x53\x33\x0f" "\x74\xe8\x91\x87\xbd\xa7\xfd\x3c\xd4\x7c\xc3\xbf\x62\xf8\xc5\x9e\xf3" "\x5c\x77\xd2\xf0\x5c\xcd\xb4\xfd\xff\x99\xa6\x5f\xab\xb7\x19\xf5\x3f" "\xae\xda\xf9\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xe2\x1e\xbc\xfd\xac\x73\x46\x8e" "\x81\x51\x83\xc1\x94\xc1\xb4\xd7\xa3\x46\x9e\x77\x1f\x59\x6b\x68\xb7" "\xe1\x87\xf9\xd7\xdc\xeb\xba\xa7\x74\xb0\x4f\x7d\x43\xe7\x5e\x37\x79" "\xca\x98\x6b\xd6\xbd\xfd\xc8\xcd\xe7\x3f\x66\x99\x53\xee\xde\xff\xbf" "\xe0\xec\xf9\xcf\xff\x06\xf5\xef\x34\xec\x3f\xc7\x71\xe3\x06\x83\xed" "\x37\x7a\xaa\x87\x52\x4f\x41\x9d\xff\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\x1e" "\xeb\x3f\xfb\x53\x32\x8e\x7a\x6a\xea\xfc\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xc5\x3d\x78\xfb\x59\xe7\x8c\xbc\x1c\xf5\xc8\xd2" "\x51\xbb\x75\x5c\x60\x43\xe7\x5e\x37\x79\xca\x98\x6b\xd6\xbd\xfd\xc8" "\xcd\xe7\x3f\x66\x99\x53\xee\xde\xff\xa9\x1e\xd0\xbf\xdb\xe3\xf8\xef" "\x9e\x3f\x66\xf1\xdf\x23\x7f\xcc\xe2\xff\x89\xfc\x31\x8b\xff\x27\xf3" "\xc7\x2c\xfe\x7b\xe6\x8f\x59\xfc\x3f\x95\x3f\x66\xf1\xdf\x2b\x7f\xcc" "\xe2\xff\xe9\xfc\x31\x8b\xff\x67\xf2\xc7\x2c\xfe\x7b\xe7\x8f\x59\xfc" "\xf7\xc9\x1f\xb3\xf8\xef\x9b\x3f\x66\xf1\xff\x6c\xfe\x98\xc5\xff\x73" "\xf9\x63\x16\xff\xcf\xe7\x8f\x59\xfc\xf7\xcb\x1f\xb3\xf8\xef\x9f\x3f" "\x66\xf1\xff\x42\xfe\x98\xc5\xff\x00\x8b\xff\xd5\xff\xda\xea\x16\xff" "\x03\x2d\xfe\xff\x62\x16\xff\x2f\xe6\x8f\x59\xfc\x0f\xca\x1f\xb3\xf8" "\x1f\x9c\x3f\x66\xf1\xff\x52\xfe\x98\xc5\xff\xcb\xf9\x63\x16\xff\xaf" "\xe4\x8f\x59\xfc\xbf\x9a\x3f\x66\xf1\xff\x5a\xfe\x98\xc5\xff\xeb\xf9" "\x63\x16\xff\x6f\xe4\x8f\x59\xfc\xbf\x99\x3f\x66\xf1\x3f\x24\x7f\xcc" "\xe2\x7f\x68\xfe\x98\xc5\xff\xb0\xfc\x31\x8b\xff\xe1\xf9\x63\x16\xff" "\x23\xf2\xc7\x2c\xfe\x47\xe6\x8f\x59\xfc\x8f\xca\x1f\xb3\xf8\x1f\x9d" "\x3f\x66\xf1\x3f\x26\x7f\xcc\xe2\x7f\x6c\xfe\x98\xc5\xff\xb8\xfc\x31" "\x8b\xff\xb7\xf2\xc7\x2c\xfe\xc7\xe7\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8" "\x9f\x98\x3f\x66\xf1\x3f\x29\x7f\xcc\xe2\x7f\x72\xfe\x98\xc5\xff\xdb" "\xf9\x63\x16\xff\xef\xe4\x8f\x59\xfc\x4f\xc9\x1f\xb3\xf8\x9f\x9a\x3f" "\x66\xf1\x3f\x2d\x7f\xcc\xe2\x7f\x7a\xfe\x98\xc5\xff\xbb\xf9\x63\x16" "\xff\x33\xf2\xc7\x2c\xfe\x67\xe6\x8f\x59\xfc\xcf\xca\x1f\xb3\xf8\x7f" "\x2f\x7f\xcc\xe2\xff\xfd\xfc\x31\x8b\xff\xd9\xf9\x63\x16\xff\x73\xf2" "\xc7\x2c\xfe\xe7\xe6\x8f\x59\xfc\xcf\xcb\x1f\xb3\xf8\x9f\x9f\x3f\x66" "\xf1\xbf\x20\x7f\xcc\xe2\xff\x83\xfc\x31\x8b\xff\x0f\xf3\xc7\x2c\xfe" "\x3f\xca\x1f\xb3\xf8\xff\x38\x7f\xcc\xe2\xff\x93\xfc\x31\x8b\xff\x85" "\xf9\x63\x16\xff\x8b\xf2\xc7\x2c\xfe\x3f\xcd\x1f\xb3\xf8\x5f\x9c\x3f" "\x66\xf1\xff\x59\xfe\x98\xc5\xff\x92\xfc\x31\x8b\xff\xa5\xf9\x63\x16" "\xff\xcb\xf2\xc7\x2c\xfe\x97\xe7\x8f\x59\xfc\xaf\xc8\x1f\xb3\xf8\x5f" "\x99\x3f\x66\xf1\xbf\x2a\x7f\xcc\xe2\xff\xf3\xfc\x31\x8b\xff\x2f\xf2" "\xc7\x2c\xfe\x57\xe7\x8f\x59\xfc\x7f\x99\x3f\x66\xf1\xbf\x26\x7f\xcc" "\xe2\x7f\x6d\xfe\x98\xc5\xff\x57\xf9\x63\x16\xff\x5f\xe7\x8f\x59\xfc" "\xaf\xcb\x1f\xb3\xf8\xff\x26\x7f\xcc\xe2\x7f\x7d\xfe\x98\xc5\xff\x86" "\xfc\x31\x8b\xff\x8d\xf9\x63\x16\xff\xdf\xe6\x8f\x59\xfc\x6f\xca\x1f" "\xb3\xf8\xff\x2e\x7f\xcc\xe2\xff\xfb\xfc\x31\x8b\xff\x1f\xf2\xc7\x2c" "\xfe\x7f\xcc\x1f\xb3\xf8\xff\x29\x7f\xcc\xe2\x7f\x73\xfe\x98\xc5\xff" "\xcf\xf9\x63\x16\xff\x5b\xf2\xc7\x2c\xfe\xb7\xe6\x8f\x59\xfc\x6f\xcb" "\x1f\xb3\xf8\xdf\x9e\x3f\x66\xf1\xff\x4b\xfe\x98\xc5\xff\x8e\xfc\x31" "\x8b\xff\x9d\xf9\x63\x16\xff\xbf\xe6\x8f\x59\xfc\xef\xca\x1f\xb3\xf8" "\xff\x2d\x7f\xcc\xe2\xff\xf7\xfc\x31\x8b\xff\x3f\xf2\xc7\x2c\xfe\xff" "\xcc\x1f\xb3\xf8\xdf\x9d\x3f\x66\xf1\xbf\x27\x7f\xcc\xe2\x7f\x6f\xfe" "\x98\xc5\xff\xbe\xfc\x31\x8b\xff\xfd\xf9\x63\x16\xff\x29\xf9\x63\x16" "\xff\x07\xf2\xc7\x2c\xfe\x0f\xe6\x8f\x59\xfc\xa7\xe6\x8f\x49\xfc\x67" "\x19\xe4\x8f\x59\xfc\x87\xf2\xc7\x2c\xfe\xa3\xf2\xc7\x2c\xfe\xb3\xe4" "\x8f\x59\xfc\x67\xcd\x1f\xb3\xf8\x8f\xce\x1f\xb3\xf8\xcf\x96\x3f\x66" "\xf1\x9f\x3d\x7f\xcc\xe2\x3f\x47\xfe\x98\xc5\x7f\xce\xfc\x31\x8b\xff" "\x5c\xf9\x63\x16\xff\xb9\xf3\xc7\x2c\xfe\xf3\xe4\x8f\x59\xfc\xe7\xcd" "\x1f\xb3\xf8\x3f\x2d\x7f\xcc\xe2\x3f\x5f\xfe\x98\xc5\x7f\x4c\xfe\x98" "\xc5\x7f\xfe\xfc\x31\x8b\xff\xd8\xfc\x31\x8b\xff\x02\xf9\x63\x16\xff" "\x05\xf3\xc7\x2c\xfe\x4f\xcf\x1f\xb3\xf8\x3f\x23\x7f\xcc\xe2\xff\xcc" "\xfc\x31\x8b\xff\x42\xf9\x63\x16\xff\x67\xe5\x8f\x59\xfc\x17\xce\x1f" "\xb3\xf8\x3f\x3b\x7f\xcc\xe2\xff\x9c\xfc\x31\x8b\xff\x22\xf9\x63\x16" "\xff\xe7\xe6\x8f\x59\xfc\x9f\x97\x3f\x66\xf1\x1f\x97\x3f\x66\xf1\x7f" "\x7e\xfe\x98\xc5\xff\x05\xf9\x3f\xa6\x59\x47\x9e\x0d\xfe\x2f\xcc\x1f" "\xb3\x9c\xff\x8b\xe6\x8f\x59\xfc\x17\xcb\x1f\xb3\xf8\xbf\x28\x7f\xcc" "\xe2\xbf\x78\xfe\x98\xc5\x7f\x89\xfc\x31\x8b\xff\x8b\xf3\xc7\x2c\xfe" "\x2f\xc9\x1f\xb3\xf8\xbf\x34\x7f\xcc\xe2\xff\xb2\xfc\x31\x8b\xff\x92" "\xf9\x63\x16\xff\x97\xe7\x8f\x59\xfc\x97\xca\x1f\xb3\xf8\x2f\x9d\x3f" "\x66\xf1\x5f\x26\x7f\xcc\xe2\xbf\x6c\xfe\x98\xc5\x7f\xb9\xfc\x31\x8b" "\xff\xf2\xf9\x63\x16\xff\x57\xe4\x8f\x59\xfc\x57\xc8\x1f\xb3\xf8\xaf" "\x98\x3f\x66\xf1\x5f\x29\x7f\xcc\xe2\xbf\x72\xfe\x98\xc5\xff\x95\xf9" "\x63\x16\xff\x55\xf2\xc7\x2c\xfe\xab\xe6\x8f\x59\xfc\x5f\x95\x3f\x66" "\xf1\x7f\x75\xfe\x98\xc5\xff\x35\xf9\x63\x16\xff\xf1\xf9\x63\x16\xff" "\x09\xf9\x63\x16\xff\x89\xf9\x63\x16\xff\xd5\xf2\xc7\x2c\xfe\xab\xe7" "\x8f\x59\xfc\xd7\xc8\x1f\xb3\xf8\x4f\xca\x1f\xb3\xf8\x4f\x56\xf9\xcf" "\xf2\xa4\xd7\xb4\xf8\xaf\xa9\xf2\x7f\xf2\x59\xfc\xd7\xca\x1f\xb3\xf8" "\xbf\x36\x7f\xcc\xe2\xff\xba\xfc\x31\x8b\xff\xda\xf9\x63\x16\xff\x75" "\xf2\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\x5f\x9f\x3f\x66\xf1\x5f\x2f\x7f" "\xcc\xe2\xff\x86\xfc\x31\x8b\xff\xfa\xf9\x63\x16\xff\x0d\xf2\xc7\x2c" "\xfe\x1b\xe6\x8f\x59\xfc\x37\xca\x1f\xb3\xf8\xbf\x31\x7f\xcc\xe2\xbf" "\x71\xfe\x98\xc5\x7f\x93\xfc\x31\x8b\xff\x9b\xf2\xc7\x2c\xfe\x6f\xce" "\x1f\xb3\xf8\xbf\x25\x7f\xcc\xe2\xff\xd6\xfc\x31\x8b\xff\xdb\xf2\xc7" "\x2c\xfe\x6f\xcf\x1f\xb3\xf8\xbf\x23\x7f\xcc\xe2\xbf\x69\xfe\x98\xc5" "\x7f\xb3\xfc\x31\x8b\xff\xe6\xf9\x63\x16\xff\x77\xe6\x8f\x59\xfc\xb7" "\xc8\x1f\xb3\xf8\x6f\x99\x3f\x66\xf1\xdf\x2a\x7f\xcc\xe2\xbf\x75\xfe" "\x98\xc5\xff\x5d\xf9\x63\x16\xff\x6d\xf2\xc7\x2c\xfe\xef\xce\x1f\xb3" "\xf8\xbf\x27\x7f\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f\xbb\xfc\x31\x8b\xff" "\xf6\xf9\x63\x16\xff\x1d\xf2\xc7\x2c\xfe\xef\xcd\x1f\xb3\xf8\xbf\x2f" "\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\xff\xfd\xf9\x63\x16\xff\x9d\xf2\xc7" "\x2c\xfe\x1f\xc8\x1f\xb3\xf8\x7f\x30\x7f\xcc\xe2\xff\xa1\xfc\x31\x8b" "\xff\xce\xf9\x63\x16\xff\x5d\xf2\xc7\x2c\xfe\xbb\xe6\x8f\x59\xfc\x3f" "\x9c\x3f\x66\xf1\xff\x48\xfe\x98\xc5\xff\xa3\xf9\x63\x16\xff\x8f\xe5" "\x8f\x59\xfc\x3f\x9e\x3f\x66\xf1\xdf\x2d\x7f\xcc\xe2\xbf\x7b\xfe\x98" "\xc5\x7f\x8f\xfc\x31\x8b\xff\x27\xf2\xc7\x2c\xfe\x9f\xcc\x1f\xb3\xf8" "\xef\x99\x3f\x66\xf1\xff\x54\xfe\x98\xc5\x7f\xaf\xfc\x31\x8b\xff\xa7" "\xf3\xc7\x2c\xfe\x9f\xc9\x1f\xb3\xf8\xef\x9d\x3f\x66\xf1\xdf\x27\x7f" "\xcc\xe2\xbf\x6f\xfe\x98\xc5\xff\xb3\xf9\x63\x16\xff\xcf\xe5\x8f\x59" "\xfc\x3f\x9f\x3f\x66\xf1\xdf\x2f\x7f\xcc\xe2\xbf\x7f\xfe\x98\xc5\xff" "\x0b\xf9\x63\x16\xff\x03\xf2\xc7\x2c\xfe\x07\xe6\x8f\x59\xfc\xbf\x98" "\x3f\x66\xf1\x3f\x28\x7f\xcc\xe2\x7f\x70\xfe\x98\xc5\xff\x4b\xf9\x63" "\x16\xff\x2f\xe7\x8f\x59\xfc\xbf\x92\x3f\x66\xf1\xff\x6a\xfe\x98\xc5" "\xff\x6b\xf9\x63\x16\xff\xaf\xe7\x8f\x59\xfc\xbf\x91\x3f\x66\xf1\xff" "\x66\xfe\x98\xc5\xff\x90\xfc\x31\x8b\xff\xa1\xf9\x63\x16\xff\xc3\xf2" "\xc7\x2c\xfe\x87\xe7\x8f\x59\xfc\x8f\xc8\x1f\xb3\xf8\x1f\x99\x3f\x66" "\xf1\x3f\x2a\x7f\xcc\xe2\x7f\x74\xfe\x98\xc5\xff\x98\xfc\x31\x8b\xff" "\xb1\xf9\x63\x16\xff\xe3\xf2\xc7\x2c\xfe\xdf\xca\x1f\xb3\xf8\x1f\x9f" "\x3f\x66\xf1\x3f\x21\x7f\xcc\xe2\x7f\x62\xfe\x98\xc5\xff\xa4\xfc\x31" "\x8b\xff\xc9\xf9\x63\x16\xff\x6f\xe7\x8f\x59\xfc\xbf\x93\x3f\x66\xf1" "\x3f\x25\x7f\xcc\xe2\x7f\x6a\xfe\x98\xc5\xff\xb4\xfc\x31\x8b\xff\xe9" "\xf9\x63\x16\xff\xef\xe6\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f\x99\x3f" "\x66\xf1\x3f\x2b\x7f\xcc\xe2\xff\xbd\xfc\x31\x8b\xff\xf7\xf3\xc7\x2c" "\xfe\x67\xe7\x8f\x59\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66\xf1\x3f" "\x2f\x7f\xcc\xe2\x7f\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff\x0f\xf2" "\xc7\x2c\xfe\x3f\xcc\x1f\xb3\xf8\xff\x28\x7f\xcc\xe2\xff\xe3\xfc\x31" "\x8b\xff\x4f\xf2\xc7\x2c\xfe\x17\xe6\x8f\x59\xfc\x2f\xca\x1f\xb3\xf8" "\xff\x34\x7f\xcc\xe2\x7f\x71\xfe\x98\xc5\xff\x67\xf9\x63\x16\xff\x4b" "\xf2\xc7\x2c\xfe\x97\xe6\x8f\x59\xfc\x2f\xcb\x1f\xb3\xf8\x5f\x9e\x3f" "\x66\xf1\xbf\x22\x7f\xcc\xe2\x7f\x65\xfe\x98\xc5\xff\xaa\xfc\x31\x8b" "\xff\xcf\xf3\xc7\x2c\xfe\xbf\xc8\x1f\xb3\xf8\x5f\x9d\x3f\x66\xf1\xff" "\x65\xfe\x98\xc5\xff\x9a\xfc\x31\x8b\xff\xb5\xf9\x63\x16\xff\x5f\xe5" "\x8f\x59\xfc\x7f\x9d\x3f\x66\xf1\xbf\x2e\x7f\xcc\xe2\xff\x9b\xfc\x31" "\x8b\xff\xf5\xf9\x63\x16\xff\x1b\xf2\xc7\x2c\xfe\x37\xe6\x8f\x59\xfc" "\x7f\x9b\x3f\x66\xf1\xbf\x29\x7f\xcc\xe2\xff\xbb\xfc\x31\x8b\xff\xef" "\xf3\xc7\x2c\xfe\x7f\xc8\x1f\xb3\xf8\xff\x31\x7f\xcc\xe2\xff\xa7\xfc" "\x31\x8b\xff\xcd\xf9\x63\x16\xff\x3f\xe7\x8f\x59\xfc\x6f\xc9\x1f\xb3" "\xf8\xdf\x9a\x3f\x66\xf1\xbf\x2d\x7f\xcc\xe2\x7f\x7b\xfe\x98\xc5\xff" "\x2f\xf9\x63\x16\xff\x3b\xf2\xc7\x2c\xfe\x77\xe6\x8f\x59\xfc\xff\x9a" "\x3f\x66\xf1\xbf\x2b\x7f\xcc\xe2\xff\xb7\xfc\x31\x8b\xff\xdf\xf3\xc7" "\x2c\xfe\xff\xc8\x1f\xb3\xf8\xff\x33\x7f\xcc\xe2\x7f\x77\xfe\x98\xc5" "\xff\x9e\xfc\x31\x8b\xff\xbd\xf9\x63\x16\xff\xfb\xf2\xc7\x2c\xfe\xf7" "\xe7\x8f\x59\xfc\xa7\xe4\x8f\x59\xfc\x1f\xc8\x1f\xb3\xf8\x3f\x98\x3f" "\x66\xf1\x9f\x9a\x3f\x26\xf1\x9f\x75\x90\x3f\x66\xf1\x1f\xca\x1f\xb3" "\xf8\x8f\xca\x1f\xb3\xf8\xcf\x92\x3f\x66\xf1\x9f\x35\x7f\xcc\xe2\x3f" "\x3a\x7f\xcc\xe2\x3f\x5b\xfe\x98\xc5\x7f\xf6\xfc\x31\x8b\xff\x1c\xf9" "\x63\x16\xff\x39\xf3\xc7\x2c\xfe\x73\xe5\x8f\x59\xfc\xe7\xce\x1f\xb3" "\xf8\xcf\x93\x3f\x66\xf1\x9f\x37\x7f\xcc\xe2\xff\xb4\xfc\x31\x8b\xff" "\x7c\xf9\x63\x16\xff\x31\xf9\x63\x16\xff\xf9\xf3\xc7\x2c\xfe\x63\xf3" "\xc7\x2c\xfe\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3\xf8\x3f\x3d\x7f\xcc" "\xe2\xff\x8c\xfc\x31\x8b\xff\x33\xf3\xc7\x2c\xfe\x0b\xe5\x8f\x59\xfc" "\x9f\x95\x3f\x66\xf1\x5f\x38\x7f\xcc\xe2\xff\xec\xfc\x31\x8b\xff\x73" "\xf2\xc7\x2c\xfe\x8b\xe4\x8f\x59\xfc\x9f\x9b\x3f\x66\xf1\x7f\x5e\xfe" "\x98\xc5\x7f\x5c\xfe\x98\xc5\xff\xf9\xf9\x63\x16\xff\x17\xe4\x8f\x59" "\xfc\x5f\x98\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\xbf\x58\xfe\x98\xc5\xff" "\x45\xf9\x63\x16\xff\xc5\xf3\xc7\x2c\xfe\x4b\xe4\x8f\x59\xfc\x5f\x9c" "\x3f\x66\xf1\x7f\x49\xfe\x98\xc5\xff\xa5\xf9\x63\x16\xff\x97\xe5\x8f" "\x59\xfc\x97\xcc\x1f\xb3\xf8\xbf\x3c\x7f\xcc\xe2\xbf\x54\xfe\x98\xc5" "\x7f\xe9\xfc\x31\x8b\xff\x32\xf9\x63\x16\xff\x65\xf3\xc7\x2c\xfe\xcb" "\xe5\x8f\x59\xfc\x97\xcf\x1f\xb3\xf8\xbf\x22\x7f\xcc\xe2\xbf\x42\xfe" "\x98\xc5\x7f\xc5\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c" "\xfe\xaf\xcc\x1f\xb3\xf8\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xff" "\xaa\xfc\x31\x8b\xff\xab\xf3\xc7\x2c\xfe\xaf\xc9\x1f\xb3\xf8\x8f\xcf" "\x1f\xb3\xf8\x4f\xc8\x1f\xb3\xf8\x4f\xcc\x1f\xb3\xf8\xaf\x96\x3f\x66" "\xf1\x5f\x3d\x7f\xcc\xe2\xbf\x46\xfe\x98\xc5\x7f\x52\xfe\x98\xc5\x7f" "\x72\xfe\x98\xc5\x7f\xcd\xfc\x31\x8b\xff\x5a\xf9\x63\x16\xff\xd7\xe6" "\x8f\x59\xfc\x5f\x97\x3f\x66\xf1\x5f\x3b\x7f\xcc\xe2\xbf\x4e\xfe\x98" "\xc5\x7f\xdd\xfc\x31\x8b\xff\xeb\xf3\xc7\x2c\xfe\xeb\xe5\x8f\x59\xfc" "\xdf\x30\xb8\x3c\x7f\xc8\xe2\xbf\x7e\xe7\x3f\x66\xf1\xdf\x20\x7f\xcc" "\xe2\xbf\x61\xfe\x98\xc5\x7f\xa3\xfc\x31\x8b\xff\x1b\xf3\xc7\x2c\xfe" "\x1b\xe7\x8f\x59\xfc\x37\xc9\x1f\xb3\xf8\xbf\x29\x7f\xcc\xe2\xff\xe6" "\xfc\x31\x8b\xff\x5b\xf2\xc7\x2c\xfe\x6f\xcd\x1f\xb3\xf8\xbf\x2d\x7f" "\xcc\xe2\xff\xf6\xfc\x31\x8b\xff\x3b\xf2\xc7\x2c\xfe\x9b\xe6\x8f\x59" "\xfc\x37\xcb\x1f\xb3\xf8\x6f\x9e\x3f\x66\xf1\x7f\x67\xfe\x98\xc5\x7f" "\x8b\xfc\x31\x8b\xff\x96\xf9\x63\x16\xff\xad\xf2\xc7\x2c\xfe\x5b\xe7" "\x8f\x59\xfc\xdf\x95\x3f\x66\xf1\xdf\x26\x7f\xcc\xe2\xff\xee\xfc\x31" "\x8b\xff\x7b\xf2\xc7\x2c\xfe\xdb\xe6\x8f\x59\xfc\xb7\xcb\x1f\xb3\xf8" "\x6f\x9f\x3f\x66\xf1\xdf\x21\x7f\xcc\xe2\xff\xde\xfc\x31\x8b\xff\xfb" "\xf2\xc7\x2c\xfe\x3b\xe6\x8f\x59\xfc\xdf\x9f\x3f\x66\xf1\xdf\x29\x7f" "\xcc\xe2\xff\x81\xfc\x31\x8b\xff\x07\xf3\xc7\x2c\xfe\x1f\xca\x1f\xb3" "\xf8\xef\x9c\x3f\x66\xf1\xdf\x25\x7f\xcc\xe2\xbf\x6b\xfe\x98\xc5\xff" "\xc3\xf9\x63\x16\xff\x8f\xe4\x8f\x59\xfc\x3f\x9a\x3f\x66\xf1\xff\x58" "\xfe\x98\xc5\xff\xe3\xf9\x63\x16\xff\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f" "\x59\xfc\xf7\xc8\x1f\xb3\xf8\x7f\x22\x7f\xcc\xe2\xff\xc9\xfc\x31\x8b" "\xff\x9e\xf9\x63\x16\xff\x4f\xe5\x8f\x59\xfc\xf7\xca\x1f\xb3\xf8\x7f" "\x3a\x7f\xcc\xe2\xff\x99\xfc\x31\x8b\xff\xde\xf9\x63\x16\xff\x7d\xf2" "\xc7\x2c\xfe\xfb\xe6\x8f\x59\xfc\x3f\x9b\x3f\x66\xf1\xff\x5c\xfe\x98" "\xc5\xff\xf3\xf9\x63\x16\xff\xfd\xf2\xc7\x2c\xfe\xfb\xe7\x8f\x59\xfc" "\xbf\x90\x3f\x66\xf1\x3f\x20\x7f\xcc\xe2\x7f\x60\xfe\x98\xc5\xff\x8b" "\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe\x07\xe7\x8f\x59\xfc\xbf\x94\x3f" "\x66\xf1\xff\x72\xfe\x98\xc5\xff\x2b\xf9\x63\x16\xff\xaf\xe6\x8f\x59" "\xfc\xbf\x96\x3f\x66\xf1\xff\x7a\xfe\x98\xc5\xff\x1b\xf9\x63\x16\xff" "\x6f\xe6\x8f\x59\xfc\x0f\xc9\x1f\xb3\xf8\x1f\x9a\x3f\x66\xf1\x3f\x2c" "\x7f\xcc\xe2\x7f\x78\xfe\x98\xc5\xff\x88\xfc\x31\x8b\xff\x91\xf9\x63" "\x16\xff\xa3\xf2\xc7\x2c\xfe\x47\xe7\x8f\x59\xfc\x8f\xc9\x1f\xb3\xf8" "\x1f\x9b\x3f\x66\xf1\x3f\x2e\x7f\xcc\xe2\xff\xad\xfc\x31\x8b\xff\xf1" "\xf9\x63\x16\xff\x13\xf2\xc7\x2c\xfe\x27\xe6\x8f\x59\xfc\x4f\xca\x1f" "\xb3\xf8\x9f\x9c\x3f\x66\xf1\xff\x76\xfe\x98\xc5\xff\x3b\xf9\x63\x16" "\xff\x53\xf2\xc7\x2c\xfe\xa7\xe6\x8f\x59\xfc\x4f\xcb\x1f\xb3\xf8\x9f" "\x9e\x3f\x66\xf1\xff\x6e\xfe\x98\xc5\xff\x8c\xfc\x31\x8b\xff\x99\xf9" "\x63\x16\xff\xb3\xf2\xc7\x2c\xfe\xdf\xcb\x1f\xb3\xf8\x7f\x3f\x7f\xcc" "\xe2\x7f\x76\xfe\x98\xc5\xff\x9c\xfc\x31\x8b\xff\xb9\xf9\x63\x16\xff" "\xf3\xf2\xc7\x2c\xfe\xe7\xe7\x8f\x59\xfc\x2f\xc8\x1f\xb3\xf8\xff\x20" "\x7f\xcc\xe2\xff\xc3\xfc\x31\x8b\xff\x8f\xf2\xc7\x2c\xfe\x3f\xce\x1f" "\xb3\xf8\xff\x24\x7f\xcc\xe2\x7f\x61\xfe\x98\xc5\xff\xa2\xfc\x31\x8b" "\xff\x4f\xf3\xc7\x2c\xfe\x17\xe7\x8f\x59\xfc\x7f\x96\x3f\x66\xf1\xbf" "\x24\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5\xff\xb2\xfc\x31\x8b\xff\xe5\xf9" "\x63\x16\xff\x2b\xf2\xc7\x2c\xfe\x57\xe6\x8f\x59\xfc\xaf\xca\x1f\xb3" "\xf8\xff\x3c\x7f\xcc\xe2\xff\x8b\xfc\x31\x8b\xff\xd5\xf9\x63\x16\xff" "\x5f\xe6\x8f\x59\xfc\xaf\xc9\x1f\xb3\xf8\x5f\x9b\x3f\x66\xf1\xff\x55" "\xfe\x98\xc5\xff\xd7\xf9\x63\x16\xff\xeb\xf2\xc7\x2c\xfe\xbf\xc9\x1f" "\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21\x7f\xcc\xe2\x7f\x63\xfe\x98\xc5" "\xff\xb7\xf9\x63\x16\xff\x9b\xf2\xc7\x2c\xfe\xbf\xcb\x1f\xb3\xf8\xff" "\x3e\x7f\xcc\xe2\xff\x87\xfc\x31\x8b\xff\x1f\xf3\xc7\x2c\xfe\x7f\xca" "\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xff\x73\xfe\x98\xc5\xff\x96\xfc\x31" "\x8b\xff\xad\xf9\x63\x16\xff\xdb\xf2\xc7\x2c\xfe\xb7\xe7\x8f\x59\xfc" "\xff\x92\x3f\x66\xf1\xbf\x23\x7f\xcc\xe2\x7f\x67\xfe\x98\xc5\xff\xaf" "\xf9\x63\x16\xff\xbb\xf2\xc7\x2c\xfe\x7f\xcb\x1f\xb3\xf8\xff\x3d\x7f" "\xcc\xe2\xff\x8f\xfc\x31\x8b\xff\x3f\xf3\xc7\x2c\xfe\x77\xe7\x8f\x59" "\xfc\xef\xc9\x1f\xb3\xf8\xdf\x9b\x3f\x66\xf1\xbf\x2f\x7f\xcc\xe2\x7f" "\x7f\xfe\x98\xc5\x7f\x4a\xfe\x98\xc5\xff\x81\xfc\x31\x8b\xff\x83\xf9" "\x63\x16\xff\xa9\xf9\x63\x12\xff\xd1\x83\xfc\x31\x8b\xff\x50\xfe\x98" "\xc5\x7f\x54\xfe\x98\xc5\x7f\x96\xfc\x31\x8b\xff\xac\xf9\x63\x16\xff" "\xd1\xf9\x63\x16\xff\xd9\xf2\xc7\x2c\xfe\xb3\xe7\x8f\x59\xfc\xe7\xc8" "\x1f\xb3\xf8\xcf\x99\x3f\x66\xf1\x9f\x2b\x7f\xcc\xe2\x3f\x77\xfe\x98" "\xc5\x7f\x9e\xfc\x31\x8b\xff\xbc\xf9\x63\x16\xff\xa7\xe5\x8f\x59\xfc" "\xe7\xcb\x1f\xb3\xf8\x8f\xc9\x1f\xb3\xf8\xcf\x9f\x3f\x66\xf1\x1f\x9b" "\x3f\x66\xf1\x5f\x20\x7f\xcc\xe2\xbf\x60\xfe\x98\xc5\xff\xe9\xf9\x63" "\x16\xff\x67\xe4\x8f\x59\xfc\x9f\x99\x3f\x66\xf1\x5f\x28\x7f\xcc\xe2" "\xff\xac\xfc\x31\x8b\xff\xc2\xf9\x63\x16\xff\x67\xe7\x8f\x59\xfc\x9f" "\x93\x3f\x66\xf1\x5f\x24\x7f\xcc\xe2\xff\xdc\xfc\x31\x8b\xff\xf3\xf2" "\xc7\x2c\xfe\xe3\xf2\xc7\x2c\xfe\xcf\xcf\x1f\xb3\xf8\xbf\x20\x7f\xcc" "\xe2\xff\xc2\xfc\x31\x8b\xff\xa2\xf9\x63\x16\xff\xc5\xf2\xc7\x2c\xfe" "\x2f\xca\x1f\xb3\xf8\x2f\x9e\x3f\x66\xf1\x5f\x22\x7f\xcc\xe2\xff\xe2" "\xfc\x31\x8b\xff\x4b\xf2\xc7\x2c\xfe\x2f\xcd\x1f\xb3\xf8\xbf\x2c\x7f" "\xcc\xe2\xbf\x64\xfe\x98\xc5\xff\xe5\xf9\x63\x16\xff\xa5\xf2\xc7\x2c" "\xfe\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8\x2f\xab\xf2\x1f\x9a\xf5" "\x49\xaf\x29\xf1\x5f\x4e\xe5\xff\xe4\xb3\xf8\x2f\x9f\x3f\x66\xf1\x7f" "\x45\xfe\x98\xc5\x7f\x85\xfc\x31\x8b\xff\x8a\xf9\x63\x16\xff\x95\xf2" "\xc7\x2c\xfe\x2b\xe7\x8f\x59\xfc\x5f\x99\x3f\x66\xf1\x5f\x25\x7f\xcc" "\xe2\xbf\x6a\xfe\x98\xc5\xff\x55\xf9\x63\x16\xff\x57\xe7\x8f\x59\xfc" "\x5f\x93\x3f\x66\xf1\x1f\x9f\x3f\x66\xf1\x9f\x90\x3f\x66\xf1\x9f\x98" "\x3f\x66\xf1\x5f\x2d\x7f\xcc\xe2\xbf\x7a\xfe\x98\xc5\x7f\x8d\xfc\x31" "\x8b\xff\xa4\xfc\x31\x8b\xff\xe4\xfc\x31\x8b\xff\x9a\xf9\x63\x16\xff" "\xb5\xf2\xc7\x2c\xfe\xaf\xcd\x1f\xb3\xf8\xbf\x2e\x7f\xcc\xe2\xbf\x76" "\xfe\x98\xc5\x7f\x9d\xfc\x31\x8b\xff\xba\xf9\x63\x16\xff\xd7\xe7\x8f" "\x59\xfc\xd7\xcb\x1f\xb3\xf8\xbf\x21\x7f\xcc\xe2\xbf\x7e\xfe\x98\xc5" "\x7f\x83\xfc\x31\x8b\xff\x86\xf9\x63\x16\xff\x8d\xf2\xc7\x2c\xfe\x6f" "\xcc\x1f\xb3\xf8\x6f\x9c\x3f\x66\xf1\xdf\x24\x7f\xcc\xe2\xff\xa6\xfc" "\x31\x8b\xff\x9b\xf3\xc7\x2c\xfe\x6f\xc9\x1f\xb3\xf8\xbf\x35\x7f\xcc" "\xe2\xff\xb6\xfc\x31\x8b\xff\xdb\xf3\xc7\x2c\xfe\xef\xc8\x1f\xb3\xf8" "\x6f\x9a\x3f\x66\xf1\xdf\x2c\x7f\xcc\xe2\xbf\x79\xfe\x98\xc5\xff\x9d" "\xf9\x63\x16\xff\x2d\xf2\xc7\x2c\xfe\x5b\xe6\x8f\x59\xfc\xb7\xca\x1f" "\xb3\xf8\x6f\x9d\x3f\x66\xf1\x7f\x57\xfe\x98\xc5\x7f\x9b\xfc\x31\x8b" "\xff\xbb\xf3\xc7\x2c\xfe\xef\xc9\x1f\xb3\xf8\x6f\x9b\x3f\x66\xf1\xdf" "\x2e\x7f\xcc\xe2\xbf\x7d\xfe\x98\xc5\x7f\x87\xfc\x31\x8b\xff\x7b\xf3" "\xc7\x2c\xfe\xef\xcb\x1f\xb3\xf8\xef\x98\x3f\x66\xf1\x7f\x7f\xfe\x98" "\xc5\x7f\xa7\xfc\x31\x8b\xff\x07\xf2\xc7\x2c\xfe\x1f\xcc\x1f\xb3\xf8" "\x7f\x28\x7f\xcc\xe2\xbf\x73\xfe\x98\xc5\x7f\x97\xfc\x31\x8b\xff\xae" "\xf9\x63\x16\xff\x0f\xe7\x8f\x59\xfc\x3f\x92\x3f\x66\xf1\xff\x68\xfe" "\x98\xc5\xff\x63\xf9\x63\x16\xff\x8f\xe7\x8f\x59\xfc\x77\xcb\x1f\xb3" "\xf8\xef\x9e\x3f\x66\xf1\xdf\x23\x7f\xcc\xe2\xff\x89\xfc\x31\x8b\xff" "\x27\xf3\xc7\x2c\xfe\x7b\xe6\x8f\x59\xfc\x3f\x95\x3f\x66\xf1\xdf\x2b" "\x7f\xcc\xe2\xff\xe9\xfc\x31\x8b\xff\x67\xf2\xc7\x2c\xfe\x7b\xe7\x8f" "\x59\xfc\xf7\xc9\x1f\xb3\xf8\xef\x9b\x3f\x66\xf1\xff\x6c\xfe\x98\xc5" "\xff\x73\xf9\x63\x16\xff\xcf\xe7\x8f\x59\xfc\xf7\xcb\x1f\xb3\xf8\xef" "\x9f\x3f\x66\xf1\xff\x42\xfe\x98\xc5\xff\x80\xfc\x31\x8b\xff\x81\xf9" "\x63\x16\xff\x2f\xe6\x8f\x59\xfc\x0f\xca\x1f\xb3\xf8\x1f\x9c\x3f\x66" "\xf1\xff\x52\xfe\x98\xc5\xff\xcb\xf9\x63\x16\xff\xaf\xe4\x8f\x59\xfc" "\xbf\x9a\x3f\x66\xf1\xff\x5a\xfe\x98\xc5\xff\xeb\xf9\x63\x16\xff\x6f" "\xe4\x8f\x59\xfc\xbf\x99\x3f\x66\xf1\x3f\x24\x7f\xcc\xe2\x7f\x68\xfe" "\x98\xc5\xff\xb0\xfc\x31\x8b\xff\xe1\xf9\x63\x16\xff\x23\xf2\xc7\x2c" "\xfe\x47\xe6\x8f\x59\xfc\x8f\xca\x1f\xb3\xf8\x1f\x9d\x3f\x66\xf1\x3f" "\x26\x7f\xcc\xe2\x7f\x6c\xfe\x98\xc5\xff\xb8\xfc\x31\x8b\xff\xb7\xf2" "\xc7\x2c\xfe\xc7\xe7\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8\x9f\x98\x3f\x66" "\xf1\x3f\x29\x7f\xcc\xe2\x7f\x72\xfe\x98\xc5\xff\xdb\xf9\x63\x16\xff" "\xef\xe4\x8f\x59\xfc\x4f\xc9\x1f\xb3\xf8\x9f\x9a\x3f\x66\xf1\x3f\x2d" "\x7f\xcc\xe2\x7f\x7a\xfe\x98\xc5\xff\xbb\xf9\x63\x16\xff\x33\xf2\xc7" "\x2c\xfe\x67\xe6\x8f\x59\xfc\xcf\xca\x1f\xb3\xf8\x7f\x2f\x7f\xcc\xe2" "\xff\xfd\xfc\x31\x8b\xff\xd9\xf9\x63\x16\xff\x73\xf2\xc7\x2c\xfe\xe7" "\xe6\x8f\x59\xfc\xcf\xcb\x1f\xb3\xf8\x9f\x9f\x3f\x66\xf1\xbf\x20\x7f" "\xcc\xe2\xff\x83\xfc\x31\x8b\xff\x0f\xf3\xc7\x2c\xfe\x3f\xca\x1f\xb3" "\xf8\xff\x38\x7f\xcc\xe2\xff\x93\xfc\x31\x8b\xff\x85\xf9\x63\x16\xff" "\x8b\xf2\xc7\x2c\xfe\x3f\xcd\x1f\xb3\xf8\x5f\x9c\x3f\x66\xf1\xff\x59" "\xfe\x98\xc5\xff\x92\xfc\x31\x8b\xff\xa5\xf9\x63\x16\xff\xcb\xf2\xc7" "\x2c\xfe\x97\xe7\x8f\x59\xfc\xaf\xc8\x1f\xb3\xf8\x5f\x99\x3f\x66\xf1" "\xbf\x2a\x7f\xcc\xe2\xff\xf3\xfc\x31\x8b\xff\x2f\xf2\xc7\x2c\xfe\x57" "\xe7\x8f\x59\xfc\x7f\x99\x3f\x66\xf1\xbf\x26\x7f\xcc\xe2\x7f\x6d\xfe" "\x98\xc5\xff\x57\xf9\x63\x16\xff\x5f\xe7\x8f\x59\xfc\xaf\xcb\x1f\xb3" "\xf8\xff\x26\x7f\xcc\xe2\x7f\x7d\xfe\x98\xc5\xff\x86\xfc\x31\x8b\xff" "\x8d\xf9\x63\x16\xff\xdf\xe6\x8f\x59\xfc\x6f\xca\x1f\xb3\xf8\xff\x2e" "\x7f\xcc\xe2\xff\xfb\xfc\x31\x8b\xff\x1f\xf2\xc7\x2c\xfe\x7f\xcc\x1f" "\xb3\xf8\xff\x29\x7f\xcc\xe2\x7f\x73\xfe\x98\xc5\xff\xcf\xf9\x63\x16" "\xff\x5b\xf2\xc7\x2c\xfe\xb7\xe6\x8f\x59\xfc\x6f\xcb\x1f\xb3\xf8\xdf" "\x9e\x3f\x66\xf1\xff\x4b\xfe\x98\xc5\xff\x8e\xfc\x31\x8b\xff\x9d\xf9" "\x63\x16\xff\xbf\xe6\x8f\x59\xfc\xef\xca\x1f\xb3\xf8\xff\x2d\x7f\xcc" "\xe2\xff\xf7\xfc\x31\x8b\xff\x3f\xf2\xc7\x2c\xfe\xff\xcc\x1f\xb3\xf8" "\xdf\x9d\x3f\x66\xf1\xbf\x27\x7f\xcc\xe2\x7f\x6f\xfe\x98\xc5\xff\xbe" "\xfc\x31\x8b\xff\xfd\xf9\x63\x16\xff\x29\xf9\x63\x16\xff\x07\xf2\xc7" "\x2c\xfe\x0f\xe6\x8f\x59\xfc\xa7\xe6\x8f\x49\xfc\x67\x1b\xe4\x8f\x59" "\xfc\x87\xf2\xc7\x2c\xfe\xa3\xf2\xc7\x2c\xfe\xb3\xe4\x8f\x59\xfc\x67" "\xcd\x1f\xb3\xf8\x8f\xce\x1f\xb3\xf8\xcf\x96\x3f\x66\xf1\x9f\x3d\x7f" "\xcc\xe2\x3f\x47\xfe\x98\xc5\x7f\xce\xfc\x31\x8b\xff\x5c\xf9\x63\x16" "\xff\xb9\xf3\xc7\x2c\xfe\xf3\xe4\x8f\x59\xfc\xe7\xcd\x1f\xb3\xf8\x3f" "\x2d\x7f\xcc\xe2\x3f\x5f\xfe\x98\xc5\x7f\x4c\xfe\x98\xc5\x7f\xfe\xfc" "\x31\x8b\xff\xd8\xfc\x31\x8b\xff\x02\xf9\x63\x16\xff\x05\xf3\xc7\x2c" "\xfe\x4f\xcf\x1f\xb3\xf8\x3f\x23\x7f\xcc\xe2\xff\xcc\xfc\x31\x8b\xff" "\x42\xf9\x63\x16\xff\x67\xe5\x8f\x59\xfc\x17\xce\x1f\xb3\xf8\x3f\x3b" "\x7f\xcc\xe2\xff\x9c\xfc\x31\x8b\xff\x22\xf9\x63\x16\xff\xe7\xe6\x8f" "\x59\xfc\x9f\x97\x3f\x66\xf1\x1f\x97\x3f\x66\xf1\x7f\x7e\xfe\x98\xc5" "\xff\x05\xf9\x63\x16\xff\x17\xe6\x8f\x59\xfc\x17\xcd\x1f\xb3\xf8\x2f" "\x96\x3f\x66\xf1\x7f\x51\xfe\x98\xc5\x7f\xf1\xfc\x31\x8b\xff\x12\xf9" "\x63\x16\xff\x17\xe7\x8f\x59\xfc\x5f\x92\x3f\x66\xf1\x7f\x69\xfe\x98" "\xc5\xff\x65\xf9\x63\x16\xff\x25\xf3\xc7\x2c\xfe\x2f\xcf\x1f\xb3\xf8" "\x2f\x95\x3f\x66\xf1\x5f\x3a\x7f\xcc\xe2\xbf\x4c\xfe\x98\xc5\x7f\xd9" "\xfc\x31\x8b\xff\x72\xf9\x63\x16\xff\xe5\xf3\xc7\x2c\xfe\xaf\xc8\x1f" "\xb3\xf8\xaf\x90\x3f\x66\xf1\x5f\x31\x7f\xcc\xe2\xbf\x52\xfe\x98\xc5" "\x7f\xe5\xfc\x31\x8b\xff\x2b\xf3\xc7\x2c\xfe\xab\xe4\x8f\x59\xfc\x57" "\xcd\x1f\xb3\xf8\xbf\x2a\x7f\xcc\xe2\xff\xea\xfc\x31\x8b\xff\x6b\xf2" "\xc7\x2c\xfe\xe3\xf3\xc7\x2c\xfe\x13\xf2\xc7\x2c\xfe\x13\xf3\xc7\x2c" "\xfe\xab\xe5\x8f\x59\xfc\x57\xcf\x1f\xb3\xf8\xaf\x91\x3f\x66\xf1\x9f" "\x94\x3f\x66\xf1\x9f\x9c\x3f\x66\xf1\x5f\x33\x7f\xcc\xe2\xbf\x56\xfe" "\x98\xc5\xff\xb5\xf9\x63\x16\xff\xd7\xe5\x8f\x59\xfc\xd7\xce\x1f\xb3" "\xf8\xaf\x93\x3f\x66\xf1\x5f\x37\x7f\xcc\xe2\xff\xfa\xfc\x31\x8b\xff" "\x7a\xf9\x63\x16\xff\x37\xe4\x8f\x59\xfc\xd7\xcf\x1f\xb3\xf8\x6f\x90" "\x3f\x66\xf1\xdf\x30\x7f\xcc\xe2\xbf\x51\xfe\x98\xc5\xff\x8d\xf9\x63" "\x16\xff\x8d\xf3\xc7\x2c\xfe\x9b\xe4\x8f\x59\xfc\xdf\x94\x3f\x66\xf1" "\x7f\x73\xfe\x98\xc5\xff\x2d\xf9\x63\x16\xff\xb7\xe6\x8f\x59\xfc\xdf" "\x96\x3f\x66\xf1\x7f\x7b\xfe\x98\xc5\xff\x1d\xf9\x63\x16\xff\x4d\xf3" "\xc7\x2c\xfe\x9b\xe5\x8f\x59\xfc\x37\xcf\x1f\xb3\xf8\xbf\x33\x7f\xcc" "\xe2\xbf\x45\xfe\x98\xc5\x7f\xcb\xfc\x31\x8b\xff\x56\xf9\x63\x16\xff" "\xad\xf3\xc7\x2c\xfe\xef\xca\x1f\xb3\xf8\x6f\x93\x3f\x66\xf1\x7f\x77" "\xfe\x98\xc5\xff\x3d\xf9\x63\x16\xff\x6d\xf3\xc7\x2c\xfe\xdb\xe5\x8f" "\x59\xfc\xb7\xcf\x1f\xb3\xf8\xef\x90\x3f\x66\xf1\x7f\x6f\xfe\x98\xc5" "\xff\x7d\xf9\x63\x16\xff\x1d\xf3\xc7\x2c\xfe\xef\xcf\x1f\xb3\xf8\xef" "\x94\x3f\x66\xf1\xff\x40\xfe\x98\xc5\xff\x83\xf9\x63\x16\xff\x0f\xe5" "\x8f\x59\xfc\x77\xce\x1f\xb3\xf8\xef\x92\x3f\x66\xf1\xdf\x35\x7f\xcc" "\xe2\xff\xe1\xfc\x31\x8b\xff\x47\xf2\xc7\x2c\xfe\x1f\xcd\x1f\xb3\xf8" "\x7f\x2c\x7f\xcc\xe2\xff\xf1\xfc\x31\x8b\xff\x6e\xf9\x63\x16\xff\xdd" "\xf3\xc7\x2c\xfe\x7b\xe4\x8f\x59\xfc\x3f\x91\x3f\x66\xf1\xff\x64\xfe" "\x98\xc5\x7f\xcf\xfc\x31\x8b\xff\xa7\xf2\xc7\x2c\xfe\x7b\xe5\x8f\x59" "\xfc\x3f\x9d\x3f\x66\xf1\xff\x4c\xfe\x98\xc5\x7f\xef\xfc\x31\x8b\xff" "\x3e\xf9\x63\x16\xff\x7d\xf3\xc7\x2c\xfe\x9f\xcd\x1f\xb3\xf8\x7f\x2e" "\x7f\xcc\xe2\xff\xf9\xfc\x31\x8b\xff\x7e\xf9\x63\x16\xff\xfd\xf3\xc7" "\x2c\xfe\x5f\xc8\x1f\xb3\xf8\x1f\x90\x3f\x66\xf1\x3f\x30\x7f\xcc\xe2" "\xff\xc5\xfc\x31\x8b\xff\x41\xf9\x63\x16\xff\x83\xf3\xc7\x2c\xfe\x5f" "\xca\x1f\xb3\xf8\x7f\x39\x7f\xcc\xe2\xff\x95\xfc\x31\x8b\xff\x57\xf3" "\xc7\x2c\xfe\x5f\xcb\x1f\xb3\xf8\x7f\x3d\x7f\xcc\xe2\xff\x8d\xfc\x31" "\x8b\xff\x37\xf3\xc7\x2c\xfe\x87\xe4\x8f\x59\xfc\x0f\xcd\x1f\xb3\xf8" "\x1f\x96\x3f\x66\xf1\x3f\x3c\x7f\xcc\xe2\x7f\x44\xfe\x98\xc5\xff\xc8" "\xfc\x31\x8b\xff\x51\xf9\x63\x16\xff\xa3\xf3\xc7\x2c\xfe\xc7\xe4\x8f" "\x59\xfc\x8f\xcd\x1f\xb3\xf8\x1f\x97\x3f\x66\xf1\xff\x56\xfe\x98\xc5" "\xff\xf8\xfc\x31\x8b\xff\x09\xf9\x63\x16\xff\x13\xf3\xc7\x2c\xfe\x27" "\xe5\x8f\x59\xfc\x4f\xce\x1f\xb3\xf8\x7f\x3b\x7f\xcc\xe2\xff\x9d\xfc" "\x31\x8b\xff\x29\xf9\x63\x16\xff\x53\xf3\xc7\x2c\xfe\xa7\xe5\x8f\x59" "\xfc\x4f\xcf\x1f\xb3\xf8\x7f\x37\x7f\xcc\xe2\x7f\x46\xfe\x98\xc5\xff" "\xcc\xfc\x31\x8b\xff\x59\xf9\x63\x16\xff\xef\xe5\x8f\x59\xfc\xbf\x9f" "\x3f\x66\xf1\x3f\x3b\x7f\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc\xfc\x31" "\x8b\xff\x79\xf9\x63\x16\xff\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59\xfc" "\x7f\x90\x3f\x66\xf1\xff\x61\xfe\x98\xc5\xff\x47\xf9\x63\x16\xff\x1f" "\xe7\x8f\x59\xfc\x7f\x92\x3f\x66\xf1\xbf\x30\x7f\xcc\xe2\x7f\x51\xfe" "\x98\xc5\xff\xa7\xf9\x63\x16\xff\x8b\xf3\xc7\x2c\xfe\x3f\xcb\x1f\xb3" "\xf8\x5f\x92\x3f\x66\xf1\xbf\x34\x7f\xcc\xe2\x7f\x59\xfe\x98\xc5\xff" "\xf2\xfc\x31\x8b\xff\x15\xf9\x63\x16\xff\x2b\xf3\xc7\x2c\xfe\x57\xe5" "\x8f\x59\xfc\x7f\x9e\x3f\x66\xf1\xff\x45\xfe\x98\xc5\xff\xea\xfc\x31" "\x8b\xff\x2f\xf3\xc7\x2c\xfe\xd7\xe4\x8f\x59\xfc\xaf\xcd\x1f\xb3\xf8" "\xff\x2a\x7f\xcc\xe2\xff\xeb\xfc\x31\x8b\xff\x75\xf9\x63\x16\xff\xdf" "\xe4\x8f\x59\xfc\xaf\xcf\x1f\xb3\xf8\xdf\x90\x3f\x66\xf1\xbf\x31\x7f" "\xcc\xe2\xff\xdb\xfc\x31\x8b\xff\x4d\xf9\x63\x16\xff\xdf\xe5\x8f\x59" "\xfc\x7f\x9f\x3f\x66\xf1\xff\x43\xfe\x98\xc5\xff\x8f\xf9\x63\x16\xff" "\x3f\xe5\x8f\x59\xfc\x6f\xce\x1f\xb3\xf8\xff\x39\x7f\xcc\xe2\x7f\x4b" "\xfe\x98\xc5\xff\xd6\xfc\x31\x8b\xff\x6d\xf9\x63\x16\xff\xdb\xf3\xc7" "\x2c\xfe\x7f\xc9\x1f\xb3\xf8\xdf\x91\x3f\x66\xf1\xbf\x33\x7f\xcc\xe2" "\xff\xd7\xfc\x31\x8b\xff\x5d\xf9\x63\x16\xff\xbf\xe5\x8f\x59\xfc\xff" "\x9e\x3f\x66\xf1\xff\x47\xfe\x98\xc5\xff\x9f\xf9\x63\x16\xff\xbb\xf3" "\xc7\x2c\xfe\xf7\xe4\x8f\x59\xfc\xef\xcd\x1f\xb3\xf8\xdf\x97\x3f\x66" "\xf1\xbf\x3f\x7f\xcc\xe2\x3f\x25\x7f\xcc\xe2\xff\x40\xfe\x98\xc5\xff" "\xc1\xfc\x31\x8b\xff\xd4\xfc\x31\x89\xff\xec\x83\xfc\x31\x8b\xff\x50" "\xfe\x98\xc5\x7f\x54\xfe\x98\xc5\x7f\x96\xfc\x31\x8b\xff\xac\xf9\x63" "\x16\xff\xd1\xf9\x63\x16\xff\xd9\xf2\xc7\x2c\xfe\xb3\xe7\x8f\x59\xfc" "\xe7\xc8\x1f\xb3\xf8\xcf\x99\x3f\x66\xf1\x9f\x2b\x7f\xcc\xe2\x3f\x77" "\xfe\x98\xc5\x7f\x9e\xfc\x31\x8b\xff\xbc\xf9\x63\x16\xff\xa7\xe5\x8f" "\x59\xfc\xe7\xcb\x1f\xb3\xf8\x8f\xc9\x1f\xb3\xf8\xcf\x9f\x3f\x66\xf1" "\x1f\x9b\x3f\x66\xf1\x5f\x20\x7f\xcc\xe2\xbf\x60\xfe\x98\xc5\xff\xe9" "\xf9\x63\x16\xff\x67\xe4\x8f\x59\xfc\x9f\x99\x3f\x66\xf1\x5f\x28\x7f" "\xcc\xe2\xff\xac\xfc\x31\x8b\xff\xc2\xf9\x63\x16\xff\x67\xe7\x8f\x59" "\xfc\x9f\x93\x3f\x66\xf1\x5f\x24\x7f\xcc\xe2\xff\xdc\xfc\x31\x8b\xff" "\xf3\xf2\xc7\x2c\xfe\xe3\xf2\xc7\x2c\xfe\xcf\xcf\x1f\xb3\xf8\xbf\x20" "\x7f\xcc\xe2\xff\xc2\xfc\x31\x8b\xff\xa2\xf9\x63\x16\xff\xc5\xf2\xc7" "\x2c\xfe\x2f\xca\x1f\xb3\xf8\x2f\x9e\x3f\x66\xf1\x5f\x22\x7f\xcc\xe2" "\xff\xe2\xfc\x31\x8b\xff\x4b\xf2\xc7\x2c\xfe\x2f\xcd\x1f\xb3\xf8\xbf" "\x2c\x7f\xcc\xe2\xbf\x64\xfe\x98\xc5\xff\xe5\xf9\x63\x16\xff\xa5\xf2" "\xc7\x2c\xfe\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8\x2f\x9b\x3f\x66" "\xf1\x5f\x2e\x7f\xcc\xe2\xbf\x7c\xfe\x98\xc5\xff\x15\xf9\x63\x16\xff" "\x15\xf2\xc7\x2c\xfe\x2b\xe6\x8f\x59\xfc\x57\xca\x1f\xb3\xf8\xaf\x9c" "\x3f\x66\xf1\x7f\x65\xfe\x98\xc5\x7f\x95\xfc\x31\x8b\xff\xaa\xf9\x63" "\x16\xff\x57\xe5\x8f\x59\xfc\x5f\x9d\x3f\x66\xf1\x7f\x4d\xfe\x98\xc5" "\x7f\x7c\xfe\x98\xc5\x7f\x42\xfe\x98\xc5\x7f\x62\xfe\x98\xc5\x7f\xb5" "\xfc\x31\x8b\xff\xea\xf9\x63\x16\xff\x35\xf2\xc7\x2c\xfe\x93\xf2\xc7" "\x2c\xfe\x93\xf3\xc7\x2c\xfe\x6b\xe6\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8" "\xbf\x36\x7f\xcc\xe2\xff\xba\xfc\x31\x8b\xff\xda\xf9\x63\x16\xff\x75" "\xf2\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\x5f\x9f\x3f\x66\xf1\x5f\x2f\x7f" "\xcc\xe2\xff\x86\xfc\x31\x8b\xff\xfa\xf9\x63\x16\xff\x0d\xf2\xc7\x2c" "\xfe\x1b\xe6\x8f\x59\xfc\x37\xca\x1f\xb3\xf8\xbf\x31\x7f\xcc\xe2\xbf" "\x71\xfe\x98\xc5\x7f\x93\xfc\x31\x8b\xff\x9b\xf2\xc7\x2c\xfe\x6f\xce" "\x1f\xb3\xf8\xbf\x25\x7f\xcc\xe2\xff\xd6\xfc\x31\x8b\xff\xdb\xf2\xc7" "\x2c\xfe\x6f\xcf\x1f\xb3\xf8\xbf\x23\x7f\xcc\xe2\xbf\x69\xfe\x98\xc5" "\x7f\xb3\xfc\x31\x8b\xff\xe6\xf9\x63\x16\xff\x77\xe6\x8f\x59\xfc\xb7" "\xc8\x1f\xb3\xf8\x6f\x99\x3f\x66\xf1\xdf\x2a\x7f\xcc\xe2\xbf\x75\xfe" "\x98\xc5\xff\x5d\xf9\x63\x16\xff\x6d\xf2\xc7\x2c\xfe\xef\xce\x1f\xb3" "\xf8\xbf\x27\x7f\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f\xbb\xfc\x31\x8b\xff" "\xf6\xf9\x63\x16\xff\x1d\xf2\xc7\x2c\xfe\xef\xcd\x1f\xb3\xf8\xbf\x2f" "\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\xff\xfd\xf9\x63\x16\xff\x9d\xf2\xc7" "\x2c\xfe\x1f\xc8\x1f\xb3\xf8\x7f\x30\x7f\xcc\xe2\xff\xa1\xfc\x31\x8b" "\xff\xce\xf9\x63\x16\xff\x5d\xf2\xc7\x2c\xfe\xbb\xe6\x8f\x59\xfc\x3f" "\x9c\x3f\x66\xf1\xff\x48\xfe\x98\xc5\xff\xa3\xf9\x63\x16\xff\x8f\xe5" "\x8f\x59\xfc\x3f\x9e\x3f\x66\xf1\xdf\x2d\x7f\xcc\xe2\xbf\x7b\xfe\x98" "\xc5\x7f\x8f\xfc\x31\x8b\xff\x27\xf2\xc7\x2c\xfe\x9f\xcc\x1f\xb3\xf8" "\xef\x99\x3f\x66\xf1\xff\x54\xfe\x98\xc5\x7f\xaf\xfc\x31\x8b\xff\xa7" "\xf3\xc7\x2c\xfe\x9f\xc9\x1f\xb3\xf8\xef\x9d\x3f\x66\xf1\xdf\x27\x7f" "\xcc\xe2\xbf\x6f\xfe\x98\xc5\xff\xb3\xf9\x63\x16\xff\xcf\xe5\x8f\x59" "\xfc\x3f\x9f\x3f\x66\xf1\xdf\x2f\x7f\xcc\xe2\xbf\x7f\xfe\x98\xc5\xff" "\x0b\xf9\x63\x16\xff\x03\xf2\xc7\x2c\xfe\x07\xe6\x8f\x59\xfc\xbf\x98" "\x3f\x66\xf1\x3f\x28\x7f\xcc\xe2\x7f\x70\xfe\x98\xc5\xff\x4b\xf9\x63" "\x16\xff\x2f\xe7\x8f\x59\xfc\xbf\x92\x3f\x66\xf1\xff\x6a\xfe\x98\xc5" "\xff\x6b\xf9\x63\x16\xff\xaf\xe7\x8f\x59\xfc\xbf\x91\x3f\x66\xf1\xff" "\x66\xfe\x98\xc5\xff\x90\xfc\x31\x8b\xff\xa1\xf9\x63\x16\xff\xc3\xf2" "\xc7\x2c\xfe\x87\xe7\x8f\x59\xfc\x8f\xc8\x1f\xb3\xf8\x1f\x99\x3f\x66" "\xf1\x3f\x2a\x7f\xcc\xe2\x7f\x74\xfe\x98\xc5\xff\x98\xfc\x31\x8b\xff" "\xb1\xf9\x63\x16\xff\xe3\xf2\xc7\x2c\xfe\xdf\xca\x1f\xb3\xf8\x1f\x9f" "\x3f\x66\xf1\x3f\x21\x7f\xcc\xe2\x7f\x62\xfe\x98\xc5\xff\xa4\xfc\x31" "\x8b\xff\xc9\xf9\x63\x16\xff\x6f\xe7\x8f\x59\xfc\xbf\x93\x3f\x66\xf1" "\x3f\x25\x7f\xcc\xe2\x7f\x6a\xfe\x98\xc5\xff\xb4\xfc\x31\x8b\xff\xe9" "\xf9\x63\x16\xff\xef\xe6\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f\x99\x3f" "\x66\xf1\x3f\x2b\x7f\xcc\xe2\xff\xbd\xfc\x31\x8b\xff\xf7\xf3\xc7\x2c" "\xfe\x67\xe7\x8f\x59\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66\xf1\x3f" "\x2f\x7f\xcc\xe2\x7f\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff\x0f\xf2" "\xc7\x2c\xfe\x3f\xcc\x1f\xb3\xf8\xff\x28\x7f\xcc\xe2\xff\xe3\xfc\x31" "\x8b\xff\x4f\xf2\xc7\x2c\xfe\x17\xe6\x8f\x59\xfc\x2f\xca\x1f\xb3\xf8" "\xff\x34\x7f\xcc\xe2\x7f\x71\xfe\x98\xc5\xff\x67\xf9\x63\x16\xff\x4b" "\xf2\xc7\x2c\xfe\x97\xe6\x8f\x59\xfc\x2f\xcb\x1f\xb3\xf8\x5f\x9e\x3f" "\x66\xf1\xbf\x22\x7f\xcc\xe2\x7f\x65\xfe\x98\xc5\xff\xaa\xfc\x31\x8b" "\xff\xcf\xf3\xc7\x2c\xfe\xbf\xc8\x1f\xb3\xf8\x5f\x9d\x3f\x66\xf1\xff" "\x65\xfe\x98\xc5\xff\x9a\xfc\x31\x8b\xff\xb5\xf9\x63\x16\xff\x5f\xe5" "\x8f\x59\xfc\x7f\x9d\x3f\x66\xf1\xbf\x2e\x7f\xcc\xe2\xff\x9b\xfc\x31" "\x8b\xff\xf5\xf9\x63\x16\xff\x1b\xf2\xc7\x2c\xfe\x37\xe6\x8f\x59\xfc" "\x7f\x9b\x3f\x66\xf1\xbf\x29\x7f\xcc\xe2\xff\xbb\xfc\x31\x8b\xff\xef" "\xf3\xc7\x2c\xfe\x7f\xc8\x1f\xb3\xf8\xff\x31\x7f\xcc\xe2\xff\xa7\xfc" "\x31\x8b\xff\xcd\xf9\x63\x16\xff\x3f\xe7\x8f\x59\xfc\x6f\xc9\x1f\xb3" "\xf8\xdf\x9a\x3f\x66\xf1\xbf\x2d\x7f\xcc\xe2\x7f\x7b\xfe\x98\xc5\xff" "\x2f\xf9\x63\x16\xff\x3b\xf2\xc7\x2c\xfe\x77\xe6\x8f\x59\xfc\xff\x9a" "\x3f\x66\xf1\xbf\x2b\x7f\xcc\xe2\xff\xb7\xfc\x31\x8b\xff\xdf\xf3\xc7" "\x2c\xfe\xff\xc8\x1f\xb3\xf8\xff\x33\x7f\xcc\xe2\x7f\x77\xfe\x98\xc5" "\xff\x9e\xfc\x31\x8b\xff\xbd\xf9\x63\x16\xff\xfb\xf2\xc7\x2c\xfe\xf7" "\xe7\x8f\x59\xfc\xa7\xe4\x8f\x59\xfc\x1f\xc8\x1f\xb3\xf8\x3f\x98\x3f" "\x66\xf1\x9f\x9a\x3f\x26\xf1\x9f\x63\x90\x3f\x66\xf1\x1f\xca\x1f\xb3" "\xf8\x8f\xca\x1f\xb3\xf8\xcf\x92\x3f\x66\xf1\x9f\x35\x7f\xcc\xe2\x3f" "\x3a\x7f\xcc\xe2\x3f\x5b\xfe\x98\xc5\x7f\xf6\xfc\x31\x8b\xff\x1c\xf9" "\x63\x16\xff\x39\xf3\xc7\x2c\xfe\x73\xe5\x8f\x59\xfc\xe7\xce\x1f\xb3" "\xf8\xcf\x93\x3f\x66\xf1\x9f\x37\x7f\xcc\xe2\xff\xb4\xfc\x31\x8b\xff" "\x7c\xf9\x63\x16\xff\x31\xf9\x63\x16\xff\xf9\xf3\xc7\x2c\xfe\x63\xf3" "\xc7\x2c\xfe\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3\xf8\x3f\x3d\x7f\xcc" "\xe2\xff\x8c\xfc\x31\x8b\xff\x33\xf3\xc7\x2c\xfe\x0b\xe5\x8f\x59\xfc" "\x9f\x95\x3f\x66\xf1\x5f\x38\x7f\xcc\xe2\xff\xec\xfc\x31\x8b\xff\x73" "\xf2\xc7\x2c\xfe\x8b\xe4\x8f\x59\xfc\x9f\x9b\x3f\x66\xf1\x7f\x5e\xfe" "\x98\xc5\x7f\x5c\xfe\x98\xc5\xff\xf9\xf9\x63\x16\xff\x17\xe4\x8f\x59" "\xfc\x5f\x98\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\xbf\x58\xfe\x98\xc5\xff" "\x45\xf9\x63\x16\xff\xc5\xf3\xc7\x2c\xfe\x4b\xe4\x8f\x59\xfc\x5f\x9c" "\x3f\x66\xf1\x7f\x49\xfe\x98\xc5\xff\xa5\xf9\x63\x16\xff\x97\xe5\x8f" "\x59\xfc\x97\xcc\x1f\xb3\xf8\xbf\x3c\x7f\xcc\xe2\xbf\x54\xfe\x98\xc5" "\x7f\xe9\xfc\x31\x8b\xff\x32\xf9\x63\x16\xff\x65\xf3\xc7\x2c\xfe\xcb" "\xe5\x8f\x59\xfc\x97\xcf\x1f\xb3\xf8\xbf\x22\x7f\xcc\xe2\xbf\x42\xfe" "\x98\xc5\x7f\xc5\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c" "\xfe\xaf\xcc\x1f\xb3\xf8\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xff" "\xaa\xfc\x31\x8b\xff\xab\xf3\xc7\x2c\xfe\xaf\xc9\x1f\xb3\xf8\x8f\xcf" "\x1f\xb3\xf8\x4f\xc8\x1f\xb3\xf8\x4f\xcc\x1f\xb3\xf8\xaf\x96\x3f\x66" "\xf1\x5f\x3d\x7f\xcc\xe2\xbf\x46\xfe\x98\xc5\x7f\x52\xfe\x98\xc5\x7f" "\x72\xfe\x98\xc5\x7f\xcd\xfc\x31\x8b\xff\x5a\xf9\x63\x16\xff\xd7\xe6" "\x8f\x59\xfc\x5f\x97\x3f\x66\xf1\x5f\x3b\x7f\xcc\xe2\xbf\x4e\xfe\x98" "\xc5\x7f\xdd\xfc\x31\x8b\xff\xeb\xf3\xc7\x2c\xfe\xeb\xe5\x8f\x59\xfc" "\xdf\x90\x3f\x66\xf1\x5f\x3f\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5\x7f\xc3" "\xfc\x31\x8b\xff\x46\xf9\x63\x16\xff\x37\xe6\x8f\x59\xfc\x37\xce\x1f" "\xb3\xf8\x6f\x92\x3f\x66\xf1\x7f\x53\xfe\x98\xc5\xff\xcd\xf9\x63\x16" "\xff\xb7\xe4\x8f\x59\xfc\xdf\x9a\x3f\x66\xf1\x7f\x5b\xfe\x98\xc5\xff" "\xed\xf9\x63\x16\xff\x77\xe4\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\x6f\x96" "\x3f\x66\xf1\xdf\x3c\x7f\xcc\xe2\xff\xce\xfc\x31\x8b\xff\x16\xf9\x63" "\x16\xff\x2d\xf3\xc7\x2c\xfe\x5b\xe5\x8f\x59\xfc\xb7\xce\x1f\xb3\xf8" "\xbf\x2b\x7f\xcc\xe2\xbf\x4d\xfe\x98\xc5\xff\xdd\xf9\x63\x16\xff\xf7" "\xe4\x8f\x59\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1\xdf\x3e\x7f" "\xcc\xe2\xbf\x43\xfe\x98\xc5\xff\xbd\xf9\x63\x16\xff\xf7\xe5\x8f\x59" "\xfc\x77\xcc\x1f\xb3\xf8\xbf\x3f\x7f\xcc\xe2\xbf\x53\xfe\x98\xc5\xff" "\x03\xf9\x63\x16\xff\x0f\xe6\x8f\x59\xfc\x3f\x94\x3f\x66\xf1\xdf\x39" "\x7f\xcc\xe2\xbf\x4b\xfe\x98\xc5\x7f\xd7\xfc\x31\x8b\xff\x87\xf3\xc7" "\x2c\xfe\x1f\xc9\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2\xff\xb1\xfc\x31\x8b" "\xff\xc7\xf3\xc7\x2c\xfe\xbb\xe5\x8f\x59\xfc\x77\xcf\x1f\xb3\xf8\xef" "\x91\x3f\x66\xf1\xff\x44\xfe\x98\xc5\xff\x93\xf9\x63\x16\xff\x3d\xf3" "\xc7\x2c\xfe\x9f\xca\x1f\xb3\xf8\xef\x95\x3f\x66\xf1\xff\x74\xfe\x98" "\xc5\xff\x33\xf9\x63\x16\xff\xbd\xf3\xc7\x2c\xfe\xfb\xe4\x8f\x59\xfc" "\xf7\xcd\x1f\xb3\xf8\x7f\x36\x7f\xcc\xe2\xff\xb9\xfc\x31\x8b\xff\xe7" "\xf3\xc7\x2c\xfe\xfb\xe5\x8f\x59\xfc\xf7\xcf\x1f\xb3\xf8\x7f\x21\x7f" "\xcc\xe2\x7f\x40\xfe\x98\xc5\xff\xc0\xfc\x31\x8b\xff\x17\xf3\xc7\x2c" "\xfe\x07\xe5\x8f\x59\xfc\x0f\xce\x1f\xb3\xf8\x7f\x29\x7f\xcc\xe2\xff" "\xe5\xfc\x31\x8b\xff\x57\xf2\xc7\x2c\xfe\x5f\xcd\x1f\xb3\xf8\x7f\x2d" "\x7f\xcc\xe2\xff\xf5\xfc\x31\x8b\xff\x37\xf2\xc7\x2c\xfe\xdf\xcc\x1f" "\xb3\xf8\x1f\x92\x3f\x66\xf1\x3f\x34\x7f\xcc\xe2\x7f\x58\xfe\x98\xc5" "\xff\xf0\xfc\x31\x8b\xff\x11\xf9\x63\x16\xff\x23\xf3\xc7\x2c\xfe\x47" "\xe5\x8f\x59\xfc\x8f\xce\x1f\xb3\xf8\x1f\x93\x3f\x66\xf1\x3f\x36\x7f" "\xcc\xe2\x7f\x5c\xfe\x98\xc5\xff\x5b\xf9\x63\x16\xff\xe3\xf3\xc7\x2c" "\xfe\x27\xe4\x8f\x59\xfc\x4f\xcc\x1f\xb3\xf8\x9f\x94\x3f\x66\xf1\x3f" "\x39\x7f\xcc\xe2\xff\xed\xfc\x31\x8b\xff\x77\xf2\xc7\x2c\xfe\xa7\xe4" "\x8f\x59\xfc\x4f\xcd\x1f\xb3\xf8\x9f\x96\x3f\x66\xf1\x3f\x3d\x7f\xcc" "\xe2\xff\xdd\xfc\x31\x8b\xff\x19\xf9\x63\x16\xff\x33\xf3\xc7\x2c\xfe" "\x67\xe5\x8f\x59\xfc\xbf\x97\x3f\x66\xf1\xff\x7e\xfe\x98\xc5\xff\xec" "\xfc\x31\x8b\xff\x39\xf9\x63\x16\xff\x73\xf3\xc7\x2c\xfe\xe7\xe5\x8f" "\x59\xfc\xcf\xcf\x1f\xb3\xf8\x5f\x90\x3f\x66\xf1\xff\x41\xfe\x98\xc5" "\xff\x87\xf9\x63\x16\xff\x1f\xe5\x8f\x59\xfc\x7f\x9c\x3f\x66\xf1\xff" "\x49\xfe\x98\xc5\xff\xc2\xfc\x31\x8b\xff\x45\xf9\x63\x16\xff\x9f\xe6" "\x8f\x59\xfc\x2f\xce\x1f\xb3\xf8\xff\x2c\x7f\xcc\xe2\x7f\x49\xfe\x98" "\xc5\xff\xd2\xfc\x31\x8b\xff\x65\xf9\x63\x16\xff\xcb\xf3\xc7\x2c\xfe" "\x57\xe4\x8f\x59\xfc\xaf\xcc\x1f\xb3\xf8\x5f\x95\x3f\x66\xf1\xff\x79" "\xfe\x98\xc5\xff\x17\xf9\x63\x16\xff\xab\xf3\xc7\x2c\xfe\xbf\xcc\x1f" "\xb3\xf8\x5f\x93\x3f\x66\xf1\xbf\x36\x7f\xcc\xe2\xff\xab\xfc\x31\x8b" "\xff\xaf\xf3\xc7\x2c\xfe\xd7\xe5\x8f\x59\xfc\x7f\x93\x3f\x66\xf1\xbf" "\x3e\x7f\xcc\xe2\x7f\x43\xfe\x98\xc5\xff\xc6\xfc\x31\x8b\xff\x6f\xf3" "\xc7\x2c\xfe\x37\xe5\x8f\x59\xfc\x7f\x97\x3f\x66\xf1\xff\x7d\xfe\x98" "\xc5\xff\x0f\xf9\x63\x16\xff\x3f\xe6\x8f\x59\xfc\xff\x94\x3f\x66\xf1" "\xbf\x39\x7f\xcc\xe2\xff\xe7\xfc\x31\x8b\xff\x2d\xf9\x63\x16\xff\x5b" "\xf3\xc7\x2c\xfe\xb7\xe5\x8f\x59\xfc\x6f\xcf\x1f\xb3\xf8\xff\x25\x7f" "\xcc\xe2\x7f\x47\xfe\x98\xc5\xff\xce\xfc\x31\x8b\xff\x5f\xf3\xc7\x2c" "\xfe\x77\xe5\x8f\x59\xfc\xff\x96\x3f\x66\xf1\xff\x7b\xfe\x98\xc5\xff" "\x1f\xf9\x63\x16\xff\x7f\xe6\x8f\x59\xfc\xef\xce\x1f\xb3\xf8\xdf\x93" "\x3f\x66\xf1\xbf\x37\x7f\xcc\xe2\x7f\x5f\xfe\x98\xc5\xff\xfe\xfc\x31" "\x8b\xff\x94\xfc\x31\x8b\xff\x03\xf9\x63\x16\xff\x07\xf3\xc7\x2c\xfe" "\x53\xf3\xc7\x24\xfe\x73\x0e\xf2\xc7\x2c\xfe\x43\xf9\x63\x16\xff\x51" "\xf9\x63\x16\xff\x59\xf2\xc7\x2c\xfe\xb3\xe6\x8f\x59\xfc\x47\xe7\x8f" "\x59\xfc\x67\xcb\x1f\xb3\xf8\xcf\x9e\x3f\x66\xf1\x9f\x23\x7f\xcc\xe2" "\x3f\x67\xfe\x98\xc5\x7f\xae\xfc\x31\x8b\xff\xdc\xf9\x63\x16\xff\x79" "\xf2\xc7\x2c\xfe\xf3\xe6\x8f\x59\xfc\x9f\x96\x3f\x66\xf1\x9f\xef\x7f" "\xf6\x1f\xf5\xff\xeb\xb8\xfe\x8f\x66\xf1\x1f\xd3\xf9\x8f\x59\xfc\xe7" "\xcf\x1f\xb3\xf8\x8f\xcd\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1\x5f\x30\x7f" "\xcc\xe2\xff\xf4\xfc\x31\x8b\xff\x33\xf2\xc7\x2c\xfe\xcf\xcc\x1f\xb3" "\xf8\x2f\x94\x3f\xf6\xdf\xed\x3f\x7a\xfa\xd2\x39\x9f\x95\x3f\xf6\xdf" "\xed\xff\x70\x73\x2e\x9c\x3f\x66\xf1\x7f\x76\xfe\x98\xc5\xff\x39\xf9" "\x63\x16\xff\x45\xf2\xc7\x2c\xfe\xcf\xcd\x1f\xb3\xf8\x3f\xcf\xe7\x3f" "\xcb\x93\x59\xc9\xe2\x3f\xce\xe7\xff\xa4\xb2\xf8\x3f\x3f\x7f\xcc\xe2" "\xff\x82\xfc\x31\x8b\xff\x0b\xf3\xc7\x2c\xfe\x8b\xe6\x8f\x59\xfc\x17" "\xcb\x1f\xb3\xf8\xbf\x28\x7f\xcc\xe2\xbf\x78\xfe\x98\xc5\x7f\x89\xfc" "\x31\x8b\xff\x8b\xf3\xc7\x2c\xfe\x2f\xc9\x1f\xb3\xf8\xbf\x34\x7f\xcc" "\xe2\xff\xb2\xfc\x31\x8b\xff\x92\xf9\x63\x16\xff\x97\xe7\x8f\x59\xfc" "\x97\xca\x1f\xb3\xf8\x2f\x9d\x3f\x66\xf1\x5f\x26\x7f\xcc\xe2\xbf\x6c" "\xfe\x98\xc5\x7f\xb9\xfc\x31\x8b\xff\xf2\xf9\x63\x16\xff\x57\xe4\x8f" "\x59\xfc\x57\xc8\x1f\xb3\xf8\xaf\x98\x3f\x66\xf1\x5f\x29\x7f\xcc\xe2" "\xbf\x72\xfe\x98\xc5\xff\x95\xf9\x63\x16\xff\x55\xf2\xc7\x2c\xfe\xab" "\xe6\x8f\x59\xfc\x5f\x95\x3f\x66\xf1\x7f\x75\xfe\x98\xc5\xff\x35\xf9" "\x63\x16\xff\xf1\xf9\x63\x16\xff\x09\xf9\x63\x16\xff\x89\xf9\x63\x16" "\xff\xd5\xf2\xc7\x2c\xfe\xab\xe7\x8f\x59\xfc\xd7\xc8\x1f\xb3\xf8\x4f" "\xca\x1f\xb3\xf8\x4f\xce\x1f\xb3\xf8\xaf\x99\x3f\x66\xf1\x5f\x2b\x7f" "\xcc\xe2\xff\xda\xfc\x31\x8b\xff\xeb\xf2\xc7\x2c\xfe\x6b\xe7\x8f\x59" "\xfc\xd7\xc9\x1f\xb3\xf8\xaf\x9b\x3f\x66\xf1\x7f\x7d\xfe\x98\xc5\x7f" "\xbd\xfc\x31\x8b\xff\x1b\xf2\xc7\x2c\xfe\xeb\xe7\x8f\x59\xfc\x37\xc8" "\x1f\xb3\xf8\x6f\x98\x3f\x66\xf1\xdf\x28\x7f\xcc\xe2\xff\xc6\xfc\x31" "\x8b\xff\xc6\xf9\x63\x16\xff\x4d\xf2\xc7\x2c\xfe\x6f\xca\x1f\xb3\xf8" "\xbf\x39\x7f\xcc\xe2\xff\x96\xfc\x31\x8b\xff\x5b\xf3\xc7\x2c\xfe\x6f" "\xcb\x1f\xb3\xf8\xbf\x3d\x7f\xcc\xe2\xff\x8e\xfc\x31\x8b\xff\xa6\xf9" "\x63\x16\xff\xcd\xf2\xc7\x2c\xfe\x9b\xe7\x8f\x59\xfc\xdf\x99\x3f\x66" "\xf1\xdf\x22\x7f\xcc\xe2\xbf\x65\xfe\x98\xc5\x7f\xab\xfc\x31\x8b\xff" "\xd6\xf9\x63\x16\xff\x77\xe5\x8f\x59\xfc\xb7\xc9\x1f\xb3\xf8\xbf\x3b" "\x7f\xcc\xe2\xff\x9e\xfc\x31\x8b\xff\xb6\xf9\x63\x16\xff\xed\xf2\xc7" "\x2c\xfe\xdb\xe7\x8f\x59\xfc\x77\xc8\x1f\xb3\xf8\xbf\x37\x7f\xcc\xe2" "\xff\xbe\xfc\x31\x8b\xff\x8e\xf9\x63\x16\xff\xf7\xe7\x8f\x59\xfc\x77" "\xca\x1f\xb3\xf8\x7f\x20\x7f\xcc\xe2\xff\xc1\xfc\x31\x8b\xff\x87\xf2" "\xc7\x2c\xfe\x3b\xe7\x8f\x59\xfc\x77\xc9\x1f\xb3\xf8\xef\x9a\x3f\x66" "\xf1\xff\x70\xfe\x98\xc5\xff\x23\xf9\x63\x16\xff\x8f\xe6\x8f\x59\xfc" "\x3f\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5\x7f\xb7\xfc\x31\x8b\xff\xee" "\xf9\x63\x16\xff\x3d\xf2\xc7\x2c\xfe\x9f\xc8\x1f\xb3\xf8\x7f\x32\x7f" "\xcc\xe2\xbf\x67\xfe\x98\xc5\xff\x53\xf9\x63\x16\xff\xbd\xf2\xc7\x2c" "\xfe\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f\xcc\xe2\xbf\x77\xfe\x98\xc5\x7f" "\x9f\xfc\x31\x8b\xff\xbe\xf9\x63\x16\xff\xcf\xe6\x8f\x59\xfc\x3f\x97" "\x3f\x66\xf1\xff\x7c\xfe\x98\xc5\x7f\xbf\xfc\x31\x8b\xff\xfe\xf9\x63" "\x16\xff\x2f\xe4\x8f\x59\xfc\x0f\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1" "\xff\x62\xfe\x98\xc5\xff\xa0\xfc\x31\x8b\xff\xc1\xf9\x63\x16\xff\x2f" "\xe5\x8f\x59\xfc\xbf\x9c\x3f\x66\xf1\xff\x4a\xfe\x98\xc5\xff\xab\xf9" "\x63\x16\xff\xaf\xe5\x8f\x59\xfc\xbf\x9e\x3f\x66\xf1\xff\x46\xfe\x98" "\xc5\xff\x9b\xf9\x63\x16\xff\x43\xf2\xc7\x2c\xfe\x87\xe6\x8f\x59\xfc" "\x0f\xcb\x1f\xb3\xf8\x1f\x9e\x3f\x66\xf1\x3f\x22\x7f\xcc\xe2\x7f\x64" "\xfe\x98\xc5\xff\xa8\xfc\x31\x8b\xff\xd1\xf9\x63\x16\xff\x63\xf2\xc7" "\x2c\xfe\xc7\xe6\x8f\x59\xfc\x8f\xcb\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2" "\x7f\x7c\xfe\x98\xc5\xff\x84\xfc\x31\x8b\xff\x89\xf9\x63\x16\xff\x93" "\xf2\xc7\x2c\xfe\x27\xe7\x8f\x59\xfc\xbf\x9d\x3f\x66\xf1\xff\x4e\xfe" "\x98\xc5\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16\xff\xd3\xf2\xc7\x2c" "\xfe\xa7\xe7\x8f\x59\xfc\xbf\x9b\x3f\x66\xf1\x3f\x23\x7f\xcc\xe2\x7f" "\x66\xfe\x98\xc5\xff\xac\xfc\x31\x8b\xff\xf7\xf2\xc7\x2c\xfe\xdf\xcf" "\x1f\xb3\xf8\x9f\x9d\x3f\x66\xf1\x3f\x27\x7f\xcc\xe2\x7f\x6e\xfe\x98" "\xc5\xff\xbc\xfc\x31\x8b\xff\xf9\xf9\x63\x16\xff\x0b\xf2\xc7\x2c\xfe" "\x3f\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc\x31\x8b\xff\x8f" "\xf3\xc7\x2c\xfe\x3f\xc9\x1f\xb3\xf8\x5f\x98\x3f\x66\xf1\xbf\x28\x7f" "\xcc\xe2\xff\xd3\xfc\x31\x8b\xff\xc5\xf9\x63\x16\xff\x9f\xe5\x8f\x59" "\xfc\x2f\xc9\x1f\xb3\xf8\x5f\x9a\x3f\x66\xf1\xbf\x2c\x7f\xcc\xe2\x7f" "\x79\xfe\x98\xc5\xff\x8a\xfc\x31\x8b\xff\x95\xf9\x63\x16\xff\xab\xf2" "\xc7\x2c\xfe\x3f\xcf\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\x7f\x75\xfe\x98" "\xc5\xff\x97\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\xd7\xe6\x8f\x59\xfc" "\x7f\x95\x3f\x66\xf1\xff\x75\xfe\x98\xc5\xff\xba\xfc\x31\x8b\xff\x6f" "\xf2\xc7\x1e\xed\x3f\xfa\xa9\x1e\xce\xbf\xdf\xe3\xf8\x5f\x9f\x3f\x66" "\x39\xff\x6f\xc8\x1f\xb3\xf8\xdf\x98\x3f\x66\xf1\xff\x6d\xfe\x98\xc5" "\xff\xa6\xfc\x31\x8b\xff\xef\xf2\xc7\x2c\xfe\xbf\xcf\x1f\xb3\xf8\xff" "\x21\x7f\xcc\xe2\xff\xc7\xfc\x31\x8b\xff\x9f\xf2\xc7\x2c\xfe\x37\xe7" "\x8f\x59\xfc\xff\x9c\x3f\x66\xf1\xbf\x25\x7f\xcc\xe2\x7f\x6b\xfe\x98" "\xc5\xff\xb6\xfc\x31\x8b\xff\xed\xf9\x63\x16\xff\xbf\xe4\x8f\x59\xfc" "\xef\xc8\x1f\xb3\xf8\xdf\x99\x3f\x66\xf1\xff\x6b\xfe\x98\xc5\xff\xae" "\xfc\x31\x8b\xff\xdf\xf2\xc7\x2c\xfe\x7f\xcf\x1f\xb3\xf8\xff\x23\x7f" "\xcc\xe2\xff\xcf\xfc\x31\x8b\xff\xdd\xf9\x63\x16\xff\x7b\xf2\xc7\x2c" "\xfe\xf7\xe6\x8f\x59\xfc\xef\xcb\x1f\xb3\xf8\xdf\x9f\x3f\x66\xf1\x9f" "\x92\x3f\x66\xf1\x7f\x20\x7f\xcc\xe2\xff\x60\xfe\x98\xc5\x7f\x6a\xfe" "\x98\xc4\x7f\xae\x41\xfe\x98\xc5\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc" "\xe2\x3f\x4b\xfe\x98\xc5\x7f\xd6\xfc\x31\x8b\xff\xe8\xfc\x31\x8b\xff" "\x6c\xf9\x63\x16\xff\xd9\xf3\xc7\x2c\xfe\x73\xe4\x8f\x59\xfc\xe7\xcc" "\x1f\xb3\xf8\xcf\x95\x3f\xf6\xdf\xef\x3f\xc7\xc3\x1f\xe5\xff\xd8\xfe" "\xfb\xfd\x1f\x6a\xae\x79\xf2\xc7\x2c\xfe\xf3\xe6\x8f\x59\xfc\x9f\x96" "\x3f\x66\xf1\x9f\x2f\x7f\xcc\xe2\x3f\x26\x7f\xcc\xe2\x3f\x7f\xfe\x98" "\xc5\x7f\x6c\xfe\x98\xc5\x7f\x81\xfc\x31\x8b\xff\x82\xf9\x63\x16\xff" "\xa7\xe7\x8f\x59\xfc\x9f\x91\x3f\x66\xf1\x7f\x66\xfe\x98\xc5\x7f\xa1" "\xfc\x31\x8b\xff\xb3\xf2\xc7\x2c\xfe\x0b\xe7\x8f\x59\xfc\x9f\x9d\x3f" "\x66\xf1\x7f\x4e\xfe\x98\xc5\x7f\x91\xfc\x31\x8b\xff\x73\xf3\xc7\x2c" "\xfe\xcf\xcb\x1f\xb3\xf8\x8f\xcb\x1f\xb3\xf8\x3f\x3f\x7f\xcc\xe2\xff" "\x82\xfc\x31\x8b\xff\x0b\xf3\xc7\x2c\xfe\x8b\xe6\x8f\x59\xfc\x17\xcb" "\x1f\xb3\xf8\xbf\x28\x7f\xcc\xe2\xbf\x78\xfe\x98\xc5\x7f\x89\xfc\x31" "\x8b\xff\x8b\xf3\xc7\x2c\xfe\x2f\xc9\x1f\xb3\xf8\xbf\x34\x7f\xcc\xe2" "\xff\xb2\xfc\x31\x8b\xff\x92\xf9\x63\x16\xff\x97\xe7\x8f\x59\xfc\x97" "\xca\x1f\xb3\xf8\x2f\x9d\x3f\x66\xf1\x5f\x26\x7f\xcc\xe2\xbf\x6c\xfe" "\x98\xc5\x7f\xb9\xfc\x31\x8b\xff\xf2\xf9\x63\x16\xff\x57\xe4\x8f\x59" "\xfc\x57\xc8\x1f\xb3\xf8\xaf\x98\x3f\x66\xf1\x5f\x29\x7f\xcc\xe2\xbf" "\x72\xfe\x98\xc5\xff\x95\xf9\x63\x16\xff\x55\xf2\xc7\x2c\xfe\xab\xe6" "\x8f\x59\xfc\x5f\x95\x3f\x66\xf1\x7f\x75\xfe\x98\xc5\xff\x35\xf9\x63" "\x16\xff\xf1\xf9\x63\x16\xff\x09\xf9\x63\x16\xff\x89\xf9\x63\x16\xff" "\xd5\xf2\xc7\x2c\xfe\xab\xe7\x8f\x59\xfc\xd7\xc8\x1f\xb3\xf8\x4f\xca" "\x1f\xb3\xf8\x4f\xce\x1f\xb3\xf8\xaf\x99\x3f\x66\xf1\x5f\x2b\x7f\xcc" "\xe2\xff\xda\xfc\x31\x8b\xff\xeb\xf2\xc7\x2c\xfe\x6b\xe7\x8f\x59\xfc" "\xd7\xc9\x1f\xb3\xf8\xaf\x9b\x3f\x66\xf1\x7f\x7d\xfe\x98\xc5\x7f\xbd" "\xfc\x31\x8b\xff\x1b\xf2\xc7\x2c\xfe\xeb\xe7\x8f\x59\xfc\x37\xc8\x1f" "\xb3\xf8\x6f\x98\x3f\x66\xf1\xdf\x28\x7f\xcc\xe2\xff\xc6\xfc\x31\x8b" "\xff\xc6\xf9\x63\x16\xff\x4d\xf2\xc7\x2c\xfe\x6f\xca\x1f\xb3\xf8\xbf" "\x39\x7f\xcc\xe2\xff\x96\xfc\x31\x8b\xff\x5b\xf3\xc7\x2c\xfe\x6f\xcb" "\x1f\xb3\xf8\xbf\x3d\x7f\xcc\xe2\xff\x8e\xfc\x31\x8b\xff\xa6\xf9\x63" "\x16\xff\xcd\xf2\xc7\x2c\xfe\x9b\xe7\x8f\x59\xfc\xdf\x99\x3f\x66\xf1" "\xdf\x22\x7f\xcc\xe2\xbf\x65\xfe\x98\xc5\x7f\xab\xfc\x31\x8b\xff\xd6" "\xf9\x63\x16\xff\x77\xe5\x8f\x59\xfc\xb7\xc9\x1f\xb3\xf8\xbf\x3b\x7f" "\xcc\xe2\xff\x9e\xfc\x31\x8b\xff\xb6\xf9\x63\x16\xff\xed\xf2\xc7\x2c" "\xfe\xdb\xe7\x8f\x59\xfc\x77\xc8\x1f\xb3\xf8\xbf\x37\x7f\xcc\xe2\xff" "\xbe\xfc\x31\x8b\xff\x8e\xf9\x63\x16\xff\xf7\xe7\x8f\x59\xfc\x77\xca" "\x1f\xb3\xf8\x7f\x20\x7f\xcc\xe2\xff\xc1\xfc\x31\x8b\xff\x87\xf2\xc7" "\x2c\xfe\x3b\xe7\x8f\x59\xfc\x77\xc9\x1f\xb3\xf8\xef\x9a\x3f\x66\xf1" "\xff\x70\xfe\x98\xc5\xff\x23\xf9\x63\x16\xff\x8f\xe6\x8f\x59\xfc\x3f" "\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5\x7f\xb7\xfc\x31\x8b\xff\xee\xf9" "\x63\x16\xff\x3d\xf2\xc7\x2c\xfe\x9f\xc8\x1f\xb3\xf8\x7f\x32\x7f\xcc" "\xe2\xbf\x67\xfe\x98\xc5\xff\x53\xf9\x63\x16\xff\xbd\xf2\xc7\x2c\xfe" "\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f\xcc\xe2\xbf\x77\xfe\x98\xc5\x7f\x9f" "\xfc\x31\x8b\xff\xbe\xf9\x63\x16\xff\xcf\xe6\x8f\x59\xfc\x3f\x97\x3f" "\x66\xf1\xff\x7c\xfe\x98\xc5\x7f\xbf\xfc\x31\x8b\xff\xfe\xf9\x63\x16" "\xff\x2f\xe4\x8f\x59\xfc\x0f\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1\xff" "\x62\xfe\x98\xc5\xff\xa0\xfc\x31\x8b\xff\xc1\xf9\x63\x16\xff\x2f\xe5" "\x8f\x59\xfc\xbf\x9c\x3f\x66\xf1\xff\x4a\xfe\x98\xc5\xff\xab\xf9\x63" "\x16\xff\xaf\xe5\x8f\x59\xfc\xbf\x9e\x3f\x66\xf1\xff\x46\xfe\x98\xc5" "\xff\x9b\xf9\x63\x16\xff\x43\xf2\xc7\x2c\xfe\x87\xe6\x8f\x59\xfc\x0f" "\xcb\x1f\xb3\xf8\x1f\x9e\x3f\x66\xf1\x3f\x22\x7f\xcc\xe2\x7f\x64\xfe" "\x98\xc5\xff\xa8\xfc\x31\x8b\xff\xd1\xf9\x63\x16\xff\x63\xf2\xc7\x2c" "\xfe\xc7\xe6\x8f\x59\xfc\x8f\xcb\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2\x7f" "\x7c\xfe\x98\xc5\xff\x84\xfc\x31\x8b\xff\x89\xf9\x63\x16\xff\x93\xf2" "\xc7\x2c\xfe\x27\xe7\x8f\x59\xfc\xbf\x9d\x3f\x66\xf1\xff\x4e\xfe\x98" "\xc5\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16\xff\xd3\xf2\xc7\x2c\xfe" "\xa7\xe7\x8f\x59\xfc\xbf\x9b\x3f\x66\xf1\x3f\x23\x7f\xcc\xe2\x7f\x66" "\xfe\x98\xc5\xff\xac\xfc\x31\x8b\xff\xf7\xf2\xc7\x2c\xfe\xdf\xcf\x1f" "\xb3\xf8\x9f\x9d\x3f\x66\xf1\x3f\x27\x7f\xcc\xe2\x7f\x6e\xfe\x98\xc5" "\xff\xbc\xfc\x31\x8b\xff\xf9\xf9\x63\x16\xff\x0b\xf2\xc7\x2c\xfe\x3f" "\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc\x31\x8b\xff\x8f\xf3" "\xc7\x2c\xfe\x3f\xc9\x1f\xb3\xf8\x5f\x98\x3f\x66\xf1\xbf\x28\x7f\xcc" "\xe2\xff\xd3\xfc\x31\x8b\xff\xc5\xf9\x63\x16\xff\x9f\xe5\x8f\x59\xfc" "\x2f\xc9\x1f\xb3\xf8\x5f\x9a\x3f\x66\xf1\xbf\x2c\x7f\xcc\xe2\x7f\x79" "\xfe\x98\xc5\xff\x8a\xfc\x31\x8b\xff\x95\xf9\x63\x16\xff\xab\xf2\xc7" "\x2c\xfe\x3f\xcf\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\x7f\x75\xfe\x98\xc5" "\xff\x97\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\xd7\xe6\x8f\x59\xfc\x7f" "\x95\x3f\x66\xf1\xff\x75\xfe\x98\xc5\xff\xba\xfc\x31\x8b\xff\x6f\xf2" "\xc7\x2c\xfe\xd7\xe7\x8f\x59\xfc\x6f\xc8\x1f\xb3\xf8\xdf\x98\x3f\x66" "\xf1\xff\x6d\xfe\x98\xc5\xff\xa6\xfc\x31\x8b\xff\xef\xf2\xc7\x2c\xfe" "\xbf\xcf\x1f\xb3\xf8\xff\x21\x7f\xcc\xe2\xff\xc7\xfc\x31\x8b\xff\x9f" "\xf2\xc7\x2c\xfe\x37\xe7\x8f\x59\xfc\xff\x9c\x3f\x66\xf1\xbf\x25\x7f" "\xcc\xe2\x7f\x6b\xfe\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xed\xf9\x63\x16" "\xff\xbf\xe4\x8f\x59\xfc\xef\xc8\x1f\xb3\xf8\xdf\x99\x3f\x66\xf1\xff" "\x6b\xfe\x98\xc5\xff\xae\xfc\x31\x8b\xff\xdf\xf2\xc7\x2c\xfe\x7f\xcf" "\x1f\xb3\xf8\xff\x23\x7f\xcc\xe2\xff\xcf\xfc\x31\x8b\xff\xdd\xf9\x63" "\x16\xff\x7b\xf2\xc7\x2c\xfe\xf7\xe6\x8f\x59\xfc\xef\xcb\x1f\xb3\xf8" "\xdf\x9f\x3f\x66\xf1\x9f\x92\x3f\x66\xf1\x7f\x20\x7f\xcc\xe2\xff\x60" "\xfe\x98\xc5\x7f\x6a\xfe\x98\xc4\x7f\xee\x41\xfe\x98\xc5\x7f\x28\x7f" "\xcc\xe2\x3f\x2a\x7f\xcc\xe2\x3f\x4b\xfe\x98\xc5\x7f\xd6\xfc\x31\x8b" "\xff\xe8\xfc\x31\x8b\xff\x6c\xf9\x63\x16\xff\xd9\xf3\xc7\x2c\xfe\x73" "\xe4\x8f\x59\xfc\xe7\xcc\x1f\xb3\xf8\xcf\x95\x3f\x66\xf1\x9f\x3b\x7f" "\xcc\xe2\x3f\x4f\xfe\x98\xc5\x7f\xde\xfc\x31\x8b\xff\xd3\xf2\xc7\x2c" "\xfe\xf3\xe5\x8f\x59\xfc\xc7\xe4\x8f\x59\xfc\xe7\xcf\x1f\xb3\xf8\x8f" "\xcd\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1\x5f\x30\x7f\xcc\xe2\xff\xf4\xfc" "\x31\x8b\xff\x33\xf2\xc7\x2c\xfe\xcf\xcc\x1f\xb3\xf8\x2f\x94\x3f\x66" "\xf1\x7f\x56\xfe\x98\xc5\x7f\xe1\xfc\x31\x8b\xff\xb3\xf3\xc7\x2c\xfe" "\xcf\xc9\x1f\xb3\xf8\x2f\x92\x3f\x66\xf1\x7f\x6e\xfe\x98\xc5\xff\x79" "\xf9\x63\x16\xff\x71\xf9\x63\x16\xff\xe7\xe7\x8f\x59\xfc\x5f\x90\x3f" "\x66\xf1\x7f\x61\xfe\x98\xc5\x7f\xd1\xfc\x31\x8b\xff\x62\xf9\x63\x16" "\xff\x17\xe5\x8f\x59\xfc\x17\xcf\x1f\xb3\xf8\x2f\x91\x3f\x66\xf1\x7f" "\x71\xfe\x98\xc5\xff\x25\xf9\x63\x16\xff\x97\xe6\x8f\x59\xfc\x5f\x96" "\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xff\xf2\xfc\x31\x8b\xff\x52\xf9\x63" "\x16\xff\xa5\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x97\xcd\x1f\xb3\xf8" "\x2f\x97\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xff\x8a\xfc\x31\x8b\xff\x0a" "\xf9\x63\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f\x59\xfc\x57\xce\x1f" "\xb3\xf8\xbf\x32\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f\xd5\xfc\x31\x8b" "\xff\xab\xf2\xc7\x2c\xfe\xaf\xce\x1f\xb3\xf8\xbf\x26\x7f\xcc\xe2\x3f" "\x3e\x7f\xcc\xe2\x3f\x21\x7f\xcc\xe2\x3f\x31\x7f\xcc\xe2\xbf\x5a\xfe" "\x98\xc5\x7f\xf5\xfc\x31\x8b\xff\x1a\xf9\x63\x16\xff\x49\xf9\x63\x16" "\xff\xc9\xf9\x63\x16\xff\x35\xf3\xc7\x2c\xfe\x6b\xe5\x8f\x59\xfc\x5f" "\x9b\x3f\x66\xf1\x7f\x5d\xfe\x98\xc5\x7f\xed\xfc\x31\x8b\xff\x3a\xf9" "\x63\x16\xff\x75\xf3\xc7\x2c\xfe\xaf\xcf\x1f\xb3\xf8\xaf\x97\x3f\x66" "\xf1\x7f\x43\xfe\x98\xc5\x7f\xfd\xfc\x31\x8b\xff\x06\xf9\x63\x16\xff" "\x0d\xf3\xc7\x2c\xfe\x1b\xe5\x8f\x59\xfc\xdf\x98\x3f\x66\xf1\xdf\x38" "\x7f\xcc\xe2\xbf\x49\xfe\x98\xc5\xff\x4d\xf9\x63\x16\xff\x37\xe7\x8f" "\x59\xfc\xdf\x92\x3f\x66\xf1\x7f\x6b\xfe\x98\xc5\xff\x6d\xf9\x63\x16" "\xff\xb7\xe7\x8f\x59\xfc\xdf\x91\x3f\x66\xf1\xdf\x34\x7f\xcc\xe2\xbf" "\x59\xfe\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x3b\xf3\xc7\x2c\xfe\x5b\xe4" "\x8f\x59\xfc\xb7\xcc\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a\x7f\xcc" "\xe2\xff\xae\xfc\x31\x8b\xff\x36\xf9\x63\x16\xff\x77\xe7\x8f\x59\xfc" "\xdf\x93\x3f\x66\xf1\xdf\x36\x7f\xcc\xe2\xbf\x5d\xfe\x98\xc5\x7f\xfb" "\xfc\x31\x8b\xff\x0e\xf9\x63\x16\xff\xf7\xe6\x8f\x59\xfc\xdf\x97\x3f" "\x66\xf1\xdf\x31\x7f\xcc\xe2\xff\xfe\xfc\x31\x8b\xff\x4e\xf9\x63\x16" "\xff\x0f\xe4\x8f\x59\xfc\x3f\x98\x3f\x66\xf1\xff\x50\xfe\x98\xc5\x7f" "\xe7\xfc\x31\x8b\xff\x2e\xf9\x63\x16\xff\x5d\xf3\xc7\x2c\xfe\x1f\xce" "\x1f\xb3\xf8\x7f\x24\x7f\xcc\xe2\xff\xd1\xfc\x31\x8b\xff\xc7\xf2\xc7" "\x2c\xfe\x1f\xcf\x1f\xb3\xf8\xef\x96\x3f\x66\xf1\xdf\x3d\x7f\xcc\xe2" "\xbf\x47\xfe\x98\xc5\xff\x13\xf9\x63\x16\xff\x4f\xe6\x8f\x59\xfc\xf7" "\xcc\x1f\xb3\xf8\x7f\x2a\x7f\xcc\xe2\xbf\x57\xfe\x98\xc5\xff\xd3\xf9" "\x63\x16\xff\xcf\xe4\x8f\x59\xfc\xf7\xce\x1f\xb3\xf8\xef\x93\x3f\x66" "\xf1\xdf\x37\x7f\xcc\xe2\xff\xd9\xfc\x31\x8b\xff\xe7\xf2\xc7\x2c\xfe" "\x9f\xcf\x1f\xb3\xf8\xef\x97\x3f\x66\xf1\xdf\x3f\x7f\xcc\xe2\xff\x85" "\xfc\x31\x8b\xff\x01\xf9\x63\x16\xff\x03\xf3\xc7\x2c\xfe\x5f\xcc\x1f" "\xb3\xf8\x1f\x94\x3f\x66\xf1\x3f\x38\x7f\xcc\xe2\xff\xa5\xfc\x31\x8b" "\xff\x97\xf3\xc7\x2c\xfe\x5f\xc9\x1f\xb3\xf8\x7f\x35\x7f\xcc\xe2\xff" "\xb5\xfc\x31\x8b\xff\xd7\xf3\xc7\x2c\xfe\xdf\xc8\x1f\xb3\xf8\x7f\x33" "\x7f\xcc\xe2\x7f\x48\xfe\x98\xc5\xff\xd0\xfc\x31\x8b\xff\x61\xf9\x63" "\x16\xff\xc3\xf3\xc7\x2c\xfe\x47\xe4\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8" "\x1f\x95\x3f\x66\xf1\x3f\x3a\x7f\xcc\xe2\x7f\x4c\xfe\x98\xc5\xff\xd8" "\xfc\x31\x8b\xff\x71\xf9\x63\x16\xff\x6f\xe5\x8f\x59\xfc\x8f\xcf\x1f" "\xb3\xf8\x9f\x90\x3f\x66\xf1\x3f\x31\x7f\xcc\xe2\x7f\x52\xfe\x98\xc5" "\xff\xe4\xfc\x31\x8b\xff\xb7\xf3\xc7\x2c\xfe\xdf\xc9\x1f\xb3\xf8\x9f" "\x92\x3f\x66\xf1\x3f\x35\x7f\xcc\xe2\x7f\x5a\xfe\x98\xc5\xff\xf4\xfc" "\x31\x8b\xff\x77\xf3\xc7\x2c\xfe\x67\xe4\x8f\x59\xfc\xcf\xf4\xfa\x8f" "\x7f\xa2\x0f\x2d\xfe\x67\x79\xfd\x9f\x30\x8b\xff\xf7\xf2\xc7\x2c\xfe" "\xdf\xcf\x1f\xb3\xf8\x9f\x9d\x3f\x66\xf1\x3f\x27\x7f\xcc\xe2\x7f\x6e" "\xfe\x98\xc5\xff\xbc\xfc\x31\x8b\xff\xf9\xf9\x63\x16\xff\x0b\xf2\xc7" "\x2c\xfe\x3f\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc\x31\x8b" "\xff\x8f\xf3\xc7\x2c\xfe\x3f\xc9\x1f\xb3\xf8\x5f\x98\x3f\x66\xf1\xbf" "\x28\x7f\xcc\xe2\xff\xd3\xfc\x31\x8b\xff\xc5\xf9\x63\x16\xff\x9f\xe5" "\x8f\x59\xfc\x2f\xc9\x1f\xb3\xf8\x5f\x9a\x3f\x66\xf1\xbf\x2c\x7f\xcc" "\xe2\x7f\x79\xfe\x98\xc5\xff\x8a\xfc\x31\x8b\xff\x95\xf9\x63\x16\xff" "\xab\xf2\xc7\x2c\xfe\x3f\xcf\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\x7f\x75" "\xfe\x98\xc5\xff\x97\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\xd7\xe6\x8f" "\x59\xfc\x7f\x95\x3f\x66\xf1\xff\x75\xfe\x98\xc5\xff\xba\xfc\x31\x8b" "\xff\x6f\xf2\xc7\x2c\xfe\xd7\xe7\x8f\x59\xfc\x6f\xc8\x1f\xb3\xf8\xdf" "\x98\x3f\x66\xf1\xff\x6d\xfe\x98\xc5\xff\xa6\xfc\x31\x8b\xff\xef\xf2" "\xc7\x2c\xfe\xbf\xcf\x1f\xb3\xf8\xff\x21\x7f\xcc\xe2\xff\xc7\xfc\x31" "\x8b\xff\x9f\xf2\xc7\x2c\xfe\x37\xe7\x8f\x59\xfc\xff\x9c\x3f\x66\xf1" "\xbf\x25\x7f\xcc\xe2\x7f\x6b\xfe\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xed" "\xf9\x63\x16\xff\xbf\xe4\x8f\x59\xfc\xef\xc8\x1f\xb3\xf8\xdf\x99\x3f" "\x66\xf1\xff\x6b\xfe\x98\xc5\xff\xae\xfc\x31\x8b\xff\xdf\xf2\xc7\x2c" "\xfe\x7f\xcf\x1f\xb3\xf8\xff\x23\x7f\xcc\xe2\xff\xcf\xfc\x31\x8b\xff" "\xdd\xf9\x63\x16\xff\x7b\xf2\xc7\x2c\xfe\xf7\xe6\x8f\x59\xfc\xef\xcb" "\x1f\xb3\xf8\xdf\x9f\x3f\x66\xf1\x9f\x92\x3f\x66\xf1\x7f\x20\x7f\xcc" "\xe2\xff\x60\xfe\x98\xc5\x7f\x6a\xfe\x98\xc4\x7f\x9e\x41\xfe\x98\xc5" "\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc\xe2\x3f\x4b\xfe\x98\xc5\x7f\xd6" "\xfc\x31\x8b\xff\xe8\xfc\x31\x8b\xff\x6c\xf9\x63\x16\xff\xd9\xf3\xc7" "\x2c\xfe\x73\xe4\x8f\x59\xfc\xe7\xcc\x1f\xb3\xf8\xcf\x95\x3f\x66\xf1" "\x9f\x3b\x7f\xcc\xe2\x3f\x4f\xfe\x98\xc5\x7f\xde\xfc\x31\x8b\xff\xd3" "\xf2\xc7\x2c\xfe\xf3\xe5\x8f\x59\xfc\xc7\xe4\x8f\x59\xfc\xe7\xcf\x1f" "\xb3\xf8\x8f\xcd\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1\x5f\x30\x7f\xcc\xe2" "\xff\xf4\xfc\x31\x8b\xff\x33\xf2\xc7\x2c\xfe\xcf\xcc\x1f\xb3\xf8\x2f" "\x94\x3f\x66\xf1\x7f\x56\xfe\x98\xc5\x7f\xe1\xfc\x31\x8b\xff\xb3\xf3" "\xc7\x2c\xfe\xcf\xc9\x1f\xb3\xf8\x2f\x92\x3f\x66\xf1\x7f\x6e\xfe\x98" "\xc5\xff\x79\xf9\x63\x16\xff\x71\xf9\x63\x16\xff\xe7\xe7\x8f\x59\xfc" "\x5f\x90\x3f\x66\xf1\x7f\x61\xfe\x98\xc5\x7f\xd1\xfc\x31\x8b\xff\x62" "\xf9\x63\x16\xff\x17\xe5\x8f\x59\xfc\x17\xcf\x1f\xb3\xf8\x2f\x91\x3f" "\x66\xf1\x7f\x71\xfe\x98\xc5\xff\x25\xf9\x63\x16\xff\x97\xe6\x8f\x59" "\xfc\x5f\x96\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xff\xf2\xfc\x31\x8b\xff" "\x52\xf9\x63\x16\xff\xa5\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x97\xcd" "\x1f\xb3\xf8\x2f\x97\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xff\x8a\xfc\x31" "\x8b\xff\x0a\xf9\x63\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f\x59\xfc" "\x57\xce\x1f\xb3\xf8\xbf\x32\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f\xd5" "\xfc\x31\x8b\xff\xab\xf2\xc7\x2c\xfe\xaf\xce\x1f\xb3\xf8\xbf\x26\x7f" "\xcc\xe2\x3f\x3e\x7f\xcc\xe2\x3f\x21\x7f\xcc\xe2\x3f\x31\x7f\xcc\xe2" "\xbf\x5a\xfe\x98\xc5\x7f\xf5\xfc\x31\x8b\xff\x1a\xf9\x63\x16\xff\x49" "\xf9\x63\x16\xff\xc9\xf9\x63\x16\xff\x35\xf3\xc7\x2c\xfe\x6b\xe5\x8f" "\x59\xfc\x5f\x9b\x3f\x66\xf1\x7f\x5d\xfe\x98\xc5\x7f\xed\xfc\x31\x8b" "\xff\x3a\xf9\x63\x16\xff\x75\xf3\xc7\x2c\xfe\xaf\xcf\x1f\xb3\xf8\xaf" "\x97\x3f\x66\xf1\x7f\x43\xfe\x98\xc5\x7f\xfd\xfc\x31\x8b\xff\x06\xf9" "\x63\x16\xff\x0d\xf3\xc7\x2c\xfe\x1b\xe5\x8f\x59\xfc\xdf\x98\x3f\x66" "\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49\xfe\x98\xc5\xff\x4d\xf9\x63\x16\xff" "\x37\xe7\x8f\x59\xfc\xdf\x92\x3f\x66\xf1\x7f\x6b\xfe\x98\xc5\xff\x6d" "\xf9\x63\x16\xff\xb7\xe7\x8f\x59\xfc\xdf\x91\x3f\x66\xf1\xdf\x34\x7f" "\xcc\xe2\xbf\x59\xfe\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x3b\xf3\xc7\x2c" "\xfe\x5b\xe4\x8f\x59\xfc\xb7\xcc\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf" "\x3a\x7f\xcc\xe2\xff\xae\xfc\x31\x8b\xff\x36\xf9\x63\x16\xff\x77\xe7" "\x8f\x59\xfc\xdf\x93\x3f\x66\xf1\xdf\x36\x7f\xcc\xe2\xbf\x5d\xfe\x98" "\xc5\x7f\xfb\xfc\x31\x8b\xff\x0e\xf9\x63\x0f\xfb\x6f\x75\xd2\x7f\xb5" "\xff\x7b\xf3\xc7\x2c\xe7\xff\xfb\xf2\xc7\x2c\xfe\x3b\xe6\x8f\x59\xfc" "\xdf\x9f\x3f\x66\xf1\xdf\x29\x7f\xcc\xe2\xff\x81\xfc\x31\x8b\xff\x07" "\xf3\xc7\x2c\xfe\x1f\xca\x1f\xb3\xf8\xef\x9c\x3f\x66\xf1\xdf\x25\x7f" "\xcc\xe2\xbf\x6b\xfe\x98\xc5\xff\xc3\xf9\x63\x16\xff\x8f\xe4\x8f\x59" "\xfc\x3f\x9a\x3f\x66\xf1\xff\x58\xfe\x98\xc5\xff\xe3\xf9\x63\x16\xff" "\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f\x59\xfc\xf7\xc8\x1f\xb3\xf8\x7f\x22" "\x7f\xcc\xe2\xff\xc9\xfc\x31\x8b\xff\x9e\xf9\x63\x16\xff\x4f\xe5\x8f" "\x59\xfc\xf7\xca\x1f\xb3\xf8\x7f\x3a\x7f\xcc\xe2\xff\x99\xfc\x31\x8b" "\xff\xde\xf9\x63\x16\xff\x7d\xf2\xc7\x2c\xfe\xfb\xe6\x8f\x59\xfc\x3f" "\x9b\x3f\x66\xf1\xff\x5c\xfe\x98\xc5\xff\xf3\xf9\x63\x16\xff\xfd\xf2" "\xc7\x2c\xfe\xfb\xe7\x8f\x59\xfc\xbf\x90\x3f\x66\xf1\x3f\x20\x7f\xcc" "\xe2\x7f\x60\xfe\x98\xc5\xff\x8b\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe" "\x07\xe7\x8f\x59\xfc\xbf\x94\x3f\x66\xf1\xff\x72\xfe\x98\xc5\xff\x2b" "\xf9\x63\x16\xff\xaf\xe6\x8f\x59\xfc\xbf\x96\x3f\x66\xf1\xff\x7a\xfe" "\x98\xc5\xff\x1b\xf9\x63\x16\xff\x6f\xe6\x8f\x59\xfc\x0f\xc9\x1f\xb3" "\xf8\x1f\x9a\x3f\x66\xf1\x3f\x2c\x7f\xcc\xe2\x7f\x78\xfe\x98\xc5\xff" "\x88\xfc\x31\x8b\xff\x91\xf9\x63\x16\xff\xa3\xf2\xc7\x2c\xfe\x47\xe7" "\x8f\x59\xfc\x8f\xc9\x1f\xb3\xf8\x1f\x9b\x3f\x66\xf1\x3f\x2e\x7f\xcc" "\xe2\xff\xad\xfc\x31\x8b\xff\xf1\xf9\x63\x16\xff\x13\xf2\xc7\x2c\xfe" "\x27\xe6\x8f\x59\xfc\x4f\xca\x1f\xb3\xf8\x9f\x9c\x3f\x66\xf1\xff\x76" "\xfe\x98\xc5\xff\x3b\xf9\x63\x16\xff\x53\xf2\xc7\x2c\xfe\xa7\xe6\x8f" "\x59\xfc\x4f\xcb\x1f\xb3\xf8\x9f\x9e\x3f\x66\xf1\xff\x6e\xfe\x98\xc5" "\xff\x8c\xfc\x31\x8b\xff\x99\xf9\x63\x16\xff\xb3\xf2\xc7\x2c\xfe\xdf" "\xcb\x1f\xb3\xf8\x7f\x3f\x7f\xcc\xe2\x7f\x76\xfe\x98\xc5\xff\x9c\xfc" "\x31\x8b\xff\xb9\xf9\x63\x16\xff\xf3\xf2\xc7\x2c\xfe\xe7\xe7\x8f\x59" "\xfc\x2f\xc8\x1f\xb3\xf8\xff\x20\x7f\xcc\xe2\xff\xc3\xfc\x31\x8b\xff" "\x8f\xf2\xc7\x2c\xfe\x3f\xce\x1f\xb3\xf8\xff\x24\x7f\xcc\xe2\x7f\x61" "\xfe\x98\xc5\xff\xa2\xfc\x31\x8b\xff\x4f\xf3\xc7\x2c\xfe\x17\xe7\x8f" "\x59\xfc\x7f\x96\x3f\x66\xf1\xbf\x24\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5" "\xff\xb2\xfc\x31\x8b\xff\xe5\xf9\x63\x16\xff\x2b\xf2\xc7\x2c\xfe\x57" "\xe6\x8f\x59\xfc\xaf\xca\x1f\xb3\xf8\xff\x3c\x7f\xcc\xe2\xff\x8b\xfc" "\x31\x8b\xff\xd5\xf9\x63\x16\xff\x5f\xe6\x8f\x59\xfc\xaf\xc9\x1f\xb3" "\xf8\x5f\x9b\x3f\x66\xf1\xff\x55\xfe\x98\xc5\xff\xd7\xf9\x63\x16\xff" "\xeb\xf2\xc7\x2c\xfe\xbf\xc9\x1f\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21" "\x7f\xcc\xe2\x7f\x63\xfe\x98\xc5\xff\xb7\xf9\x63\x16\xff\x9b\xf2\xc7" "\x2c\xfe\xbf\xcb\x1f\xb3\xf8\xff\x3e\x7f\xcc\xe2\xff\x87\xfc\x31\x8b" "\xff\x1f\xf3\xc7\x2c\xfe\x7f\xca\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xff" "\x73\xfe\x98\xc5\xff\x96\xfc\x31\x8b\xff\xad\xf9\x63\x16\xff\xdb\xf2" "\xc7\x2c\xfe\xb7\xe7\x8f\x59\xfc\xff\x92\x3f\x66\xf1\xbf\x23\x7f\xcc" "\xe2\x7f\x67\xfe\x98\xc5\xff\xaf\xf9\x63\x16\xff\xbb\xf2\xc7\x2c\xfe" "\x7f\xcb\x1f\xb3\xf8\xff\x3d\x7f\xcc\xe2\xff\x8f\xfc\x31\x8b\xff\x3f" "\xf3\xc7\x2c\xfe\x77\xe7\x8f\x59\xfc\xef\xc9\x1f\xb3\xf8\xdf\x9b\x3f" "\x66\xf1\xbf\x2f\x7f\xcc\xe2\x7f\x7f\xfe\x98\xc5\x7f\x4a\xfe\x98\xc5" "\xff\x81\xfc\x31\x8b\xff\x83\xf9\x63\x16\xff\xa9\xf9\x63\x12\xff\x79" "\x07\xf9\x63\x16\xff\xa1\xfc\x31\x8b\xff\xa8\xfc\x31\x8b\xff\x2c\xf9" "\x63\x16\xff\x59\xf3\xc7\x2c\xfe\xa3\xf3\xc7\x2c\xfe\xb3\xe5\x8f\x59" "\xfc\x67\xcf\x1f\xb3\xf8\xcf\x91\x3f\x66\xf1\x9f\x33\x7f\xcc\xe2\x3f" "\x57\xfe\x98\xc5\x7f\xee\xfc\x31\x8b\xff\x3c\xf9\x63\x16\xff\x79\xf3" "\xc7\x2c\xfe\x4f\xcb\x1f\xb3\xf8\xcf\x97\x3f\x66\xf1\x1f\x93\x3f\x66" "\xf1\x9f\x3f\x7f\xcc\xe2\x3f\x36\x7f\xcc\xe2\xbf\x40\xfe\x98\xc5\x7f" "\xc1\xfc\x31\x8b\xff\xd3\xf3\xc7\x2c\xfe\xcf\xc8\x1f\xb3\xf8\x3f\x33" "\x7f\xcc\xe2\xbf\x50\xfe\x98\xc5\xff\x59\xf9\x63\x16\xff\x85\xf3\xc7" "\x2c\xfe\xcf\xce\x1f\xb3\xf8\x3f\x27\x7f\xcc\xe2\xbf\x48\xfe\x98\xc5" "\xff\xb9\xf9\x63\x16\xff\xe7\xe5\x8f\x59\xfc\xc7\xe5\x8f\x59\xfc\x9f" "\x9f\x3f\x66\xf1\x7f\x41\xfe\x98\xc5\xff\x85\xf9\x63\x16\xff\x45\xf3" "\xc7\x2c\xfe\x8b\xe5\x8f\x59\xfc\x5f\x94\x3f\x66\xf1\x5f\x3c\x7f\xcc" "\xe2\xbf\x44\xfe\x98\xc5\xff\xc5\xf9\x63\x16\xff\x97\xe4\x8f\x59\xfc" "\x5f\x9a\x3f\x66\xf1\x7f\x59\xfe\x98\xc5\x7f\xc9\xfc\x31\x8b\xff\xcb" "\xf3\xc7\x2c\xfe\x4b\xe5\x8f\x59\xfc\x97\xce\x1f\xb3\xf8\x2f\x93\x3f" "\x66\xf1\x5f\x36\x7f\xcc\xe2\xbf\x5c\xfe\x98\xc5\x7f\xf9\xfc\x31\x8b" "\xff\x2b\xf2\xc7\x2c\xfe\x2b\xe4\x8f\x59\xfc\x57\xcc\x1f\xb3\xf8\xaf" "\x94\x3f\x66\xf1\x5f\x39\x7f\xcc\xe2\xff\xca\xfc\x31\x8b\xff\x2a\xf9" "\x63\x16\xff\x55\xf3\xc7\x2c\xfe\xaf\xca\x1f\xb3\xf8\xbf\x3a\x7f\xcc" "\xe2\xff\x9a\xfc\x31\x8b\xff\xf8\xfc\x31\x8b\xff\x84\xfc\x31\x8b\xff" "\xc4\xfc\x31\x8b\xff\x6a\xf9\x63\x16\xff\xd5\xf3\xc7\x2c\xfe\x6b\xe4" "\x8f\x59\xfc\x27\xe5\x8f\x59\xfc\x27\xe7\x8f\x59\xfc\xd7\xcc\x1f\xb3" "\xf8\xaf\x95\x3f\x66\xf1\x7f\x6d\xfe\x98\xc5\xff\x75\xf9\x63\x16\xff" "\xb5\xf3\xc7\x2c\xfe\xeb\xe4\x8f\x59\xfc\xd7\xcd\x1f\xb3\xf8\xbf\x3e" "\x7f\xcc\xe2\xbf\x5e\xfe\x98\xc5\xff\x0d\xf9\x63\x16\xff\xf5\xf3\xc7" "\x2c\xfe\x1b\xe4\x8f\x59\xfc\x37\xcc\x1f\xb3\xf8\x6f\x94\x3f\x66\xf1" "\x7f\x63\xfe\x98\xc5\x7f\xe3\xfc\x31\x8b\xff\x26\xf9\x63\x16\xff\x37" "\xe5\x8f\x59\xfc\xdf\x9c\x3f\x66\xf1\x7f\x4b\xfe\x98\xc5\xff\xad\xf9" "\x63\x16\xff\xb7\xe5\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x7f\x47\xfe\x98" "\xc5\x7f\xd3\xfc\x31\x8b\xff\x66\xf9\x63\x16\xff\xcd\xf3\xc7\x2c\xfe" "\xef\xcc\x1f\xb3\xf8\x6f\x91\x3f\x66\xf1\xdf\x32\x7f\xcc\xe2\xbf\x55" "\xfe\x98\xc5\x7f\xeb\xfc\x31\x8b\xff\xbb\xf2\xc7\x2c\xfe\xdb\xe4\x8f" "\x59\xfc\xdf\x9d\x3f\x66\xf1\x7f\x4f\xfe\x98\xc5\x7f\xdb\xfc\x31\x8b" "\xff\x76\xf9\x63\x16\xff\xed\xf3\xc7\x2c\xfe\x3b\xe4\x8f\x59\xfc\xdf" "\x9b\x3f\x66\xf1\x7f\x5f\xfe\x98\xc5\x7f\xc7\xfc\x31\x8b\xff\xfb\xf3" "\xc7\x2c\xfe\x3b\xe5\x8f\x59\xfc\x3f\x90\x3f\x66\xf1\xff\x60\xfe\x98" "\xc5\xff\x43\xf9\x63\x16\xff\x9d\xf3\xc7\x2c\xfe\xbb\xe4\x8f\x59\xfc" "\x77\xcd\x1f\xb3\xf8\x7f\x38\x7f\xcc\xe2\xff\x91\xfc\x31\x8b\xff\x47" "\xf3\xc7\x2c\xfe\x1f\xcb\x1f\xb3\xf8\x7f\x3c\x7f\xcc\xe2\xbf\x5b\xfe" "\x98\xc5\x7f\xf7\xfc\x31\x8b\xff\x1e\xf9\x63\x16\xff\x4f\xe4\x8f\x59" "\xfc\x3f\x99\x3f\x66\xf1\xdf\x33\x7f\xcc\xe2\xff\xa9\xfc\x31\x8b\xff" "\x5e\xf9\x63\x16\xff\x4f\xe7\x8f\x59\xfc\x3f\x93\x3f\x66\xf1\xdf\x3b" "\x7f\xcc\xe2\xbf\x4f\xfe\x98\xc5\x7f\xdf\xfc\x31\x8b\xff\x67\xf3\xc7" "\x2c\xfe\x9f\xcb\x1f\xb3\xf8\x7f\x3e\x7f\xcc\xe2\xbf\x5f\xfe\x98\xc5" "\x7f\xff\xfc\x31\x8b\xff\x17\xf2\xc7\x2c\xfe\x07\xe4\x8f\x59\xfc\x0f" "\xcc\x1f\xb3\xf8\x7f\x31\x7f\xcc\xe2\x7f\x50\xfe\x98\xc5\xff\xe0\xfc" "\x31\x8b\xff\x97\xf2\xc7\x2c\xfe\x5f\xce\x1f\xb3\xf8\x7f\x25\x7f\xcc" "\xe2\xff\xd5\xfc\x31\x8b\xff\xd7\xf2\xc7\x2c\xfe\x5f\xcf\x1f\xb3\xf8" "\x7f\x23\x7f\xcc\xe2\xff\xcd\xfc\x31\x8b\xff\x21\xf9\x63\x16\xff\x43" "\xf3\xc7\x2c\xfe\x87\xe5\x8f\x59\xfc\x0f\xcf\x1f\xb3\xf8\x1f\x91\x3f" "\x66\xf1\x3f\x32\x7f\xcc\xe2\x7f\x54\xfe\x98\xc5\xff\xe8\xfc\x31\x8b" "\xff\x31\xf9\x63\x16\xff\x63\xf3\xc7\x2c\xfe\xc7\xe5\x8f\x59\xfc\xbf" "\x95\x3f\x66\xf1\x3f\x3e\x7f\xcc\xe2\x7f\x42\xfe\x98\xc5\xff\xc4\xfc" "\x31\x8b\xff\x49\xf9\x63\x16\xff\x93\xf3\xc7\x2c\xfe\xdf\xce\x1f\xb3" "\xf8\x7f\x27\x7f\xcc\xe2\x7f\x4a\xfe\x98\xc5\xff\xd4\xfc\x31\x8b\xff" "\x69\xf9\x63\x16\xff\xd3\xf3\xc7\x2c\xfe\xdf\xcd\x1f\xb3\xf8\x9f\x91" "\x3f\x66\xf1\x3f\x33\x7f\xcc\xe2\x7f\x56\xfe\x98\xc5\xff\x7b\xf9\x63" "\x16\xff\xef\xe7\x8f\x59\xfc\xcf\xce\x1f\xb3\xf8\x9f\x93\x3f\x66\xf1" "\x3f\x37\x7f\xcc\xe2\x7f\x5e\xfe\x98\xc5\xff\xfc\xfc\x31\x8b\xff\x05" "\xf9\x63\x16\xff\x1f\xe4\x8f\x59\xfc\x7f\x98\x3f\x66\xf1\xff\x51\xfe" "\x98\xc5\xff\xc7\xf9\x63\x16\xff\x9f\xe4\x8f\x59\xfc\x2f\xcc\x1f\xb3" "\xf8\x5f\x94\x3f\x66\xf1\xff\x69\xfe\x98\xc5\xff\xe2\xfc\x31\x8b\xff" "\xcf\xf2\xc7\x2c\xfe\x97\xe4\x8f\x59\xfc\x2f\xcd\x1f\xb3\xf8\x5f\x96" "\x3f\x66\xf1\xbf\x3c\x7f\xcc\xe2\x7f\x45\xfe\x98\xc5\xff\xca\xfc\x31" "\x8b\xff\x55\xf9\x63\x16\xff\x9f\xe7\x8f\x59\xfc\x7f\x91\x3f\x66\xf1" "\xbf\x3a\x7f\xcc\xe2\xff\xcb\xfc\x31\x8b\xff\x35\xf9\x63\x16\xff\x6b" "\xf3\xc7\x2c\xfe\xbf\xca\x1f\xb3\xf8\xff\x3a\x7f\xcc\xe2\x7f\x5d\xfe" "\x98\xc5\xff\x37\xf9\x63\x16\xff\xeb\xf3\xc7\x2c\xfe\x37\xe4\x8f\x59" "\xfc\x6f\xcc\x1f\xb3\xf8\xff\x36\x7f\xcc\xe2\x7f\x53\xfe\x98\xc5\xff" "\x77\xf9\x63\x16\xff\xdf\xe7\x8f\x59\xfc\xff\x90\x3f\x66\xf1\xff\x63" "\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff\x9b\xf3\xc7\x2c\xfe\x7f\xce\x1f" "\xb3\xf8\xdf\x92\x3f\x66\xf1\xbf\x35\x7f\xcc\xe2\x7f\x5b\xfe\x98\xc5" "\xff\xf6\xfc\x31\x8b\xff\x5f\xf2\xc7\x2c\xfe\x77\xe4\x8f\x59\xfc\xef" "\xcc\x1f\xb3\xf8\xff\x35\x7f\xcc\xe2\x7f\x57\xfe\x98\xc5\xff\x6f\xf9" "\x63\x16\xff\xbf\xe7\x8f\x59\xfc\xff\x91\x3f\x66\xf1\xff\x67\xfe\x98" "\xc5\xff\xee\xfc\x31\x8b\xff\x3d\xf9\x63\x16\xff\x7b\xf3\xc7\x2c\xfe" "\xf7\xe5\x8f\x59\xfc\xef\xcf\x1f\xb3\xf8\x4f\xc9\x1f\xb3\xf8\x3f\x90" "\x3f\x66\xf1\x7f\x30\x7f\xcc\xe2\x3f\x35\x7f\x4c\xe2\xff\xb4\x41\xfe" "\x98\xc5\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc\xe2\x3f\x4b\xfe\x98\xc5" "\x7f\xd6\xfc\x31\x8b\xff\xe8\xfc\x31\x8b\xff\x6c\xf9\x63\x16\xff\xd9" "\xf3\xc7\x2c\xfe\x73\xe4\x8f\x59\xfc\xe7\xcc\x1f\xb3\xf8\xcf\x95\x3f" "\x66\xf1\x9f\x3b\x7f\xcc\xe2\x3f\x4f\xfe\x98\xc5\x7f\xde\xfc\x31\x8b" "\xff\xd3\xf2\xc7\x2c\xfe\xf3\xe5\x8f\x59\xfc\xc7\xe4\x8f\x59\xfc\xe7" "\xcf\x1f\xb3\xf8\x8f\xcd\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1\x5f\x30\x7f" "\xcc\xe2\xff\xf4\xfc\x31\x8b\xff\x33\xf2\xc7\x2c\xfe\xcf\xcc\x1f\xb3" "\xf8\x2f\x94\x3f\x66\xf1\x7f\x56\xfe\x98\xc5\x7f\xe1\xfc\x31\x8b\xff" "\xb3\xf3\xc7\x2c\xfe\xcf\xc9\x1f\xb3\xf8\x2f\x92\x3f\x66\xf1\x7f\x6e" "\xfe\x98\xc5\xff\x79\xf9\x63\x16\xff\x71\xf9\x63\x16\xff\xe7\xe7\x8f" "\x59\xfc\x5f\x90\x3f\x66\xf1\x7f\x61\xfe\x98\xc5\x7f\xd1\xfc\x31\x8b" "\xff\x62\xf9\x63\x16\xff\x17\xe5\x8f\x59\xfc\x17\xcf\x1f\xb3\xf8\x2f" "\x91\x3f\x66\xf1\x7f\x71\xfe\x98\xc5\xff\x25\xf9\x63\x16\xff\x97\xe6" "\x8f\x59\xfc\x5f\x96\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xff\xf2\xfc\x31" "\x8b\xff\x52\xf9\x63\x16\xff\xa5\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc" "\x97\xcd\x1f\xb3\xf8\x2f\x97\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xff\x8a" "\xfc\x31\x8b\xff\x0a\xf9\x63\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f" "\x59\xfc\x57\xce\x1f\xb3\xf8\xbf\x32\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5" "\x7f\xd5\xfc\x31\x8b\xff\xab\xf2\xc7\x2c\xfe\xaf\xce\x1f\xb3\xf8\xbf" "\x26\x7f\xcc\xe2\x3f\x3e\x7f\xcc\xe2\x3f\x21\x7f\xcc\xe2\x3f\x31\x7f" "\xcc\xe2\xbf\x5a\xfe\x98\xc5\x7f\x75\x91\xff\x1c\xff\xc2\xba\x16\xff" "\x35\x44\xfe\xff\x4a\x16\xff\x49\xf9\x63\x16\xff\xc9\xf9\x63\x16\xff" "\x35\xf3\xc7\x2c\xfe\x6b\xe5\x8f\x59\xfc\x5f\x9b\x3f\x66\xf1\x7f\x5d" "\xfe\x98\xc5\x7f\xed\xfc\x31\x8b\xff\x3a\xf9\x63\x16\xff\x75\xf3\xc7" "\x2c\xfe\xaf\xcf\x1f\xb3\xf8\xaf\x97\x3f\x66\xf1\x7f\x43\xfe\x98\xc5" "\x7f\xfd\xfc\x31\x8b\xff\x06\xf9\x63\x16\xff\x0d\xf3\xc7\x2c\xfe\x1b" "\xe5\x8f\x59\xfc\xdf\x98\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49\xfe" "\x98\xc5\xff\x4d\xf9\x63\x16\xff\x37\xe7\x8f\x59\xfc\xdf\x92\x3f\x66" "\xf1\x7f\x6b\xfe\x98\xc5\xff\x6d\xf9\x63\x16\xff\xb7\xe7\x8f\x59\xfc" "\xdf\x91\x3f\x66\xf1\xdf\x34\x7f\xcc\xe2\xbf\x59\xfe\x98\xc5\x7f\xf3" "\xfc\x31\x8b\xff\x3b\xf3\xc7\x2c\xfe\x5b\xe4\x8f\x59\xfc\xb7\xcc\x1f" "\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a\x7f\xcc\xe2\xff\xae\xfc\x31\x8b" "\xff\x36\xf9\x63\x16\xff\x77\xe7\x8f\x59\xfc\xdf\x93\x3f\x66\xf1\xdf" "\x36\x7f\xcc\xe2\xbf\x5d\xfe\x98\xc5\x7f\xfb\xfc\x31\x8b\xff\x0e\xf9" "\x63\x16\xff\xf7\xe6\x8f\x59\xfc\xdf\x97\x3f\x66\xf1\xdf\x31\x7f\xcc" "\xe2\xff\xfe\xfc\x31\x8b\xff\x4e\xf9\x63\x16\xff\x0f\xe4\x8f\x59\xfc" "\x3f\x98\x3f\x66\xf1\xff\x50\xfe\x98\xc5\x7f\xe7\xfc\x31\x8b\xff\x2e" "\xf9\x63\x16\xff\x5d\xf3\xc7\x2c\xfe\x1f\xce\x1f\xb3\xf8\x7f\x24\x7f" "\xcc\xe2\xff\xd1\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f\xcf\x1f\xb3" "\xf8\xef\x96\x3f\x66\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47\xfe\x98\xc5\xff" "\x13\xf9\x63\x16\xff\x4f\xe6\x8f\x59\xfc\xf7\xcc\x1f\xb3\xf8\x7f\x2a" "\x7f\xcc\xe2\xbf\x57\xfe\x98\xc5\xff\xd3\xf9\x63\x16\xff\xcf\xe4\x8f" "\x59\xfc\xf7\xce\x1f\xb3\xf8\xef\x93\x3f\x66\xf1\xdf\x37\x7f\xcc\xe2" "\xff\xd9\xfc\x31\x8b\xff\xe7\xf2\xc7\x2c\xfe\x9f\xcf\x1f\xb3\xf8\xef" "\x97\x3f\x66\xf1\xdf\x3f\x7f\xcc\xe2\xff\x85\xfc\x31\x8b\xff\x01\xf9" "\x63\x16\xff\x03\xf3\xc7\x2c\xfe\x5f\xcc\x1f\xb3\xf8\x1f\x94\x3f\x66" "\xf1\x3f\x38\x7f\xcc\xe2\xff\xa5\xfc\x31\x8b\xff\x97\xf3\xc7\x2c\xfe" "\x5f\xc9\x1f\xb3\xf8\x7f\x35\x7f\xcc\xe2\xff\xb5\xfc\x31\x8b\xff\xd7" "\xf3\xc7\x2c\xfe\xdf\xc8\x1f\xb3\xf8\x7f\x33\x7f\xcc\xe2\x7f\x48\xfe" "\x98\xc5\xff\xd0\xfc\x31\x8b\xff\x61\xf9\x63\x16\xff\xc3\xf3\xc7\x2c" "\xfe\x47\xe4\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8\x1f\x95\x3f\x66\xf1\x3f" "\x3a\x7f\xcc\xe2\x7f\x4c\xfe\x98\xc5\xff\xd8\xfc\x31\x8b\xff\x71\xf9" "\x63\x16\xff\x6f\xe5\x8f\x59\xfc\x8f\xcf\x1f\xb3\xf8\x9f\x90\x3f\x66" "\xf1\x3f\x31\x7f\xcc\xe2\x7f\x52\xfe\x98\xc5\xff\xe4\xfc\x31\x8b\xff" "\xb7\xf3\xc7\x2c\xfe\xdf\xc9\x1f\xb3\xf8\x9f\x92\x3f\x66\xf1\x3f\x35" "\x7f\xcc\xe2\x7f\x5a\xfe\x98\xc5\xff\xf4\xfc\x31\x8b\xff\x77\xf3\xc7" "\x2c\xfe\x67\xe4\x8f\x59\xfc\xcf\xcc\x1f\xb3\xf8\x9f\x95\x3f\x66\xf1" "\xff\x5e\xfe\x98\xc5\xff\xfb\xf9\x63\x16\xff\xb3\xf3\xc7\x2c\xfe\xe7" "\xe4\x8f\x59\xfc\xcf\xcd\x1f\xb3\xf8\x9f\x97\x3f\x66\xf1\x3f\x3f\x7f" "\xcc\xe2\x7f\x41\xfe\x98\xc5\xff\x07\xf9\x63\x16\xff\x1f\xe6\x8f\x59" "\xfc\x7f\x94\x3f\x66\xf1\xff\x71\xfe\x98\xc5\xff\x27\xf9\x63\x16\xff" "\x0b\xf3\xc7\x2c\xfe\x17\xe5\x8f\x59\xfc\x7f\x9a\x3f\x66\xf1\xbf\x38" "\x7f\xcc\xe2\xff\xb3\xfc\x31\x8b\xff\x25\xf9\x63\x16\xff\x4b\xf3\xc7" "\x2c\xfe\x97\xe5\x8f\x59\xfc\x2f\xcf\x1f\xb3\xf8\x5f\x91\x3f\x66\xf1" "\xbf\x32\x7f\xcc\xe2\x7f\x55\xfe\x98\xc5\xff\xe7\xf9\x63\x16\xff\x5f" "\xe4\x8f\x59\xfc\xaf\xce\x1f\xb3\xf8\xff\x32\x7f\xcc\xe2\x7f\x4d\xfe" "\x98\xc5\xff\xda\xfc\x31\x8b\xff\xaf\xf2\xc7\x2c\xfe\xbf\xce\x1f\xb3" "\xf8\x5f\x97\x3f\x66\xf1\xff\x4d\xfe\x98\xc5\xff\xfa\xfc\x31\x8b\xff" "\x0d\xf9\x63\x16\xff\x1b\xf3\xc7\x2c\xfe\xbf\xcd\x1f\xb3\xf8\xdf\x94" "\x3f\x66\xf1\xff\x5d\xfe\x98\xc5\xff\xf7\xf9\x63\x16\xff\x3f\xe4\x8f" "\x59\xfc\xff\x98\x3f\x66\xf1\xff\x53\xfe\x98\xc5\xff\xe6\xfc\x31\x8b" "\xff\x9f\xf3\xc7\x2c\xfe\xb7\xe4\x8f\x59\xfc\x6f\xcd\x1f\xb3\xf8\xdf" "\x96\x3f\x66\xf1\xbf\x3d\x7f\xcc\xe2\xff\x97\xfc\x31\x8b\xff\x1d\xf9" "\x63\x16\xff\x3b\xf3\xc7\x2c\xfe\x7f\xcd\x1f\xb3\xf8\xdf\x95\x3f\x66" "\xf1\xff\x5b\xfe\x98\xc5\xff\xef\xf9\x63\x16\xff\x7f\xe4\x8f\x59\xfc" "\xff\x99\x3f\x66\xf1\xbf\x3b\x7f\xcc\xe2\x7f\x4f\xfe\x98\xc5\xff\xde" "\xfc\x31\x8b\xff\x7d\xf9\x63\x16\xff\xfb\xf3\xc7\x2c\xfe\x53\xf2\xc7" "\x2c\xfe\x0f\xe4\x8f\x59\xfc\x1f\xcc\x1f\xb3\xf8\x4f\xcd\x1f\x93\xf8" "\xcf\x37\xc8\x1f\xb3\xf8\x0f\xe5\x8f\x59\xfc\x47\xe5\x8f\x59\xfc\x67" "\xc9\x1f\xb3\xf8\xcf\x9a\xff\xa3\x9a\x65\xe4\xd9\xe2\x3f\x3a\x7f\xcc" "\xe2\x3f\x5b\xfe\x98\xc5\x7f\xf6\xfc\x31\x8b\xff\x1c\xf9\x63\x16\xff" "\x39\xf3\xc7\x2c\xfe\x73\xe5\x8f\x59\xfc\xe7\xce\x1f\xb3\xf8\xcf\x93" "\x3f\x66\xf1\x9f\x37\x7f\xcc\xe2\xff\xb4\xfc\x31\x8b\xff\x7c\xf9\x63" "\x16\xff\x31\xf9\x63\x16\xff\xf9\xf3\xc7\x2c\xfe\x63\xf3\xc7\x2c\xfe" "\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3\xf8\x3f\x3d\x7f\xcc\xe2\xff\x8c" "\xfc\x31\x8b\xff\x33\xf3\xc7\x2c\xfe\x0b\xe5\x8f\x59\xfc\x9f\x95\x3f" "\x66\xf1\x5f\x38\x7f\xcc\xe2\xff\xec\xfc\x31\x8b\xff\x73\xf2\xc7\x2c" "\xfe\x8b\xe4\x8f\x59\xfc\x9f\x9b\x3f\x66\xf1\x7f\x5e\xfe\x98\xc5\x7f" "\x5c\xfe\x98\xc5\xff\xf9\xf9\x63\x16\xff\x17\xe4\x8f\x59\xfc\x5f\x98" "\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\xbf\x58\xfe\x98\xc5\xff\x45\xf9\x63" "\x16\xff\xc5\xf3\xc7\x2c\xfe\x4b\xe4\x8f\x59\xfc\x5f\x9c\x3f\x66\xf1" "\x7f\x49\xfe\x98\xc5\xff\xa5\xf9\x63\x16\xff\x97\xe5\x8f\x59\xfc\x97" "\xcc\x1f\xb3\xf8\xbf\x3c\x7f\xcc\xe2\xbf\x54\xfe\x98\xc5\x7f\xe9\xfc" "\x31\x8b\xff\x32\xf9\x63\x16\xff\x65\xf3\xc7\x2c\xfe\xcb\xe5\x8f\x59" "\xfc\x97\xcf\x1f\xb3\xf8\xbf\x22\x7f\xcc\xe2\xbf\x42\xfe\x98\xc5\x7f" "\xc5\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c\xfe\xaf\xcc" "\x1f\xb3\xf8\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xff\xaa\xfc\x31" "\x8b\xff\xab\xf3\xc7\x2c\xfe\xaf\xc9\x1f\xb3\xf8\x8f\xcf\x1f\xb3\xf8" "\x4f\xc8\x1f\xb3\xf8\x4f\xcc\x1f\xb3\xf8\xaf\x96\x3f\x66\xf1\x5f\x3d" "\x7f\xcc\xe2\xbf\x46\xfe\x98\xc5\x7f\x52\xfe\x98\xc5\x7f\x72\xfe\x98" "\xc5\x7f\xcd\xfc\x31\x8b\xff\x5a\xf9\x63\x16\xff\xd7\xe6\x8f\x59\xfc" "\x5f\x97\x3f\x66\xf1\x5f\x3b\x7f\xcc\xe2\xbf\x4e\xfe\x98\xc5\x7f\xdd" "\xfc\x31\x8b\xff\xeb\xf3\xc7\x2c\xfe\xeb\xe5\x8f\x59\xfc\xdf\x90\x3f" "\x66\xf1\x5f\x3f\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5\x7f\xc3\xfc\x31\x8b" "\xff\x46\xf9\x63\x16\xff\x37\xe6\x8f\x59\xfc\x37\xce\x1f\xb3\xf8\x6f" "\x92\x3f\x66\xf1\x7f\x53\xfe\x98\xc5\xff\xcd\xf9\x63\x16\xff\xb7\xe4" "\x8f\x59\xfc\xdf\x9a\x3f\x66\xf1\x7f\x5b\xfe\x98\xc5\xff\xed\xf9\x63" "\x16\xff\x77\xe4\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\x6f\x96\x3f\x66\xf1" "\xdf\x3c\x7f\xcc\xe2\xff\xce\xfc\x31\x8b\xff\x16\xf9\x63\x16\xff\x2d" "\xf3\xc7\x2c\xfe\x5b\xe5\x8f\x59\xfc\xb7\xce\x1f\xb3\xf8\xbf\x2b\x7f" "\xcc\xe2\xbf\x4d\xfe\x98\xc5\xff\xdd\xf9\x63\x16\xff\xf7\xe4\x8f\x59" "\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1\xdf\x3e\x7f\xcc\xe2\xbf" "\x43\xfe\x98\xc5\xff\xbd\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc\x77\xcc" "\x1f\xb3\xf8\xbf\x3f\x7f\xcc\xe2\xbf\x53\xfe\x98\xc5\xff\x03\xf9\x63" "\x16\xff\x0f\xe6\x8f\x59\xfc\x3f\x94\x3f\x66\xf1\xdf\x39\x7f\xcc\xe2" "\xbf\x4b\xfe\x98\xc5\x7f\xd7\xfc\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f" "\xc9\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2\xff\xb1\xfc\x31\x8b\xff\xff\xc7" "\x1e\x3d\x20\x80\x42\x20\x50\x00\x5c\x6f\xee\x67\xdb\xb6\x6d\xdb\xb6" "\x6d\xf7\xb3\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xd7\x05\xde\x09\x7a\x33\x57" "\x98\x81\xfe\xa3\x96\xff\xbd\xfc\x47\x2d\xff\x7b\xfb\x8f\x5a\xfe\xf7" "\xf1\x1f\xb5\xfc\xef\xeb\x3f\x6a\xf9\xdf\xcf\x7f\xd4\xf2\xbf\xbf\xff" "\xa8\xe5\xff\x00\xff\x51\xcb\xff\x81\xfe\xa3\x96\xff\x83\xfc\x47\x2d" "\xff\x07\xfb\x8f\x5a\xfe\x0f\xf1\x1f\xb5\xfc\x1f\xea\x3f\x6a\xf9\x3f" "\xcc\x7f\xd4\xf2\x7f\xb8\xff\xa8\xe5\xff\x08\xff\x51\xcb\xff\x91\xfe" "\xa3\x96\xff\xa3\xfc\x47\x2d\xff\x47\xfb\x8f\x5a\xfe\x8f\xf1\x1f\xb5" "\xfc\x1f\xeb\x3f\x6a\xf9\x3f\xce\x7f\xd4\xf2\x7f\xbc\xff\xa8\xe5\xff" "\x04\xff\x51\xcb\xff\x89\xfe\xa3\x96\xff\x93\xfc\x47\x2d\xff\x27\xfb" "\x8f\x5a\xfe\x4f\xf1\x1f\xb5\xfc\x9f\xea\x3f\x6a\xf9\x3f\xcd\x7f\xd4" "\xf2\x7f\xba\xff\xa8\xe5\xff\x0c\xff\x51\xcb\xff\x99\xfe\xa3\x96\xff" "\xb3\xfc\x47\x2d\xff\x67\xfb\x8f\x5a\xfe\xcf\xf1\x1f\xb5\xfc\x9f\xeb" "\x3f\x6a\xf9\x3f\xcf\x7f\xd4\xf2\x7f\xbe\xff\xa8\xe5\xff\x02\xff\x51" "\xcb\xff\x85\xfe\xa3\x96\xff\x8b\xfc\x47\x2d\xff\x17\xfb\x8f\x5a\xfe" "\x2f\xf1\x1f\xb5\xfc\x5f\xea\x3f\x6a\xf9\xbf\xcc\x7f\xd4\xf2\x7f\xb9" "\xff\xa8\xe5\xff\x0a\xff\x51\xcb\xff\x95\xfe\xa3\x96\xff\xab\xfc\x47" "\x2d\xff\x57\xfb\x8f\x5a\xfe\xaf\xf1\x1f\xb5\xfc\x5f\xeb\x3f\x6a\xf9" "\xbf\xce\x7f\xd4\xf2\x7f\xbd\xff\xa8\xe5\xff\x06\xff\x51\xcb\xff\x8d" "\xfe\xa3\x96\xff\x9b\xfc\x47\x2d\xff\x37\xfb\x8f\x5a\xfe\x6f\xf1\x1f" "\xb5\xfc\xdf\xea\x3f\x6a\xf9\xbf\xcd\x7f\xd4\xf2\x7f\xbb\xff\xa8\xe5" "\xff\x0e\xff\x51\xcb\xff\x9d\xfe\xa3\x96\xff\xbb\xfc\x47\x2d\xff\x77" "\xfb\x8f\x5a\xfe\xef\xf1\x1f\xb5\xfc\xdf\xeb\x3f\x6a\xf9\xbf\xcf\x7f" "\xd4\xf2\x7f\xbf\xff\xa8\xe5\xff\x01\xff\x51\xcb\xff\x83\xfe\xa3\x96" "\xff\x87\xfc\x47\x2d\xff\x0f\xfb\x8f\x5a\xfe\x1f\xf1\x1f\xb5\xfc\x3f" "\xea\x3f\x6a\xf9\x7f\xcc\x7f\xd4\xf2\xff\xb8\xff\xa8\xe5\xff\x09\xff" "\x51\xcb\xff\x93\xfe\xa3\x96\xff\xa7\xfc\x47\x2d\xff\x4f\xfb\x8f\x5a" "\xfe\x9f\xf1\x1f\xb5\xfc\x3f\xeb\x3f\x6a\xf9\x7f\xce\x7f\xd4\xf2\xff" "\xbc\xff\xa8\xe5\xff\x05\xff\x51\xcb\xff\x8b\xfe\xa3\x96\xff\x97\xfc" "\x47\x2d\xff\x2f\xfb\x8f\x5a\xfe\x5f\xf1\x1f\xb5\xfc\xbf\xea\x3f\x6a" "\xf9\x7f\xcd\x7f\xd4\xf2\xff\xba\xff\xa8\xe5\xff\x0d\xff\x51\xcb\xff" "\x9b\xfe\xa3\x96\xff\xb7\xfc\x47\x2d\xff\x6f\xfb\x8f\x5a\xfe\xdf\xf1" "\x1f\xb5\xfc\xbf\xeb\x3f\x6a\xf9\x7f\xcf\x7f\xd4\xf2\xff\xbe\xff\xa8" "\xe5\xff\x03\xff\x51\xcb\xff\x87\xfe\xa3\x96\xff\x8f\xfc\x47\x2d\xff" "\x1f\xfb\x8f\x5a\xfe\x3f\xf1\x1f\xb5\xfc\x7f\xea\x3f\x6a\xf9\xff\xcc" "\x7f\xd4\xf2\xff\xb9\xff\xa8\xe5\xff\x0b\xff\x51\xcb\xff\x97\xfe\xa3" "\x96\xff\xaf\xfc\x47\x2d\xff\x5f\xfb\x8f\x5a\xfe\xbf\xf1\x1f\xb5\xfc" "\x7f\xeb\x3f\x6a\xf9\xff\xce\x7f\xd4\xf2\xff\xbd\xff\xa8\xe5\xff\x07" "\xff\x51\xcb\xff\x8f\xfe\xa3\x96\xff\x9f\xfc\x47\x2d\xff\x3f\xfb\x8f" "\x5a\xfe\x7f\xf1\x1f\xb5\xfc\xff\xea\x3f\x6a\xf9\xff\xcd\x7f\xd4\xf2" "\xff\xbb\xff\xa8\xe5\xff\x0f\xff\x51\xcb\xff\x9f\xfe\xa3\x92\xff\x01" "\xff\xf0\x1f\xb5\xfc\xff\xd3\x7f\xd4\xf2\xff\x2f\xff\x51\xcb\xff\xbf" "\xfd\x47\x2d\xff\xff\xf1\x1f\xb5\xfc\xff\xd7\x7f\xd4\xf2\xff\x3f\xff" "\x51\xcb\xff\xff\xfd\x47\x2d\xff\x83\xf8\x8f\x5a\xfe\x07\xf5\x1f\xb5" "\xfc\x0f\xe6\x3f\x6a\xf9\x1f\xdc\x7f\xd4\xf2\x3f\x84\xff\xa8\xe5\x7f" "\x48\xff\x51\xcb\xff\x50\xfe\xa3\x96\xff\xa1\xfd\x47\x2d\xff\x03\xfc" "\x47\x2d\xff\xc3\xf8\x8f\x5a\xfe\x87\xf5\x1f\xb5\xfc\x0f\xe7\x3f\x6a" "\xf9\x1f\xde\x7f\xd4\xf2\x3f\x82\xff\xa8\xe5\x7f\x44\xff\x51\xcb\xff" "\x48\xfe\xa3\x96\xff\x91\xfd\x47\x2d\xff\xa3\xf8\x8f\x5a\xfe\x47\xf5" "\x1f\xb5\xfc\x8f\xe6\x3f\x6a\xf9\x1f\xdd\x7f\xd4\xf2\x3f\x86\xff\xa8" "\xe5\x7f\x4c\xff\x51\xcb\xff\x58\xfe\xa3\x96\xff\xb1\xfd\x47\x2d\xff" "\xe3\xf8\x8f\x5a\xfe\xc7\xf5\x1f\xb5\xfc\x8f\xe7\x3f\x6a\xf9\x1f\xdf" "\x7f\xd4\xf2\x3f\x81\xff\xa8\xe5\x7f\x42\xff\x51\xcb\xff\x44\xfe\xa3" "\x96\xff\x89\xfd\x47\x2d\xff\x93\xf8\x8f\x5a\xfe\x27\xf5\x1f\xb5\xfc" "\x4f\xe6\x3f\x6a\xf9\x9f\xdc\x7f\xd4\xf2\x3f\x85\xff\xa8\xe5\x7f\x4a" "\xff\x51\xcb\xff\x54\xfe\xa3\x96\xff\xa9\xfd\x47\x2d\xff\xd3\xf8\x8f" "\x5a\xfe\xa7\xf5\x1f\xb5\xfc\x4f\xe7\x3f\x6a\xf9\x9f\xde\x7f\xd4\xf2" "\x3f\x83\xff\xa8\xe5\x7f\x46\xff\x51\xcb\xff\x4c\xfe\xa3\x96\xff\x99" "\xfd\x47\x2d\xff\xb3\xf8\x8f\x5a\xfe\x67\xf5\x1f\xb5\xfc\xcf\xe6\x3f" "\x6a\xf9\x9f\xdd\x7f\xd4\xf2\x3f\x87\xff\xa8\xe5\x7f\x4e\xff\x51\xcb" "\xff\x5c\xfe\xa3\x96\xff\xb9\xfd\x47\x2d\xff\xf3\xf8\x8f\x5a\xfe\xe7" "\xf5\x1f\xb5\xfc\xcf\xe7\x3f\x6a\xf9\x9f\xdf\x7f\xd4\xf2\xbf\x80\xff" "\xa8\xe5\x7f\x41\xff\x51\xcb\xff\x42\xfe\xa3\x96\xff\x85\xfd\x47\x2d" "\xff\x8b\xf8\x8f\x5a\xfe\x17\xf5\x1f\xb5\xfc\x2f\xe6\x3f\x6a\xf9\x5f" "\xdc\x7f\xd4\xf2\xbf\x84\xff\xa8\xe5\x7f\x49\xff\x51\xcb\xff\x52\xfe" "\xa3\x96\xff\xa5\xfd\x47\x2d\xff\xcb\xf8\x8f\x5a\xfe\x97\xf5\x1f\xb5" "\xfc\x2f\xe7\x3f\x6a\xf9\x5f\xde\x7f\xd4\xf2\xbf\x82\xff\xa8\xe5\x7f" "\x45\xff\x51\xcb\xff\x4a\xfe\xa3\x96\xff\x95\xfd\x47\x2d\xff\xab\xf8" "\x8f\x5a\xfe\x57\xf5\x1f\xb5\xfc\xaf\xe6\x3f\x6a\xf9\x5f\xdd\x7f\xd4" "\xf2\xbf\x86\xff\xa8\xe5\x7f\x4d\xff\x51\xcb\xff\x5a\xfe\xa3\x96\xff" "\xb5\xfd\x47\x2d\xff\xeb\xf8\x8f\x5a\xfe\xd7\xf5\x1f\xb5\xfc\xaf\xe7" "\x3f\x6a\xf9\x5f\xdf\x7f\xd4\xf2\xbf\x81\xff\xa8\xe5\x7f\x43\xff\x51" "\xcb\xff\x46\xfe\xa3\x96\xff\x8d\xfd\x47\x2d\xff\x9b\xf8\x8f\x5a\xfe" "\x37\xf5\x1f\xb5\xfc\x6f\xe6\x3f\x6a\xf9\xdf\xdc\x7f\xd4\xf2\xbf\x85" "\xff\xa8\xe5\x7f\x4b\xff\x51\xcb\xff\x56\xfe\xa3\x96\xff\xad\xfd\x47" "\x2d\xff\xdb\xf8\x8f\x5a\xfe\xb7\xf5\x1f\xb5\xfc\x6f\xe7\x3f\x6a\xf9" "\xdf\xde\x7f\xd4\xf2\xbf\x83\xff\xa8\xe5\x7f\x47\xff\x51\xcb\xff\x4e" "\xfe\xa3\x96\xff\x9d\xfd\x47\x2d\xff\xbb\xf8\x8f\x5a\xfe\x77\xf5\x1f" "\xb5\xfc\xef\xe6\x3f\x6a\xf9\xdf\xdd\x7f\xd4\xf2\xbf\x87\xff\xa8\xe5" "\x7f\x4f\xff\x51\xcb\xff\x40\xff\xd1\xdf\xee\x1f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x8b\x7d\x7b\x8f\xad\xb3\x2c\xe0" "\x38\xfe\x76\x5b\xc7\x98\x68\x46\x5c\x70\x19\x9a\x6c\xf2\xa0\x90\x08" "\xb3\xdd\x25\xe3\x0f\xc2\x26\x63\x5b\x1d\x74\xe3\x3e\x06\x38\x76\xe9" "\xc6\x46\xbb\xcd\xae\xc3\xae\x80\xbb\xfc\x31\x89\x10\x2e\x92\x4c\xb2" "\x44\x89\xb2\x65\x28\x61\x26\x34\x12\x03\xc1\x0a\x22\x1a\x74\x51\x13" "\x0d\x5e\x00\x51\x88\xa2\x71\x22\x04\xdd\x12\x17\x6b\x4e\x7b\x5a\xda" "\x63\xdb\x78\x9e\xf2\x3c\x8b\xf0\xf9\xfc\xd1\x73\xde\xf7\xec\xf7\x6e" "\x6b\xf2\xdd\xfb\x2e\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xff\x5f\x0d\x8d\xf3\x8f\x8c\xad\x19\x74\x6a\xec\xc0\x83" "\x8f\x1c\x6e\xea\x79\x9d\x75\x74\xf9\x8d\x07\xfe\xd0\x75\x7e\xdf\x6b" "\xf9\xe3\x25\x43\x5c\x72\xcc\xc0\x83\xee\xee\xee\xee\x59\xcf\xcc\xdc" "\x51\x3e\x3c\xa9\x28\x8a\xd2\xcf\xb6\xb3\x7c\x3c\xa1\x72\x5c\xba\xfe" "\xce\xfa\x2f\xb7\xf7\x1e\x85\x79\x5d\x2f\x2c\x3a\x3e\xe9\x57\x8d\x47" "\x0e\xac\x3e\xf5\xa1\xba\xce\xa3\xf7\xd6\xf6\x9c\xad\x2d\x6e\x58\xb7" "\xa1\xb9\xe9\x93\x63\x8a\x22\x5c\x58\x5b\xb4\x97\x0e\xea\x6a\x8a\x22" "\x2c\xac\x2d\xee\x29\x1d\xd4\x97\x0e\x16\xd5\x16\x0f\x95\x0e\x66\xf6" "\x1c\x9c\x5c\x7c\xaf\x74\x70\xee\x9a\xcd\xcd\x6b\x4b\x27\x16\x47\x7f" "\xcf\xe0\xdd\xa2\xa1\x71\x67\x31\x76\x50\xb1\xc5\xa0\x3f\x0d\x06\xf6" "\xbf\xb3\xfe\xbb\xb7\xf7\xbd\x8e\x70\xc9\xbe\xab\x8d\x2b\xca\xfd\x5f" "\xd6\xf1\xa3\x37\x2a\x3e\xeb\x33\x4c\xff\x7d\xd7\x0f\xf3\x2b\xfb\xaf" "\xfa\x37\x08\x0c\xab\xba\xfe\x9f\x9b\xd7\xf7\x3a\xc2\x25\xff\xeb\xfe" "\x3f\xf1\x89\x15\x2f\x0d\xf5\xd9\xf0\xfd\xf7\x5d\x3f\x7c\x4a\xff\x90" "\xce\x10\xcf\xff\x83\x1a\xad\x7c\xee\xaf\x78\xfe\x9f\x36\xc4\x25\xfb" "\xf7\x57\xd4\x74\x1c\x2f\xf5\x7f\xf1\x2d\x4f\x4f\x2f\x9f\x1a\xf7\xbf" "\x3c\xff\xbf\x7d\xfd\x70\x61\x65\xff\x63\x06\x3d\xff\x97\x9e\xe3\x17" "\xf4\x3d\xff\x9f\x54\x14\xe1\xa2\x51\x7e\x3b\xe0\x3d\xa5\xa1\x71\xd7" "\x91\x91\xee\xff\x23\xf7\x3f\x6e\x6a\xc5\xa6\x66\x60\xff\xa7\xb5\x6e" "\xde\x5f\xea\xff\xd1\x45\x3f\x7c\xac\x7c\xaa\xb6\xca\xfe\x17\x8c\x70" "\xff\x1f\xb3\xb8\xe2\xd7\x0a\x54\xa7\xa1\xf1\x6b\xdd\x15\xf7\xff\x2a" "\xfa\x2f\x3e\x3e\xc4\x25\xfb\xfb\x7f\xf3\xb1\xdf\x3d\x58\xea\xff\x91" "\x3f\xdd\x77\xfa\x80\xcf\xaa\xe9\xff\xa2\xca\xfe\x67\xb4\xb5\x6c\x99" "\xb1\x75\x7b\xc7\x39\x1b\x5a\x56\xad\x6f\x5a\xdf\xb4\xa9\x6e\xe6\xdc" "\x59\x73\xea\xeb\xe6\x9c\x37\x7b\x46\xcf\x23\x41\xef\xd7\x51\x7e\x57" "\xe0\xbd\x61\x74\xf7\xff\x62\x62\xc5\xa6\xa6\x28\x9a\xfa\xf7\x57\x75" "\x1e\x78\xb2\xd4\xff\xec\xfb\xef\x9f\x55\x3e\x35\xa1\xca\xfe\x17\x8e" "\x78\xff\x9f\xe6\xfe\x0f\x43\xfa\xe8\x98\x62\xfc\xf8\xa2\x7d\x55\x5b" "\x5b\x6b\x5d\xef\xd7\xbe\xc3\xfa\xde\xaf\xbd\x3f\x6c\x88\xfe\xab\xf8" "\xfb\xff\x19\x67\x95\x7f\x58\x6d\xf9\xb5\xa6\x28\xa6\xf4\xef\xef\x38" "\xfd\xce\x65\xa5\xfe\xdf\x3a\xf4\xf4\xee\xf2\xa9\xf1\x55\xf6\xbf\x68" "\xc4\xfe\xe7\xf5\xff\xbc\x40\x84\x51\xde\xff\xd7\x56\x6c\x06\xf5\x7f" "\xf0\xd0\x0b\x3d\xcf\xff\x4b\xee\x3e\x78\x5a\xf9\x54\xb5\x7f\xff\x5f" "\x3c\x62\xff\x2f\xbb\xff\xc3\x68\x34\x34\x56\xfc\x0f\x3f\xef\xb0\x52" "\xff\xbb\x8a\x4b\x22\x3b\x0d\x0d\xfe\xfb\x1f\xa4\x93\xa3\xff\x47\xde" "\xba\xae\x2b\x6e\x1d\x3e\xad\x7f\x48\x27\x47\xff\x7f\xfc\xe2\xd1\xb3" "\xe3\xd6\x61\x89\xfe\x21\x9d\x1c\xfd\x8f\xdb\x78\xdf\xb3\x71\xeb\x70" "\xb1\xfe\x21\x9d\x1c\xfd\x2f\x9d\x3c\x77\x59\xdc\x3a\x5c\xa2\x7f\x48" "\x27\x47\xff\x6b\x5e\x3e\xfb\x6f\x71\xeb\xd0\xa8\x7f\x48\x27\x47\xff" "\x67\x7d\x75\x77\x7b\xdc\x3a\x2c\xd5\x3f\xa4\x93\xa3\xff\x07\x5a\x67" "\x6d\x8b\x5b\x87\x65\xfa\x87\x74\x72\xf4\xff\x8b\x53\x1e\x78\x25\x6e" "\x1d\x2e\xd5\x3f\xa4\x93\xa3\xff\x63\xc7\xee\xba\x3e\x6e\x1d\x2e\xd3" "\x3f\xa4\x93\xa3\xff\xce\x3d\x67\xfe\x38\x6e\x1d\x2e\xd7\x3f\xa4\x93" "\xa3\xff\x4b\xd7\xcd\x0f\x71\xeb\x70\x85\xfe\x21\x9d\x1c\xfd\x4f\x9d" "\xf2\x97\x47\xe3\xd6\xe1\x4a\xfd\x43\x3a\x39\xfa\x9f\xf3\xd7\x7f\x9d" "\x12\xb7\x0e\x57\xe9\x1f\xd2\xc9\xd1\xff\x6d\x5f\x5a\xb6\x2f\x6e\x1d" "\xae\xd6\x3f\xa4\x93\xa3\xff\xb1\xd7\xbe\xf4\x7c\xdc\x3a\x2c\xd7\x3f" "\xa4\x93\xa3\xff\xc5\x67\x6e\x9b\x1f\xb7\x0e\xd7\xe8\x1f\xd2\xc9\xd1" "\xff\xda\x9f\xaf\xed\x8e\x5b\x87\x15\xfa\x87\x74\x72\xf4\x3f\xe3\x5b" "\x3f\xdd\x10\xb7\x0e\xd7\xea\x1f\xd2\xc9\xd1\xff\xe1\xa5\x0f\xef\x89" "\x5b\x87\xeb\xf4\x0f\xe9\xe4\xe8\x7f\x4f\x5d\x31\x29\x6e\x1d\xae\xd7" "\x3f\xa4\x93\xa3\xff\x6f\xfe\xe0\xd4\x43\x71\xeb\xf0\x19\xfd\x43\x3a" "\x39\xfa\xff\xfd\x13\x8f\xcf\x8d\x5b\x87\x95\xfa\x87\x74\x72\xf4\xff" "\xcc\x87\x6f\xfd\x76\xdc\x3a\xdc\xa0\x7f\x48\x27\x47\xff\x77\xaf\x7e" "\xfe\x8c\xb8\x75\x58\xa5\x7f\x48\x27\x47\xff\x0f\xee\x7d\xf6\x2b\x71" "\xeb\xb0\x5a\xff\x90\x4e\x8e\xfe\x5f\x7b\xad\xe5\x7d\x71\xeb\xb0\x46" "\xff\x90\x4e\x8e\xfe\x27\x4e\x38\xf9\xd5\xb8\x75\x58\xab\x7f\x48\x27" "\x47\xff\xf3\x6f\xfe\x7a\x6b\xdc\x3a\x34\xe9\x1f\xd2\xc9\xd1\x7f\xcb" "\xee\xce\x9f\xc4\xad\xc3\x3a\xfd\x43\x3a\x39\xfa\xff\xd8\xf1\x29\x2b" "\xe2\xd6\x61\xbd\xfe\x21\x9d\x1c\xfd\x2f\x9f\xbd\xf7\x43\x71\xeb\x70" "\xa3\xfe\x21\x9d\x1c\xfd\x7f\x70\xc9\xf9\xbb\xe2\xd6\x61\x83\xfe\x21" "\x9d\x1c\xfd\x5f\xd0\xf5\x89\x0b\xe2\xd6\x61\xa3\xfe\x21\x9d\x1c\xfd" "\xb7\x3d\xf5\x85\x6f\xc4\xad\xc3\x4d\xfa\x87\x74\x72\xf4\xbf\x77\xfa" "\x2b\x0b\xe3\xd6\xa1\x59\xff\x90\x4e\x8e\xfe\x5f\x5c\xb9\xf8\x67\x71" "\xeb\xd0\xa2\x7f\x48\x27\x47\xff\x6f\x3c\x7c\xcd\xa6\xb8\x75\xd8\xa4" "\x7f\x48\x27\x47\xff\x8f\xff\xf2\xcd\x63\x71\xeb\xb0\x59\xff\x90\x4e" "\x8e\xfe\xdf\x7f\xde\x82\x7f\xc4\xad\xc3\x16\xfd\x43\x3a\x39\xfa\x5f" "\xb8\xe8\xf5\x35\x71\xeb\xf0\x59\xfd\x43\x3a\x39\xfa\xdf\xd8\xf9\xef" "\x17\xe3\xd6\xa1\x55\xff\x90\x4e\x8e\xfe\xa7\x1f\xbe\x72\x49\xdc\x3a" "\x6c\xd5\x3f\xa4\x93\xa3\xff\xef\x9f\x53\xb7\x3f\x6e\x1d\xda\xf4\x0f" "\xe9\xe4\xe8\xff\xf6\xcb\xf7\xd5\xc7\xad\xc3\x36\xfd\x43\x3a\x39\xfa" "\xdf\x7f\xf0\x8e\x3b\xe3\xd6\xe1\x66\xfd\x43\x3a\x39\xfa\x7f\xfd\xd7" "\xd3\xa6\xc6\xad\xc3\xe7\xf4\x0f\xe9\xe4\xe8\xff\xde\x49\x87\xae\x8e" "\x5b\x87\x76\xfd\x43\x3a\x39\xfa\xff\xcd\xa6\xda\xa7\xe2\xd6\x61\xbb" "\xfe\x21\x9d\x1c\xfd\xff\x73\xdf\xe4\x1d\x71\xeb\xd0\xa1\x7f\x48\x27" "\x47\xff\x4f\xbe\xda\xf5\xe7\xb8\x75\xb8\x45\xff\x90\xce\xb0\xfd\x7f" "\xe0\x9d\xb9\x7e\xa9\xff\x95\xe3\x7e\x3b\x3e\x6e\x1d\x6e\xd5\x3f\xa4" "\x93\xe3\xfe\x3f\xb9\x63\xcb\x3d\x71\xeb\x70\x9b\xfe\x21\x9d\x1c\xfd" "\xcf\xbd\x6b\xd5\xb9\x71\xeb\xf0\x79\xfd\x43\x3a\x39\xfa\xdf\xfa\xf7" "\xe7\xbe\x13\xb7\x0e\x3b\xf4\x0f\xe9\x6c\xdd\xde\x71\xd3\xaa\xe6\xe6" "\xa6\x56\x6f\xbc\xf1\xc6\x9b\xfe\x37\x27\xfa\x4f\x26\x20\xb5\xb7\xa3" "\x3f\xd1\xbf\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x38" "\x39\xfe\x39\xd1\x89\xfe\x3d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x7f\xd8\x81" "\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x0e\x1c\x0b\x00\x00\x00\x00" "\x08\xf3\xb7\x0e\xa2\x77\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xbe\x02\x00\x00\xff\xff\x38\x94\xdf\xb0", 38466); syz_mount_image( /*fs=*/0x200000009600, /*dir=*/0x200000009640, /*flags=MS_I_VERSION|MS_SHARED|MS_SILENT|MS_REMOUNT|MS_RELATIME|MS_MANDLOCK*/ 0xb08060, /*opts=*/0x200000001340, /*chdir=*/1, /*size=*/0x9642, /*img=*/0x20000001c300); break; case 2: *(uint32_t*)0x200000000000 = 0xfc9; syscall(__NR_getsockopt, /*fd=*/r[0], /*level=*/0x84, /*opt=HCI_TIME_STAMP|0x7c*/ 0x7f, /*arg=*/0x200000000080ul, /*arglen=*/0x200000000000ul); break; case 3: res = syscall(__NR_socket, /*domain=*/2ul, /*type=*/3ul, /*proto=*/1); if (res != -1) r[1] = res; break; case 4: memcpy((void*)0x200000000100, "\x1c\xe0", 2); *(uint16_t*)0x200000001100 = 2; *(uint16_t*)0x200000001102 = htobe16(0); *(uint32_t*)0x200000001104 = htobe32(0); syscall(__NR_sendto, /*fd=*/r[1], /*buf=*/0x200000000100ul, /*len=*/0xffebul, /*f=*/0ul, /*addr=*/0x200000001100ul, /*addrlen=*/0x10ul); break; case 5: memcpy((void*)0x200000000580, "ext4\000", 5); memcpy((void*)0x2000000002c0, "./file0\000", 8); memcpy((void*)0x200000000180, "seclabel", 8); *(uint8_t*)0x200000000188 = 0x2c; *(uint8_t*)0x200000000189 = 0; memcpy( (void*)0x2000000005c0, "\x78\x9c\xec\xdd\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\xdb\xfc\x68\xd3\xb4" "\x4d\x2a\x82\xd6\x1e\x0c\x14\x6c\x41\x4d\x9a\xb4\xa2\x88\x60\x8b\xf5" "\xe6\xc1\x1f\x05\x4f\x05\x63\x92\x96\xd2\x6d\x1b\x9b\x08\xb6\x56\x6c" "\xa1\xfe\x07\xfa\x07\x28\xde\x04\x11\x8f\x45\xa4\xa8\x17\xaf\xde\x04" "\xaf\x82\x14\x8b\xb4\xb9\x78\x5b\x99\xdd\xd9\x74\xdb\xec\xe6\xe7\x26" "\x53\x3b\x9f\x0f\x4c\xf3\xde\xbc\x1d\xbe\x6f\x76\xf9\xf6\xcd\xbc\x9d" "\x99\x0d\xa0\xb4\x46\xb2\x7f\x2a\x11\x7b\x23\x62\x36\x45\x0c\xb5\xb4" "\xf5\x46\xde\x38\xd2\x78\xdd\xdd\x3b\x57\xa6\x16\xee\x5c\x99\x4a\x51" "\xab\xbd\xf3\x4f\x8a\x94\xaf\x6b\xbe\x3e\xe5\x7f\x07\xf3\x8d\xb7\x47" "\xc4\x6f\x3f\xa5\x78\xac\x67\x69\xdc\xb9\x4b\x97\xcf\x4e\x56\xab\x33" "\x17\xf3\xfa\xd8\xfc\xb9\xd9\xb1\xb9\x4b\x97\x9f\x3f\x73\x6e\xf2\xf4" "\xcc\xe9\x99\xf3\x13\xe3\x2f\x8e\xbf\x70\xe4\xf0\xc4\x91\x43\x5d\xd9" "\xcf\x5d\x11\xf1\xcb\xe8\xf1\xde\xeb\xa7\x5e\xdb\xf7\xdd\xd4\xd7\x7b" "\x3e\xfd\xe1\x9b\x1b\x29\x8e\xc6\xce\xbc\xbd\x75\x3f\xba\x65\x24\x46" "\x16\xdf\x93\x56\xd9\xfb\xfa\x52\xb7\x83\x15\xa4\x27\xdf\x9f\xd6\x8f" "\x38\xf5\x16\xd8\x21\xd6\xa4\xf9\xf9\xf5\x45\xc4\x13\x31\x14\x3d\x71" "\xef\xc3\x1b\x8a\xcf\xde\x2a\xb4\x73\xc0\xa6\xaa\xa5\x88\x1a\x50\x52" "\x49\xfe\x43\x49\x35\x8f\x03\xb2\xf3\xdf\xe6\x52\xec\x11\x09\xb0\x55" "\x6e\x1f\x6b\x4c\x00\xdc\x4d\x8d\xb9\xbd\x85\xc5\xfc\xef\x6d\xcc\x0d" "\xc6\xf6\xfa\xdc\xc0\x8e\x85\x14\xad\xd3\x3a\x29\x22\xba\x31\x33\x97" "\xc5\x98\x7d\x26\x0d\x65\x4b\x6c\xd2\x3c\x1c\xd0\xde\xd5\x6b\x11\xf1" "\x64\xbb\xf1\x3f\xd5\x73\x73\xb8\x3e\x8b\x9f\xe5\x7f\xe5\xbe\xfc\xaf" "\x44\xc4\x9b\xf9\xdf\x6c\xfd\xdb\xeb\x8c\x3f\xf2\x40\x5d\xfe\xc3\xd6" "\xd9\x48\xfe\xbf\xd7\x92\xff\xef\xaf\x33\xbe\xfc\x07\x00\x00\x00\x00" "\x00\x80\xee\xb9\x79\x2c\x22\x9e\x6b\xf7\xfd\x5f\x65\xf1\xfa\x9f\x68" "\x73\xfd\xcf\x60\x44\x1c\xed\x42\xfc\x95\xbf\xff\xab\xdc\xea\x42\x18" "\xa0\x8d\xdb\xc7\x22\x5e\x89\x88\xe6\xb5\x7f\x0b\x2d\xf9\x9f\x1b\xee" "\xc9\x6b\xbb\xea\xd7\x03\xf4\xa5\x53\x67\xaa\x33\x87\x22\x62\x77\x44" "\x1c\x8c\xbe\x6d\x59\x7d\x7c\x99\x18\x23\xfb\x7e\xed\xeb\xd8\xd6\x72" "\xfd\x5f\xb6\x64\xf1\x9b\xd7\x02\xe6\xfd\xb8\xd5\xbb\xed\xfe\x6d\xa6" "\x27\xe7\x27\x37\xb2\xcf\x40\xc3\xed\x6b\x11\x4f\xf5\xb6\xcb\xff\xb4" "\x38\xfe\xa7\x36\xe3\x7f\x36\xf6\xcf\xae\x32\x46\xed\xf8\xab\x3f\x77" "\x6a\x5b\x39\xff\x81\xcd\x52\xfb\x32\xe2\x40\xdb\xf1\xff\xde\x93\x2b" "\xd2\xf2\xcf\xe7\x18\xab\x1f\x0f\x8c\x35\x8f\x0a\x96\xfa\xf8\xe4\x8d" "\xef\x3b\xc5\x97\xff\x50\x9c\x6c\xfc\xdf\xb1\x7c\xfe\x0f\xa7\xd6\xe7" "\xf5\xcc\xad\x3d\xc6\x27\x7f\xff\xb1\x81\xfc\x6f\x7f\xfc\xdf\x9f\x4e" "\xd4\x1f\x39\xd3\x9f\xaf\xfb\x68\x72\x7e\xfe\xe2\x78\x44\x7f\x7a\x63" "\xe9\xfa\x89\xb5\xf7\x19\x1e\x45\xcd\x7c\x68\xe6\x4b\x96\xff\x07\xf7" "\xb7\x3f\xff\x5f\xee\xf8\x7f\x20\x22\xae\xae\x32\xe6\x89\x1f\x5f\xbf" "\xde\xa9\xcd\xf8\x0f\xc5\x19\xb8\x16\x31\xbd\xa6\xf1\x7f\xed\x85\xfd" "\xef\x7e\xf1\x6f\xa7\xf8\xab\x1b\xff\x8f\xd4\xc7\xf4\x83\xf9\x1a\xf3" "\x7f\xb0\xbc\xd5\x26\x68\xd1\xfd\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\xff\xa3\x4a\x44\xec\x8c\x54\x19\x5d\x2c\x57\x2a\xa3\xa3\x11\x83\x11" "\xf1\x78\xec\xa8\x54\x2f\xcc\xcd\x3f\x7b\xea\xc2\x87\xe7\xa7\xb3\xb6" "\xfa\xef\xff\x57\x9a\xbf\xf4\x3b\xd4\xa8\xa7\xe6\xef\xff\x0f\xb7\xd4" "\x27\x1e\xa8\x1f\x8e\x88\x3d\x11\xf1\x79\xcf\x40\xbd\x3e\x3a\x75\xa1" "\x3a\x5d\xf4\xce\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x43\x62\xb0\xc3\xfd\xff\x99\xbf\x7a\x8a\xee\x1d\xb0\xe9" "\x7a\x8b\xee\x00\x50\x18\xf9\x0f\xe5\x25\xff\xa1\xbc\xe4\x3f\x94\x97" "\xfc\x87\xf2\x92\xff\x50\x5e\xf2\x1f\xca\x4b\xfe\x43\x79\xc9\x7f\x28" "\xaf\x9e\xda\xb7\x27\x8b\xee\x03\x00\x00\x00\x00\x00\xd0\x35\x7b\x9e" "\xbe\xf9\x7b\x8a\x88\xab\x2f\x0f\xd4\x97\x4c\x7f\xde\xd6\x57\x68\xcf" "\x80\xcd\x76\xb4\xe8\x0e\x00\x85\xf1\x88\x1f\x28\x2f\x97\xfe\x41\x79" "\xad\x74\x8e\x6f\x0e\x00\x1e\x7d\x69\x85\xf6\xed\xeb\xde\x12\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe8\x96\x03\x7b\xdd\xff\x0f\x65\x55" "\x29\xba\x03\x40\x61\x3a\xdf\xff\xef\xc9\x00\xf0\xa8\x73\xff\x3f\x94" "\x97\x73\x7c\x60\xb5\xf7\xff\x7f\xb5\xe4\x80\xc1\xfd\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xb0\x55\xe6\x2e\x5d\x3e\x3b\x59\xad\xce" "\x5c\x5c\x6f\x61\xdb\xc6\x36\x57\x50\x58\x6d\xe1\xcf\xdd\x8d\xbb\x55" "\x96\x7d\xf1\x07\x0f\x45\x57\x3b\x14\x22\x75\x21\xe3\xb6\xa8\x50\xf4" "\xff\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\xd3\x7f\x01\x00\x00\xff\xff\xdb\x3c\xf6" "\x07", 1446); syz_mount_image(/*fs=*/0x200000000580, /*dir=*/0x2000000002c0, /*flags=MS_SYNCHRONOUS*/ 0x10, /*opts=*/0x200000000180, /*chdir=*/1, /*size=*/0x5a6, /*img=*/0x2000000005c0); break; case 6: memcpy((void*)0x200000004440, "ocfs2\000", 6); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x200000000280, "\x61\x63\x6c\x2c\x68\x65\x61\x72\x74\x62\x65\x61\x74\x3d\x6e\x6f\x6e" "\x65\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d\x6f\x75\x6e\x74\x2d" "\x72\x6f\x2c\x63\x6f\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c" "\x2c\x70\x72\x65\x66\x65\x72\x72\x65\x64\x5f\x73\x6c\x6f\x74\x3d\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x31\x2c\x6c\x6f\x63\x61\x6c\x66\x6c\x6f\x63\x6b\x73\x2c\x69\x6e" "\x74\x72\x2c\x6e\x6f\x61\x63\x6c\x2c\x00\xb8\x35\x78\x11\x0c\x81\x82" "\x87\x1d\x1a\x88\x8a\xb9\x10\xbd\xa6\xed\x5e\xb8\xd8\x58\x50\xb6\x9e" "\x5f\x00\xa4\xb2\x82\x29\x44\xf8\xa4\x00\x11\x44\x2c\xbd\xd9\x03\xae" "\x8f\x5d\xbd\x22\x9f\x91\xfe\x10\x93\xb9\xe1\xd8\x04\x2b\x30\x23\xb0" "\xec\x8f\x09\x89\x74\x97\x04\x4a\x10\x47\x01\xd3\x01\x35\x12\xe0\x48" "\x7b\x6b\xd6\x65\x0f\x23\x22\x92\xd8\xb0\x15\x5a\x94\x72\x8b\xba\x1a" "\x82\x48\xfe\xd1\x23\x79\x5b\xcc\x18\x46\x83\xb3\x3d\x0d\x5f\x44\x55" "\xea\x61\xc1\xcb\x56\x7c\x01\xed\xd3\x3f\x14\xc2\x29\x43\x7c\xe8\x76" "\xbf\x88\x79\x8e\xc1\xe2\xf2\x8b\x87\xb5\x91\x03\x1c\x3d\x50\x71\x0d" "\x9c\xc5\x1b\x76\x0a\xff\x01\x05\xa5\xc3\x77\x2f\x54\xbd\xf7\x39\x5b" "\xb2\xbb\x7b\x4a\x03\x23\xca", 279); memcpy( (void*)0x200000004480, "\x78\x9c\xec\xdd\xcf\x4f\x1b\x57\x1e\x00\xf0\x37\x03\xd9\x40\x36\xd9" "\x85\x6c\x0e\x59\x69\xa5\xb5\xb4\x91\x76\xb5\xbb\x42\x90\x53\x5b\x22" "\x95\x10\x12\x02\x09\x4d\x95\x36\x51\xd5\x8b\x63\xc0\x49\x68\x0d\x8e" "\xc0\x54\x3d\xe4\x40\x6f\x91\x7a\xaa\xd4\x43\xd5\x43\xd4\x4a\xbd\x71" "\x8a\x38\xf4\x9a\xfe\x09\xbd\xf4\x98\x9e\x23\xb5\x87\x5e\x5a\x55\x8a" "\x4a\x65\x7b\x0c\x9e\xc1\x16\x2e\xc2\xd0\xa4\x9f\xcf\x81\xf1\xbc\xdf" "\xf6\x77\xe6\xf9\xf9\x30\xbc\x38\x51\xb9\xbb\xb0\x92\x5b\x58\xc9\x15" "\x96\x72\xe5\xb9\xdb\x2b\x67\x73\xef\x95\x4b\xab\x8b\xc5\x10\x1f\x90" "\x96\xfd\x1f\x39\xb8\xfe\xe9\x4c\x37\xae\x93\xc3\xbe\xf6\xfe\xc8\xae" "\x5d\xb8\xf4\xc6\xcd\xb3\x21\x7c\x35\xff\xcd\xd3\xcd\xcd\xcd\xcd\x50" "\xd5\x1b\x5a\x1a\x69\x7a\xfd\xe3\x0f\xf7\xe7\x9a\x8f\x0d\x71\xa6\x4e" "\xb5\xdd\xd6\xad\xed\x97\xb7\x43\x08\xa7\x76\x8c\xab\xaa\x27\x84\xf0" "\xd6\x97\x21\x44\x21\x84\xf3\x49\xda\x78\x72\xec\x0f\x21\x9c\x08\xf5" "\xbc\x9b\xf7\x3f\xbc\x95\xdb\xa7\xd1\x3c\x7a\x52\x3c\x97\x7f\x36\xf3" "\x60\x63\xf4\xcc\xf4\xfa\xc3\x8d\xf6\xef\x3d\x0a\xe1\xd3\xd2\xdf\xff" "\x7f\x67\xf1\xbb\x7f\xf5\x8c\x7e\xfb\xdf\x7d\xea\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xe7\xdc\xe4\xf5\x6b\x37\x5e" "\x1f\x1e\x09\x8f\xa3\xd0\xbb\x1e\xed\x7c\x5e\x77\x32\x39\xb6\x7b\x3e" "\x76\x73\xdf\xfc\xb3\xfb\x6f\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x7e\xa7\xb6\x9f\xff\xcf\x45\x27\x5b\x3c\xff" "\x3f\x91\x1c\xc7\xda\xd4\xdf\x7c\xb5\xfb\x63\xa4\x7b\xa6\x5e\xbb\x36" "\x71\x71\x78\x24\xd9\xff\x3d\xda\x91\xff\x52\x92\xf4\xfd\xf9\x9e\x30" "\xd8\x62\xdf\xf7\xec\xfe\xef\xe7\x33\xf5\x5b\xef\xff\xbe\xb3\x9f\xbd" "\x6a\x8c\xaf\xd1\xef\x40\x88\xe2\xa1\xd4\x79\x1c\x0f\x0d\x85\xf0\x79" "\xb2\xf1\xfb\xe9\xe8\x58\x5c\x2a\xaf\x54\xfe\x77\xbb\xbc\xba\x34\xbf" "\x6f\xc3\x78\x6e\xa5\xe3\x5f\xdf\xbd\x3f\x15\x9d\x64\x43\xff\x4e\xe3" "\x3f\x9e\x69\xbf\xfb\xfb\xff\xff\x6d\xc7\xd5\x54\x3d\xbf\xb5\x7f\x97" "\xd8\x0b\x2d\x1d\xff\x9e\xb6\xe5\xbe\xf8\x20\xea\x28\xfe\x17\x32\xf5" "\x0e\x22\xfe\xec\x5d\x3a\xfe\xbd\xb5\xb4\xfe\xe6\x02\x63\xf5\x09\xa0" "\x1a\xff\x8f\x7a\x77\x8f\xff\x44\xa6\xfd\xee\xc4\xff\xc8\xd6\xab\xfe" "\x90\x4b\xcd\x00\xd5\x35\x4c\x2e\x6a\xbf\x5e\x21\x2d\x1d\xff\xfa\xe7" "\x9a\x9a\x3a\x93\x0f\xb2\xdd\xfd\xff\x73\x26\xfe\x17\x33\xed\x1f\xd6" "\xfc\xbf\x96\xfd\x22\xa2\xa5\x74\xfc\xff\x54\x4b\xeb\x4b\x95\xd8\xbe" "\xff\x07\xe3\xdd\xef\xff\x4b\x99\xf6\x0f\x23\xfe\xd5\xf1\xaf\xf9\xfe" "\xef\x48\x3a\xfe\x47\xeb\x89\xbd\xa9\x22\xb5\x4f\xb2\xd3\xf9\x7f\x32" "\xd3\x7e\x53\xfc\x7f\xda\xcf\x71\xdf\x88\x93\x71\xfe\x25\x4a\x5d\x01" "\xeb\x51\x3d\xbd\xdd\xff\xab\x23\x2d\x1d\xff\xbe\x1d\xf9\xdb\xbf\xff" "\xe2\x8e\xd6\x7f\x97\x33\xf5\x0f\xea\xf7\x5f\xa3\xdf\xc6\xef\xbf\xc6" "\xf4\xff\x9f\xa8\xfe\xfb\x8f\xd6\xd2\xf1\xef\x6f\x5b\xae\xd3\xfb\x7f" "\x2a\x53\xaf\xdb\xf3\xff\x58\x6d\xfd\xc7\x5e\xa5\xe3\x7f\xac\x96\x96" "\x5e\x3b\x0f\xd4\xfe\x76\x1a\xff\xe9\x4c\xfb\xdd\x8a\x7f\x6d\x55\xd2" "\xd7\x88\xff\xf6\x7c\xf2\xcb\xd1\x7a\xfa\x67\xd6\x7f\x1d\x49\xc7\xff" "\xcf\xf5\xc4\xb8\xb9\xc4\x5a\xed\x6f\x6d\xfd\x17\xed\xbe\xfe\xbf\x92" "\x69\xff\x30\xd6\x7f\xd5\xf1\xaf\xc5\xdd\xed\xf5\x45\x91\x8e\xff\xf1" "\xb6\xe5\xaa\xf1\xff\xba\x83\xef\xff\xab\x99\x7a\xdd\x8f\x7f\x08\xc3" "\xd6\xfa\x7b\x96\x8e\xff\x89\xb6\xe5\x6a\xf7\x7f\xdf\xee\xf1\x9f\xc9" "\xd4\xeb\x76\xfc\xff\xdd\xcd\xc6\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x03\xe3\xc9\x71\x20\x44\xf1\x50" "\xea\x3c\x8e\x87\x86\x42\xb8\x90\x9c\x9f\x0e\xc7\xa2\xd9\xc2\x7c\x7e" "\xb6\x54\x9e\x7b\x77\x25\x84\x89\x24\x3d\x17\x4e\x46\x77\x4a\xe5\xd9" "\x42\x29\xbf\xb0\x54\x9e\x2f\xe6\x0b\xa5\x52\x79\x2e\x84\x8b\x49\xfe" "\xa9\xd0\x17\xad\x94\xca\x95\xfc\x62\xe1\xde\xa5\xad\xb6\xfa\xa3\xbb" "\xc5\xc2\x72\x65\xb6\x58\xa8\x84\x10\x26\x93\xf4\x7f\x84\x13\x8d\xb6" "\x66\x17\x2a\x8b\x85\x7b\x21\x84\xcb\x5b\x79\x7f\x8d\xcb\xcb\xf7\xee" "\x16\x96\xf2\xf3\x0b\xcb\xaf\x0c\x0f\x0f\x0f\x87\xa9\xad\x31\x0c\x46" "\xc5\xf7\x2b\xc5\xa5\x4a\xbd\xf7\x7a\x6e\x08\xd3\x5b\x75\x07\xa2\xa6" "\xc1\xd5\xb2\xaf\x6c\x8d\xe5\x78\xf4\x4e\x79\x75\x79\xa9\x50\xaa\xa5" "\x5f\x6d\xaa\x53\x2a\xcf\x15\x4a\x4d\x75\x66\x92\xbc\x8f\xc3\x60\x54" "\x59\x5e\x5d\x9a\x2b\x54\x8a\xf9\x52\xf9\x4e\xa3\xbf\xc3\x34\x96\x1c" "\x27\xa6\xae\xbf\x79\xfd\xea\xc8\x8e\xfc\x5b\x51\xfd\x38\x7e\xb0\xc3" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\x37\x7a\x3c\xfa\xf2\x27\x21\x84\xde\xfa" "\x59\x1c\x42\x18\x6b\xbc\x88\x5a\x95\x7f\xf4\xa4\x78\x2e\xff\x6c\xe6" "\xc1\xc6\xe8\x99\xe9\xf5\x87\x1b\x4f\xdb\x95\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x57\x76\xe0\x40" "\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x4b\xff\x28\x11\x03\x51\x1c\x80" "\xdf\x8c\x85\x7f\x2a\x8f\x61\x15\x92\xce\x36\xa2\x88\x16\x46\x04\x4f" "\xa0\xc7\xf0\x30\x7a\x14\x2f\xe1\x1d\x2c\x2c\x6c\x2d\x64\x61\x77\x86" "\x5d\xb2\x1b\x48\xb3\x5b\x7d\x5f\xf3\x48\x7e\xcc\xbc\x07\xf3\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe6" "\xb9\x7d\x1a\x9e\x1f\xdb\x2e\x22\xc5\xc9\xff\x71\xc4\xe7\xeb\xd7\xf7" "\x66\x7e\x5f\xea\xfb\xd5\xee\xf3\x47\x07\x98\x91\xfd\xb9\x7b\x18\xae" "\x6f\xda\xae\xbc\x7b\xda\xca\x2f\xcb\xaf\x9f\x3e\x2f\xd3\xbf\xdf\xb7" "\x97\x58\xd7\xb3\xfa\x5d\x7d\x8c\xf6\x64\xbc\x4f\x2b\xb5\xcf\xe9\xe4" "\x5c\x53\xfb\x36\x35\x5f\xed\x7b\x1e\x29\x37\x11\xd1\x97\xfc\x22\xe5" "\xdc\x34\xf3\xee\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xc1" "\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x58\x00\x00\x00" "\x00\x40\x98\xbf\x75\x14\x7d\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\xaf\x00\x00\x00\xff\xff\xb1\xf9\x1f\xe7", 17458); syz_mount_image( /*fs=*/0x200000004440, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_SYNCHRONOUS|MS_STRICTATIME|MS_NODIRATIME|0xc0*/ 0x10108d0, /*opts=*/0x200000000280, /*chdir=*/3, /*size=*/0x4432, /*img=*/0x200000004480); break; case 7: memcpy((void*)0x2000000000c0, "./bus\000", 6); syscall(__NR_open, /*file=*/0x2000000000c0ul, /*flags=O_NOFOLLOW|O_NOATIME|O_LARGEFILE|O_CREAT|O_RDWR*/ 0x68042ul, /*mode=S_IWOTH|S_IRGRP|S_IXUSR*/ 0x62ul); break; case 8: syz_usb_connect(/*speed=USB_SPEED_FULL*/ 2, /*dev_len=*/0, /*dev=*/0, /*conn_descs=*/0); break; case 9: memcpy((void*)0x200000000080, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x200000000080ul, /*flags=O_SYNC|O_NOCTTY|O_DIRECT|O_CLOEXEC|O_RDWR*/ 0x185102ul, /*mode=*/0ul); if (res != -1) r[2] = res; break; case 10: syscall(__NR_ftruncate, /*fd=*/r[2], /*len=*/0x2007ffbul); break; case 11: memcpy((void*)0x200000000240, "./file1\000", 8); res = syscall( __NR_open, /*file=*/0x200000000240ul, /*flags=O_SYNC|O_NOCTTY|O_NOATIME|O_DIRECT|O_CREAT|0x2*/ 0x145142ul, /*mode=*/0ul); if (res != -1) r[3] = res; break; case 12: syscall(__NR_sendfile, /*fdout=*/r[3], /*fdin=*/r[2], /*off=*/0ul, /*count=*/0x80000000cul); break; case 13: memcpy((void*)0x200000000140, "/dev/loop#\000", 11); res = -1; res = syz_open_dev(/*dev=*/0x200000000140, /*id=*/0, /*flags=*/0); if (res != -1) r[4] = res; break; case 14: *(uint32_t*)0x200000000300 = 0; *(uint16_t*)0x200000000308 = 0; *(uint64_t*)0x200000000310 = 0; *(uint16_t*)0x200000000318 = 0; *(uint32_t*)0x200000000320 = 3; *(uint32_t*)0x200000000324 = 9; *(uint32_t*)0x200000000328 = 0; *(uint32_t*)0x20000000032c = 0xc; memcpy((void*)0x200000000330, "\x22\x53\x6a\xf3\x9b\x7c\x7c\xb7\x43\x5b\x0a\x43\x85\x2d\xbc\x3a" "\x9a\xda\x34\xcc\x97\xaf\x10\xfd\x4f\xcc\xa1\x57\x48\x32\x8c\x53" "\x09\x6c\x2f\x35\x9e\x9b\xa7\x43\xd3\x0b\x59\xc4\x91\xa7\xb3\xe7" "\x4d\x93\x89\x81\x06\x13\x83\x37\x4a\x1d\x79\x47\x1a\x2d\x2d\xfe", 64); memcpy((void*)0x200000000370, "\x04\x10\xb1\x61\x7b\x62\x17\x91\x7d\x76\x32\x2c\x0c\x5a\xa9\x26" "\x36\x26\xf4\xe2\x53\x10\xf5\xdb\x74\x16\x1c\xce\xf2\xc5\xcf\x5e", 32); *(uint64_t*)0x200000000390 = 0x1000003; *(uint64_t*)0x200000000398 = 0x800; *(uint32_t*)0x2000000003a0 = 0; syscall(__NR_ioctl, /*fd=*/r[4], /*cmd=*/0x4c02, /*arg=*/0x200000000300ul); break; case 15: *(uint32_t*)0x200000001240 = 0x98; syscall(__NR_getsockopt, /*fd=*/r[1], /*level=*/0, /*opt=HCI_FILTER*/ 2, /*arg=*/0x200000001180ul, /*arglen=*/0x200000001240ul); break; case 16: syscall(__NR_socket, /*domain=*/0x2aul, /*type=*/2ul, /*proto=*/0); break; case 17: *(uint32_t*)0x200000000080 = 0; *(uint32_t*)0x200000000084 = 3; *(uint64_t*)0x200000000088 = 0x200000001300; memcpy( (void*)0x200000001300, "\x18\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x95", 17); *(uint64_t*)0x200000000090 = 0; *(uint32_t*)0x200000000098 = 0; *(uint32_t*)0x20000000009c = 0xff7c; *(uint64_t*)0x2000000000a0 = 0; *(uint32_t*)0x2000000000a8 = 0; *(uint32_t*)0x2000000000ac = 0; memset((void*)0x2000000000b0, 0, 16); *(uint32_t*)0x2000000000c0 = 0; *(uint32_t*)0x2000000000c4 = 0; *(uint32_t*)0x2000000000c8 = -1; *(uint32_t*)0x2000000000cc = 8; *(uint64_t*)0x2000000000d0 = 0; *(uint32_t*)0x2000000000d8 = 0; *(uint32_t*)0x2000000000dc = 0x10; *(uint64_t*)0x2000000000e0 = 0; *(uint32_t*)0x2000000000e8 = 0; *(uint32_t*)0x2000000000ec = 0; *(uint32_t*)0x2000000000f0 = 0; *(uint32_t*)0x2000000000f4 = 0; *(uint64_t*)0x2000000000f8 = 0; *(uint64_t*)0x200000000100 = 0; *(uint32_t*)0x200000000108 = 0x10; *(uint32_t*)0x20000000010c = 0; *(uint32_t*)0x200000000110 = 0; syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x200000000080ul, /*size=*/0x90ul); break; case 18: memcpy((void*)0x200000000200, "./cgroup\000", 9); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000200ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[5] = res; break; case 19: *(uint32_t*)0x200000001c40 = 8; *(uint32_t*)0x200000001c44 = 3; *(uint64_t*)0x200000001c48 = 0x200000001300; *(uint64_t*)0x200000001c50 = 0x200000000240; memcpy((void*)0x200000000240, "syzkaller\000", 10); *(uint32_t*)0x200000001c58 = 0; *(uint32_t*)0x200000001c5c = 0; *(uint64_t*)0x200000001c60 = 0; *(uint32_t*)0x200000001c68 = 0x40f00; *(uint32_t*)0x200000001c6c = 0; memset((void*)0x200000001c70, 0, 16); *(uint32_t*)0x200000001c80 = 0; *(uint32_t*)0x200000001c84 = 0; *(uint32_t*)0x200000001c88 = -1; *(uint32_t*)0x200000001c8c = 8; *(uint64_t*)0x200000001c90 = 0; *(uint32_t*)0x200000001c98 = 0; *(uint32_t*)0x200000001c9c = 0x10; *(uint64_t*)0x200000001ca0 = 0; *(uint32_t*)0x200000001ca8 = 0; *(uint32_t*)0x200000001cac = 0; *(uint32_t*)0x200000001cb0 = 0; *(uint32_t*)0x200000001cb4 = 0; *(uint64_t*)0x200000001cb8 = 0; *(uint64_t*)0x200000001cc0 = 0; *(uint32_t*)0x200000001cc8 = 0x10; *(uint32_t*)0x200000001ccc = 0; *(uint32_t*)0x200000001cd0 = 0; res = syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x200000001c40ul, /*size=*/0x8ful); if (res != -1) r[6] = res; break; case 20: *(uint32_t*)0x200000000180 = r[6]; *(uint32_t*)0x200000000184 = r[5]; *(uint32_t*)0x200000000188 = 1; *(uint32_t*)0x20000000018c = 0; *(uint64_t*)0x200000000190 = 0; syscall(__NR_bpf, /*cmd=*/0x1cul, /*arg=*/0x200000000180ul, /*size=*/0x38ul); break; case 21: *(uint64_t*)0x200000001080 = 0; *(uint32_t*)0x200000001088 = 0; *(uint64_t*)0x200000001090 = 0x200000000180; *(uint64_t*)0x200000000180 = 0x200000001280; memcpy((void*)0x200000001280, "\x20\x00\x00\x0c\x00\x00\x00\x00\x00\x0c\x00\x00\x39\x27\x1a\x02" "\x74\x4e\xa8\x66\x8f\x8f\x2e\xa6\x31\xc3\x92\x38\xd4\xef\x08\xb8" "\x8c\x13\x41\x4b\xc4\xe6\x30\xcd\x58\xff\xcd\x6d\xda\x7c\x44\x1c" "\x25\x94\x9c\x09\xe6\xd7\x62\x50\x9e\x25\x97\x5e\x10\x72\x5f\x9c" "\xde\xcf\x7b\xb2\xe4\x98", 70); *(uint32_t*)0x2000000012c6 = 0; memset((void*)0x2000000012ca, 0, 8); sprintf((char*)0x2000000012d2, "0x%016llx", (long long)r[3]); sprintf((char*)0x2000000012e4, "0x%016llx", (long long)r[6]); *(uint64_t*)0x200000000188 = 0x20; *(uint64_t*)0x200000001098 = 1; *(uint64_t*)0x2000000010a0 = 0; *(uint64_t*)0x2000000010a8 = 0; *(uint32_t*)0x2000000010b0 = 0x20000080; syscall(__NR_sendmsg, /*fd=*/(intptr_t)-1, /*msg=*/0x200000001080ul, /*f=MSG_BATCH|MSG_OOB|MSG_DONTWAIT|MSG_CONFIRM|0x420*/ 0x40c61ul); break; case 22: syscall(__NR_bind, /*fd=*/(intptr_t)-1, /*addr=*/0ul, /*addrlen=*/0ul); break; case 23: syscall(__NR_readv, /*fd=*/(intptr_t)-1, /*vec=*/0ul, /*vlen=*/0x3eul); break; case 24: syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0x10); break; case 25: memcpy((void*)0x200000000080, "nl80211\000", 8); syz_genetlink_get_family_id(/*name=*/0x200000000080, /*fd=*/-1); break; case 26: memcpy((void*)0x2000000010c0, "wlan1\000\000\000\000\000\000\000\000\000\000\000", 16); syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x8933, /*arg=*/0x2000000010c0ul); break; case 27: res = -1; res = syz_init_net_socket(/*domain=*/0x1a, /*type=SOCK_STREAM*/ 1, /*proto=*/0); if (res != -1) r[7] = res; break; case 28: *(uint32_t*)0x200000000cc0 = 4; syscall(__NR_getsockopt, /*fd=*/r[7], /*level=*/0x10c, /*optname=LLC_OPT_REJ_TMR_EXP*/ 5, /*optval=*/0x200000000000ul, /*optlen=*/0x200000000cc0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }