// https://syzkaller.appspot.com/bug?id=a54c567c58548eb0348e7a45e09712d2de0b67bf // 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 #include #include #include #include #include #include #include #include #include #include #include #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 void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } 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_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } 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; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN || errno == EBADF || errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[1000]; while (read_tun(&data[0], sizeof(data)) != -1) { } } #define MAX_FDS 30 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } //% 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; } static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_binderfs(); setup_fusectl(); } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); initialize_vhci(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #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"); flush_tun(); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } 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 < 10; 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 == 3 ? 4000 : 0) + (call == 9 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } 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); } } void execute_call(int call) { switch (call) { case 0: *(uint64_t*)0x20000140 = 8; *(uint64_t*)0x20000148 = 0x8b; syscall(__NR_prlimit64, /*pid=*/0, /*res=RLIMIT_RTPRIO*/ 0xeul, /*new=*/0x20000140ul, /*old=*/0ul); break; case 1: *(uint32_t*)0x20000200 = 7; syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0x20000200ul); break; case 2: syscall(__NR_set_mempolicy, /*mode=MPOL_BIND*/ 2ul, /*nodemask=*/0ul, /*maxnode=*/2ul); break; case 3: memcpy((void*)0x200058c0, "bcachefs\000", 9); memcpy((void*)0x20005900, "./file1\000", 8); memcpy( (void*)0x20000800, "\x66\x73\x63\x6b\x2c\x64\x69\x72\x65\x63\x74\x5f\x69\x6f\x2c\x64\x69" "\x72\x65\x63\x74\x5f\x69\x6f\x2c\x63\x6f\x6d\x70\x72\x65\x73\x73\x69" "\x6f\x6e\x3d\x7a\x73\x74\x64\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69" "\x6f\x2c\x6e\x4f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x61\x63\x6c\x2c" "\x64\x69\x73\x63\x61\x72\x64\x2c\x73\x75\x62\x6a\x5f\x74\x79\x70\x65" "\x3d\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c\x00\x2f\xdb\xb8\x9f" "\xc0\x16\x53\x73\x3a\x9a\x26\x50\x43\xfc\x84\xca\xf0\x7b\x77\x67\x3a" "\x6b\xff\xb8\x11\x08\xc0\x6b\x0a\xde\xc8\xd6\x44\xac\x6b", 133); memcpy( (void*)0x20005980, "\x78\x9c\xec\xdd\x6d\x90\x5c\x55\xdd\x20\xf0\x73\xbb\x7b\x32\x9d\x99" "\xbc\x4c\x02\x48\x04\x99\x0c\x81\x28\x82\x9a\x09\x6f\x85\x2f\xa5\xd1" "\xf5\xad\x00\xa9\x58\x58\x4a\xd8\x28\x0c\x64\x82\xd1\x24\xa4\x92\x20" "\x10\x50\x82\x0b\x2e\x14\x60\xa1\xa5\xa5\xa8\x1f\xd0\x42\x6a\xd1\x68" "\x51\x05\xab\x44\x4a\xe4\x65\x13\x56\x51\x8a\xd5\xa5\xb6\x90\x5a\xdd" "\x45\x3f\xf8\x14\xf2\x90\x12\xc8\x43\x59\x3e\xe6\xa9\x99\xbe\xa7\xd3" "\x73\xa7\xef\xdc\x9e\xee\x9e\x90\xc0\xef\x57\xc9\xdc\x3e\xa7\x6f\xff" "\xcf\xb9\xe7\x9e\xbe\xd3\xff\x33\x3d\xd3\x01\x00\x00\x80\xd7\x84\xdd" "\xd7\x6f\xd9\x7b\xce\x51\x1f\xf8\xd5\x17\x47\x5f\xba\xe6\xc3\x3f\xdb" "\x70\x6d\xe8\x2f\x8f\xd7\x57\xe3\x0e\x03\xe9\xf6\x8a\x57\xaa\x87\x1c" "\x48\xbd\x95\x45\xe3\xdb\xec\xbc\x78\xd3\x55\x3f\xf8\xf3\xd0\xc5\xef" "\xfb\xe5\xdd\x7d\xdf\x7f\x79\xd7\x9a\x63\xd7\xfe\xfe\xfd\x87\x5d\x7c" "\xff\x67\xce\xdc\x79\xdb\xb7\x1f\x7a\x71\xee\xbd\xff\x7c\xa6\x28\x6e" "\x9c\x4f\x27\xee\x2f\x27\xcf\x25\x21\x54\x7f\xbe\xe7\xeb\x5f\xda\xf5" "\xd8\x91\x63\x75\x49\x08\xa1\x9c\x0c\x6c\x0f\x61\x41\xb2\xf0\xa1\x05" "\x49\x26\xc4\xf0\xdf\x43\x08\x6b\xd2\xc2\xa2\xcc\x9d\xf7\xbc\x74\xca" "\xda\xb1\xed\xb5\x37\xf5\x4e\xa8\x9f\x9f\xd9\xcf\x7c\x7f\x6d\xab\xa6" "\xf3\x6c\xdb\xde\xcb\x4f\x0a\x7f\x78\xef\xaa\xeb\x7e\xb3\xf8\xc7\x3f" "\xea\xd9\xf1\xec\xf6\xfd\xbb\x24\xd5\x86\xf9\x14\xc2\xbc\x0b\x1b\x1f" "\xdf\x13\x42\x98\x9d\xfe\x1f\x13\x67\x5b\x9c\x8f\x71\xd2\xae\x0c\x21" "\xf4\x35\x3c\xee\x8c\x82\x7e\x1d\xd7\x62\xff\x97\xe5\x94\x8f\x4e\xb7" "\xb3\xd2\x6d\x7f\x41\x9c\x78\xff\x92\x4c\xb9\x94\xd9\x2f\x5b\x8e\x7a" "\x32\xdb\xbe\x82\xf6\x3a\x95\xd7\x8f\x76\xf7\x2b\x32\x27\x53\xce\x5e" "\x8c\x3a\x95\xd7\xcf\x58\xbf\x20\xdd\xfe\x34\xdd\x9e\x38\xcd\xf8\xe5" "\xf8\x3f\x09\xa5\x24\x54\xea\xdd\x5f\x9f\xec\x9f\x23\xa1\xe1\xbc\x25" "\x21\x19\x3f\x97\xd5\x7a\xb9\x54\x3f\xb7\x21\x3d\xfe\x4c\x39\xc9\x94" "\x4b\x99\x72\xb9\x27\x73\x5c\xe3\xed\xa6\x13\xad\x9c\x24\x13\xeb\xe3" "\x7e\x99\xfa\x78\x39\xae\xa4\xf5\xc7\x36\x5e\xab\x9b\x38\x37\xa7\xfe" "\xf5\xe9\xb6\x9a\x3e\x51\x5f\x8e\xe5\x90\xbd\x51\xd3\x3f\xe9\x46\xfd" "\xb8\xc6\xc5\x7e\xed\x99\xa2\x2f\x07\x42\xa9\xe1\x1a\xd4\xac\xbe\x7e" "\xe2\xd3\x93\xd1\x9f\xd6\xf5\x27\x0b\x27\x3d\x66\x5f\x13\xf1\xbe\x5d" "\xab\x6e\x5e\x5a\x5e\xfd\xf0\xee\x81\x9c\x7e\x24\x77\x27\x69\xfc\xa4" "\xad\xf8\xdb\x7e\xbd\x60\xce\xa7\x7e\x78\xe3\x65\xd9\xef\xeb\xf5\xf8" "\x17\x96\xd2\xf8\xa5\xb6\xe2\xff\xf1\xac\xc7\x9f\x3f\xff\xc6\xef\x7d" "\x2b\x37\xfe\xad\x31\x7e\xb9\xad\xf8\x27\x3f\xd0\xf7\xdc\x59\x8f\x5c" "\xbf\x24\x77\x7c\xf6\xc4\xf1\xa9\xb4\x15\x7f\xe4\x99\x47\x6f\x59\x7c" "\xf8\x45\x3b\x72\xfb\x7f\x7b\x8c\x5f\x6d\x2b\xfe\x8a\x9d\x8f\xf7\xce" "\xdd\xfb\xc0\x83\xb9\xfd\x1f\x8e\xe3\x33\xbb\xad\xf8\x4f\xbf\xf3\x83" "\x7f\xba\xeb\xc9\xfb\x9e\xcd\x8d\x1f\x62\xfc\xbe\xb6\xe2\xaf\xde\xb9" "\xe9\xcb\xbd\x83\x7b\x4f\xc8\x8d\xff\x60\x1c\x9f\xfe\xf6\xe6\xcf\x0b" "\x3b\x4e\x7f\x6a\x70\xf0\x2f\x43\x79\xf1\x9f\x88\xf1\xe7\xb6\x15\xff" "\xce\xed\xb7\xbd\xe3\x8e\xf9\x37\x9d\x99\x7b\x7e\x57\xc6\xf1\x19\x68" "\x2b\xfe\xd9\xc7\xdf\x7f\xdd\x9c\xbd\xf7\x1d\x93\x77\xed\x4c\x6e\xef" "\xd6\x77\x4e\x80\xd7\xa6\xc3\xd2\xd7\x58\x37\xa4\xe5\x76\xf3\xcc\x4e" "\x35\xe4\x0b\xdf\x1c\xaa\xd4\x5e\xf3\xcd\x49\xff\xcf\xed\x66\x43\x19" "\x63\xed\xcc\x9b\xc1\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x36\x1d\x71\xd2\xff\xfc\xd0" "\xff\xff\xf8\xc0\x73\x95\xb4\xdc\x9b\xde\x78\xba\x54\xdb\xc6\xfa\x59" "\x21\x24\xb3\x43\x08\x5b\xb6\x8e\x6c\xde\xba\x6e\xe3\x25\x43\x9f\xb9" "\xf4\xb2\xcd\x1b\x47\xd6\x0f\x8d\x6c\x1d\x1a\xdd\xb8\x75\xf3\x95\x43" "\xa7\xbe\x65\x68\xf3\xe8\xa6\xf5\x23\x57\x8e\xdd\x3b\xfc\xd6\x53\x6a" "\x8f\x5b\x18\x92\xda\x36\x39\x66\x52\xdb\xfb\xf6\xed\xdb\x57\x1a\x98" "\x58\x17\xdb\xfb\x4f\xc7\xef\xf8\xc3\xd2\x33\xfe\xe5\xaf\x21\x0c\x1f" "\xf1\xbb\xc1\x4a\x6e\xff\x97\xdd\xb6\xe1\x8e\xc3\x9b\x7c\xcd\x48\x56" "\xec\x7b\xcf\x86\xcb\xce\xf9\xdd\x69\xdf\x4d\x8f\x6b\x20\xed\xd7\x40" "\x4e\xbf\x42\x4e\xbf\xfe\xf5\xbc\x7f\xdc\xf1\xd5\x3d\x7f\x3e\x21\x84" "\xe1\xd7\x4d\xd5\xaf\x47\x9f\x7e\xf7\x2f\x26\x74\x68\xbc\x62\x7f\x9c" "\x54\xa9\x37\xd4\x3a\xd4\x9b\xf4\x35\xed\x47\xbd\xd7\x69\x7f\xe2\x78" "\x55\xd6\xae\x5b\x3f\x3a\x5c\x3c\xbe\xe5\x9c\xe3\xf8\xcf\x57\x3d\xfb" "\xf7\xb5\x57\x7c\xe5\x1f\xb5\xf1\xad\xe6\x1e\x47\x8b\xe3\x3b\x7b\xc5" "\xbe\xf5\xa5\x6f\xac\x3a\xfb\xdf\xbf\x71\x75\xad\xe2\x60\x3d\xef\x45" "\xe3\x1d\x8f\x22\xf6\x2f\x8e\x5f\x35\x1d\xef\x79\xe9\x71\xcd\xcb\x39" "\xae\x4a\xce\x71\x5d\xff\x9b\x07\x9f\xfc\xf9\x51\x37\xbe\xb8\x3d\x0c" "\x57\x5e\x58\x3c\xb9\xed\xa2\xe3\xea\x49\x27\x40\x4f\xf2\xfa\x96\xda" "\x8d\x2d\xf4\x25\x0b\x26\xd4\x57\xd3\xfd\xe3\x19\x8f\x8f\x5b\xb6\x75" "\xc3\xa6\x65\x5b\xae\xdc\xf6\xd6\x75\x1b\x46\x2e\x19\xbd\x64\x74\xe3" "\xdb\x97\x9f\xba\xfc\xf4\xe1\xd3\x4e\x3f\x6d\xd9\xf8\x91\x2f\xeb\xf2" "\xf1\xc7\xf6\xdf\xd8\xe2\xf1\x1f\x98\xf9\x34\xff\x73\xdb\x7f\x1a\xbf" "\xb6\x36\x9f\x8a\xfa\x55\x34\x1e\x63\xfd\x2a\x1e\x8f\xc6\x1e\xe5\x3d" "\xff\xfa\xce\xfd\xd2\xd7\xde\x7e\xdb\x23\xe7\xd4\x2a\x8a\xe6\x79\xdc" "\xbb\x7e\x3d\x49\xb7\x7d\x63\xe7\x79\x79\x68\x98\x6f\x93\xc7\xaa\xd9" "\x71\x15\x8d\x43\x08\x61\xa8\xd9\x38\x3c\xff\xe2\x99\xe1\xc8\xff\xb3" "\xee\xba\xa2\xeb\x50\xe3\x99\x69\xfc\x9a\x91\xac\xd8\xf7\xd8\x92\xbf" "\x7d\xf7\x8c\xef\x2c\x7a\x57\xad\xe2\x80\x5c\xe7\x1b\x3b\xd4\xe6\x75" "\xbe\xde\xeb\xfd\xfd\x19\x1f\xaf\x6a\x7a\x3e\x0e\xd6\xf1\xed\x0d\xe5" "\xf4\xb8\xfa\x9b\xf6\x6b\xf9\x63\x8f\xf4\xdc\xbc\xfb\xaf\x9f\xaf\xf7" "\x6f\xd6\xac\x70\xc5\xc8\xd6\xad\x9b\x97\xd7\xbe\xce\x49\x7b\x3a\x27" "\x39\xba\x69\xbf\xb2\xb5\xf1\xb8\x16\x8f\x7f\x2d\x87\x74\x58\x42\x7d" "\x9a\x36\x99\xaf\x63\x7a\x42\xad\x7f\xd9\xeb\x67\xdc\x3d\x3b\xaa\xfd" "\xe9\x7d\xfd\xc9\xc2\xa6\xc7\x95\x15\xef\xdb\xb5\xea\xe6\xa5\xe5\xd5" "\x0f\xef\xce\x1b\xe9\xe4\xee\x5a\x8b\xb3\xc3\xdc\xda\x36\x79\x43\xce" "\x9e\xeb\x33\x0f\x2c\xd7\x3b\xdc\xac\xfd\x43\x75\x7e\x0c\x7e\xe8\x3b" "\xf7\x7e\xfc\xde\x9f\x9c\x3a\x69\x7e\x9c\x5c\xfb\x5a\x74\x5c\x49\xce" "\x71\xfd\xf8\xc9\x3b\xbf\xf6\xfd\xaf\xfc\xd7\x9f\x74\xef\xb8\x3e\xf4" "\xee\xc7\x07\xfe\xf6\x7f\x3f\xbd\xb4\x56\x71\xa8\x5c\x57\xea\xbd\x4e" "\xfb\x93\x34\x5e\x57\x4e\x0e\xa1\xe8\xf9\xb7\x38\x34\x3f\x8e\xdc\xe7" "\x5f\xa9\xf9\xf1\x14\x3d\xff\xb2\xed\xec\xdf\xbf\x79\xbc\xa1\x4c\xb9" "\x3f\x94\xdb\x7a\xbe\x9e\xfc\x40\xdf\x73\x67\x3d\x72\xfd\x92\xdc\xe7" "\xeb\x9e\x56\x9f\xaf\x57\x4f\x28\x95\x0b\x9e\xaf\x07\xcb\xfc\x79\xe5" "\x9e\x5f\x13\x26\x4a\xb2\x62\xdf\x2f\x6f\x38\x6c\xfb\x43\xd7\xac\x3c" "\xaa\x56\x51\x34\xaf\xeb\x7b\x37\x9b\xd7\xa7\xb4\x90\x7f\xe4\x1c\xd7" "\x2f\xce\x7f\x6a\xf0\xd2\xa1\xff\xf2\xbf\xbb\x77\xdd\xf8\xc1\x5b\xee" "\xb9\xe0\xf7\x23\x2b\xbe\x50\xab\x38\x58\xce\x7b\x35\x1d\xdf\x6a\xce" "\xf8\xd6\x7b\x1d\xf3\xce\xc6\xf1\x7d\xdb\xc5\x97\xae\x5f\x53\xab\x3f" "\x78\x5f\xff\xa6\xdb\x82\xfc\x27\x5e\x4a\xb6\x5c\xb9\xed\xb3\x23\xeb" "\xd7\x8f\x6e\xde\xd2\xda\x71\xb5\xfa\xfd\x34\xb6\x93\x1d\xe5\x76\xbf" "\x9f\xc6\xab\xdb\xc2\x82\xe3\x2a\x4d\x3a\xae\x99\xbb\xd1\xca\x78\xb5" "\xfa\x7c\x8b\xfd\x5f\xd3\xf6\x78\x4d\x7c\xbe\xf5\x87\xa4\xad\xef\x0b" "\xdb\x7e\xbd\x60\xce\xa7\x7e\x78\xe3\x65\x03\x93\x1e\x95\x36\x74\x61" "\x29\x8d\x5f\x6a\x2b\xfe\x1f\xcf\x7a\xfc\xf9\xf3\x6f\xfc\xde\xb7\x72" "\xe3\xdf\x1a\xe3\x57\xda\x8a\x3f\xf2\xcc\xa3\xb7\x2c\x3e\xfc\xa2\x1d" "\xb9\xf1\x6f\x4f\xd2\xf8\xd5\xb6\xe2\xaf\xd8\xf9\x78\xef\xdc\xbd\x0f" "\x3c\x98\x1b\x7f\x38\xf6\x7f\x76\x5b\xf1\x9f\x7e\xe7\x07\xff\x74\xd7" "\x93\xf7\x3d\x9b\x1b\x3f\xc4\xf8\xfd\xed\x8d\xff\x0b\x3b\x4e\x7f\x6a" "\x70\xf0\x2f\xb9\xf1\x9f\x48\xd2\x76\xc6\x5e\x23\x85\x70\xcf\x4b\xa7" "\xac\xad\x95\x93\xd0\x93\x3e\xdf\x62\x3f\x7a\x26\xf4\x2b\x64\xcb\x49" "\xa6\x5c\xca\x94\xcb\x8d\xe5\x52\x6d\xad\xb5\xde\x40\x39\x49\x26\xd6" "\xc7\xfd\xd2\xfa\x63\x1b\xfa\xd2\xcc\x27\x72\xea\xe3\xab\xb0\xea\xa2" "\xda\xf6\xe5\x58\x0e\xd9\x1b\x53\xd7\x1f\x6c\x4a\x0d\xd7\xfe\x66\xf5" "\x45\xaf\x53\x01\x00\x5e\xed\xe2\xcf\xff\xe3\x6b\xd0\xf8\xf3\xff\xd1" "\xf4\x85\x52\xfe\x4a\x03\xec\xd7\x69\x1e\xb6\x28\x27\x6e\xcc\xc3\xf6" "\xaf\xe7\xcc\x9a\x70\xff\xa2\x34\x7e\x7c\x7c\x5c\x07\x1c\x7c\x5b\x18" "\x1e\xdb\x5e\x3b\x54\x7b\xa1\x3f\xdd\x75\xce\xf8\x7c\xc8\xae\x73\xc6" "\x76\x4e\x38\x6e\x62\x8c\x76\xd7\x39\x8b\xd6\xdf\x97\x64\xca\xb1\x5f" "\xb5\xf5\xf2\x4a\x43\x1e\x9a\x9a\x9c\xd7\x54\x42\x0b\xeb\xef\x93\xdb" "\x99\x7a\xfd\x3d\x73\xf8\xc5\xeb\xe3\x43\x37\x4c\xea\xd6\x50\xc3\xba" "\x55\xf6\xfc\xf5\xa4\x2b\x66\xcd\xde\xef\x90\xe9\x6f\x65\x2c\x42\xde" "\xfc\xc8\xae\x8b\xc5\xf7\x73\x0c\xce\x0b\x2b\xc7\xdb\x6b\x71\x7e\x64" "\xdf\x47\x13\xcf\x43\xf6\x7d\x34\xb1\x9d\xa3\x32\x17\xce\x76\xdf\x47" "\xd3\xe9\xfc\x88\xdd\x9e\x62\x7e\x8c\x77\xb9\xf8\xe7\x1b\x93\xcf\x5f" "\x98\x62\x7c\xf7\x9f\xbf\xe6\xd1\xb2\xe7\x6f\x1a\xe7\xbb\x3a\xb6\xff" "\x4c\xff\x7c\xf6\xd0\x5f\x37\x9c\xd9\x9f\x87\x59\x97\xcc\x89\x9f\x3e" "\xc1\x0e\xf6\x75\xc3\x58\x1f\x8f\xa3\xd2\xe2\x7a\xe2\xc7\x73\xea\xbb" "\xb5\x9e\x18\x2f\x17\xb1\x5f\x7b\xa6\xe8\xcb\x81\x60\x3d\x11\x78\xb5" "\x8a\xf9\x7f\xfc\x1e\x31\x96\xff\x8f\xbd\x00\xff\xb7\xcc\x7e\x45\xaf" "\x43\xb3\xaf\x1a\x63\xbc\xdc\xf7\x09\x95\x9b\xf7\xa7\x28\xef\x98\xfc" "\x3e\xbd\xbe\xb6\xbe\x8f\xaf\xde\xb9\xe9\xcb\xbd\x83\x7b\x4f\xc8\x7d" "\x9d\xf3\x60\xab\xef\xfb\xd9\x34\xa1\xd4\x57\xf0\xbe\x9f\xa2\x71\x5c" "\x9a\x29\x17\x8e\x63\xce\x02\x4d\x51\xbe\x97\x6d\xa7\x68\xdc\xb3\xef" "\xcb\xe8\x0f\x73\xdb\x1a\xf7\x3b\xb7\xdf\xf6\x8e\x3b\xe6\xdf\x74\x66" "\xee\xb8\xaf\xac\x7d\x23\x2d\x1e\xf7\xaf\x4d\x28\xcd\x2d\x18\x77\xf9" "\x42\x4e\x7c\xf9\xc2\x41\x91\x2f\xcc\xf4\xfa\xd9\x2b\x96\x8f\xa4\x6f" "\x7c\x9a\xa9\x7c\xe4\x63\x39\xf5\xd3\xcd\x47\xfa\x26\xdd\xa8\x1f\xd7" "\xb8\x43\x2e\x1f\xe9\x39\xb0\xfd\x02\x00\x0e\x1d\x31\xff\xaf\xff\xfc" "\x2c\xcd\xff\xff\x5f\x66\xbf\xa2\xbc\xf5\xc4\x4c\x39\xc6\xcb\xcd\x5b" "\x73\x5e\x9f\xe4\xe5\xad\x1f\x49\xb7\x57\x64\xf6\xef\x4f\x7f\xa3\x62" "\xba\xaf\x9b\xcf\x3e\xfe\xfe\xeb\xe6\xec\xbd\xef\x98\xdc\xbc\xe5\xf6" "\x56\xf3\xd0\xff\x36\xa1\x34\x50\x98\x87\x76\x96\x37\xe7\xe6\x11\x2b" "\xbb\xf3\x7e\xf1\xdc\x3c\xa2\x9e\x67\x75\x96\x27\xe6\xf6\xbf\x9e\x27" "\x76\x96\xa7\xe7\xc6\xaf\xe7\xe9\x9d\xe5\xd1\xb9\xe3\x53\xcf\xa3\x3b" "\x5b\x07\xc8\x8d\x5f\x5f\x07\x38\xd4\xf3\xdc\x99\x5d\xaf\x7b\xd5\xe6" "\xd1\xe9\xaf\xcf\xce\x54\x1e\x7d\x6e\x4e\xfd\x74\xf3\xe8\xfe\x49\x37" "\xea\xc7\x35\x4e\x1e\x0d\x00\xf0\xca\x8a\xf9\x7f\x7c\x19\x17\xf3\xff" "\x47\x32\xfb\x75\xfa\xba\x3d\x37\x2f\xe8\xd2\xeb\xf6\xec\xdf\x03\xa9" "\xc7\x7f\xe2\x40\xe5\x95\x33\x9d\xf7\xcd\x74\xde\x3a\xd3\x79\xfd\x4c" "\xaf\x4b\x1c\xea\x79\xf1\x4c\xaf\x0b\xcd\xec\x3a\x99\xbc\x38\x2d\x87" "\xec\x8d\x1a\x79\x31\x00\x00\x07\x83\x98\xff\xcf\x4e\xcb\xf9\xf9\x7f" "\x67\xf9\x49\x6e\xfe\x56\xcf\x4f\xe4\xe7\x4d\xe3\xcb\xcf\x0f\x92\xfc" "\xfc\x50\x5f\xff\x92\xff\xcb\xff\x8b\xc9\xff\x01\x00\x5e\xdd\x62\xfe" "\x1f\x7f\xed\x31\xfe\xfd\xbf\xff\x91\x96\xb3\x7f\xb7\x5e\x9e\x9e\x13" "\x5f\x9e\x2e\x4f\x9f\x6a\xfe\xb4\x9c\xa7\xcf\xf4\x3a\x9b\x75\x00\xeb" "\x00\xc5\xac\x03\x00\x00\xbc\xba\xf4\x8c\x67\x4a\x93\x7f\xcf\xfe\x93" "\xe9\x36\xfb\x7b\xf6\x79\xbf\x97\x7f\x7e\xce\xfe\xad\xaa\x8c\xff\x8e" "\x7d\x08\x17\x6d\xdd\x3c\x3a\x7a\xc1\x65\x9b\xd6\x8c\x6c\x1d\xbd\x60" "\xe3\xa5\x6b\x46\xb7\x5c\x70\xf9\xe6\x75\x5b\xb7\x8e\x6e\xac\xed\xd7" "\x69\xde\x98\x9b\xb7\xa4\x79\x63\x4f\xa8\xa4\xe3\xd1\x7c\xbf\x6c\xde" "\x36\x3f\xfd\x7b\x08\xf3\x73\xfe\x1e\x42\x76\xff\x18\xf6\xe8\xf1\x1b" "\x93\xff\x1e\x42\xb6\xd9\xd9\x05\x7f\x47\x60\xff\xf9\x6b\xad\xbf\x79" "\xe7\xaf\x34\xc5\xfe\xcd\xe6\x47\xde\xf9\xce\x8b\xff\x89\x9c\xfd\xa3" "\xfa\xf9\xbf\xf8\xd3\x27\x5f\xb0\x76\xcb\x05\xeb\x36\xae\xdb\xba\x6e" "\x64\xfd\xba\x6d\xa3\x13\xf7\x1b\xcb\x5a\xfb\xa6\xf1\xb9\x99\x71\x58" "\xa6\xf5\xb9\x99\x99\x2f\x93\x94\xa6\xff\xf9\x9d\xdd\xe9\x47\x69\x52" "\x3f\x7a\xd2\xf1\xc8\xfb\x7c\xf6\x24\xd3\x8f\x05\x69\x4f\x16\xe4\x7d" "\xfe\x41\x4e\xbf\x7f\xf5\xbf\xbe\xfa\xb9\xe3\xf7\xfd\xe3\xae\x10\x86" "\x8f\x28\xbf\xa1\xa3\xf1\x4b\x56\xec\xfb\xef\xe7\x8d\x7e\x64\xeb\xee" "\xdf\x6d\x1a\xeb\x7f\x69\xca\xfe\xd7\xf7\x4c\xfb\x55\xf4\x79\xa5\xd9" "\xfd\xe3\xf1\x54\xd6\x5f\xba\x65\xeb\x49\x6b\x2f\xbd\x6c\x63\xf6\x13" "\x25\xdb\x13\xd7\x33\x4a\xf5\xf2\x0c\xad\x67\xa4\x4f\xff\x72\x8b\xeb" "\x13\xab\x73\xea\xa7\xbb\x3e\x51\x9e\x74\xe3\xe0\xd4\xf2\xfa\x04\x00" "\x00\x13\xc4\x9f\xff\xc7\xd7\xb3\xf1\xe7\x87\x5f\x49\x5f\x40\xc5\xfa" "\xd6\xf3\xf4\xce\x7e\x7e\x9c\x9b\xa7\x0f\xb7\x96\xa7\x67\x3f\x97\xac" "\x28\x4f\xcf\xee\x1f\x8f\xb7\xd5\x3c\xbd\xda\x61\x9e\x9e\x6d\xbf\x28" "\x4f\x6f\xb6\x7f\xb3\x3c\x3d\x2f\xef\xce\x8b\xff\xb1\x9c\xfd\xa7\xab" "\xf5\x79\xd2\xd9\xfb\x3c\x72\xe7\xc9\x85\xad\xcd\x93\xec\xe7\x19\x14" "\xcd\x93\xec\xfe\xd3\x9d\x27\x49\x87\xf3\x24\xdb\x7e\xd1\x3c\x69\xb6" "\x7f\xb3\x79\x92\x77\xde\xf3\xe2\x7f\x34\x67\xff\x3c\xad\xcf\x87\xce" "\xde\x97\x93\x3b\x1f\x6e\x6d\x6d\x3e\xbc\x39\x53\x2e\x9a\x0f\xd9\xfd" "\xa7\x3b\x1f\x4a\x1d\xce\x87\x6c\xfb\x45\xf3\xa1\xd9\xfe\xcd\xe6\x43" "\xde\xf9\xcd\x8b\x7f\x4e\xce\xfe\xad\x9a\x38\x3f\xc6\x26\xc6\xf8\xbc" "\x18\xbd\xe0\xf2\x4b\x37\x7f\xb6\x61\xbf\x99\xfe\xfc\x8b\xce\xfb\x37" "\xb3\x9f\xff\xd1\xae\xd6\xfb\x3f\xb3\xef\xfb\x9a\xf9\xfe\xcf\xec\xfb" "\xca\x66\xbe\xff\x9d\xbd\xaf\x2c\xb7\xff\x4f\x74\xb6\x12\xd6\x7a\xff" "\x67\xf6\xf3\x5d\xda\x75\xc0\xd6\x6b\xd3\x37\x9b\x15\xbd\xff\xac\x68" "\x1d\x77\x55\x4e\xfd\x74\xd7\x71\x67\x4d\xba\x71\x70\xb2\x8e\x0b\xaf" "\x9c\x98\xff\xc7\x1f\xf7\xc4\xfc\xff\xa6\x74\xdb\xed\x1f\x03\x1d\xfa" "\x9f\x93\xe6\x73\xcc\x9a\xc6\xef\xd2\xe7\x98\x15\xbd\x8e\xf1\xfd\x7c" "\x8a\xc6\x0e\x02\xbe\x9f\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\xb4\xa6\xb7\xb2" "\x68\x7c\xbb\xfb\xfa\x2d\x7b\xcf\x39\xea\x03\xbf\xfa\xe2\xe8\x4b\xd7" "\x7c\xf8\x67\x1b\xae\x7d\xd3\x55\x3f\xf8\xf3\xd0\xc5\xef\xfb\xe5\xdd" "\x7d\xdf\x7f\x79\xd7\x9a\x63\xd7\xfe\xfe\xfd\x87\x5d\x7c\xff\x67\xce" "\xdc\x79\xdb\xb7\x1f\x7a\x71\xee\xbd\xff\x7c\xa6\x30\xf0\x40\x6d\x73" "\x62\x5a\xac\x86\x90\x3c\x97\x84\x50\xfd\xf9\x9e\xaf\x7f\x69\xd7\x63" "\x47\x8e\xd5\x25\x21\x84\x72\x32\xb0\x3d\x84\x05\xc9\xc2\x87\x16\x24" "\x99\x08\xc3\x7f\x0f\x21\xac\xa9\xf7\x73\xe2\x9d\xf7\xbc\x74\xca\xda" "\xb1\xed\xb5\x37\xf5\x4e\xa8\x9f\x9f\x09\x92\x3d\xae\xd0\x5f\x8e\xfd" "\x99\xd0\xcf\x70\x45\xe1\x11\x71\x08\xaa\xa6\xf3\x6c\xdb\xde\xcb\x4f" "\x0a\x7f\x78\xef\xaa\xeb\x7e\xb3\xf8\xc7\x3f\xea\xd9\xf1\xec\xf6\xfd" "\xbb\x24\xd5\x86\xf9\x14\xc2\xbc\x0b\x1b\x1f\xdf\x13\x42\x98\x9d\xfe" "\x1f\x13\x67\xdb\xa2\xf8\xe0\x74\xbb\x32\x84\xd0\xd7\xf0\xb8\x33\x0a" "\xfa\x75\x5c\x8b\xfd\x5f\x96\x53\x3e\x3a\xdd\xce\x4a\xb7\xfd\x05\x71" "\xe2\xfd\x4b\x32\xe5\x52\x66\xbf\x6c\x39\xea\xc9\x6c\xfb\x0a\xda\xeb" "\x54\x5e\x3f\xda\xdd\xaf\xc8\x9c\x4c\x39\x7b\x31\xea\x54\x5e\x3f\x63" "\xfd\x82\x74\xfb\xd3\x74\x7b\xe2\x34\xe3\x97\xe3\xff\x24\x94\x92\x50" "\xa9\x77\x7f\x7d\xb2\x7f\x8e\x84\x86\xf3\x96\x84\x64\xfc\x5c\x56\xeb" "\xe5\x52\xfd\xdc\x86\xf4\xf8\x33\xe5\x24\x53\x2e\x65\xca\xe5\x9e\xcc" "\x71\x8d\xb7\x9b\x4e\xb4\x72\x92\x4c\xac\x8f\xfb\x65\xea\xe3\xe5\xb8" "\x92\xd6\x1f\xdb\x78\xad\x6e\xe2\xdc\x9c\xfa\xd7\xa7\xdb\x6a\xfa\x44" "\x7d\x39\x96\x43\xf6\x46\x4d\xff\xa4\x1b\xf5\xe3\x1a\x17\xfb\xb5\x67" "\x8a\xbe\x1c\x08\xa5\x86\x6b\x50\xb3\xfa\xfa\x89\x4f\x4f\x46\x7f\x5a" "\xd7\x9f\x2c\x9c\xf4\x98\x7d\x4d\xc4\xfb\x76\xad\xba\x79\x69\x79\xf5" "\xc3\xbb\x07\x72\xfa\x91\xdc\x9d\xa4\xf1\x93\xb6\xe2\x6f\xfb\xf5\x82" "\x39\x9f\xfa\xe1\x8d\x97\x2d\xca\x8b\x7f\x61\x29\x8d\x5f\x6a\x2b\xfe" "\x1f\xcf\x7a\xfc\xf9\xf3\x6f\xfc\xde\xb7\x72\xe3\xdf\x1a\xe3\x97\xdb" "\x8a\x7f\xf2\x03\x7d\xcf\x9d\xf5\xc8\xf5\x4b\x72\xc7\x67\x4f\x1c\x9f" "\x4a\x5b\xf1\x47\x9e\x79\xf4\x96\xc5\x87\x5f\xb4\x23\xb7\xff\xb7\xc7" "\xf8\xd5\xb6\xe2\xaf\xd8\xf9\x78\xef\xdc\xbd\x0f\x3c\x98\xdb\xff\xe1" "\x38\x3e\xb3\xdb\x8a\xff\xf4\x3b\x3f\xf8\xa7\xbb\x9e\xbc\xef\xd9\xdc" "\xf8\x21\xc6\xef\x6b\x2b\xfe\xea\x9d\x9b\xbe\xdc\x3b\xb8\xf7\x84\xdc" "\xf8\x0f\xc6\xf1\xe9\x6f\x6f\xfe\xbc\xb0\xe3\xf4\xa7\x06\x07\xff\x32" "\x94\x17\xff\x89\x18\x7f\x6e\x5b\xf1\xef\xdc\x7e\xdb\x3b\xee\x98\x7f" "\xd3\x99\xb9\xe7\x77\x65\x1c\x9f\x81\xb6\xe2\x9f\x7d\xfc\xfd\xd7\xcd" "\xd9\x7b\xdf\x31\x79\xd7\xce\xe4\xf6\x6e\x7d\xe7\x04\x78\x6d\x3a\x2c" "\x7d\x8d\x75\x43\x5a\x6e\x37\xcf\xec\x54\x43\xbe\xf0\xcd\xa1\x4a\xed" "\x35\xdf\x9c\xf4\xff\xdc\x6e\x36\x94\x31\xd6\xce\xbc\x19\x8c\x0f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xab\xd3\x6f\xaf\x3e\xf5\x93\xe7\xbd\xe7\xa3" "\xab\x2a\x49\x08\x49\xce\x3e\xfb\x9a\x88\xf7\x95\x67\xad\x58\x31\xd4" "\x46\xbb\x23\xcf\x3c\x7a\xcb\xe2\xc3\x2f\xda\xd1\x58\xb7\xa8\x8d\x38" "\x00\x00\x00\x40\xb1\x98\x87\x97\xea\x35\xd5\xb0\x28\x5c\x9e\xcc\x0e" "\x47\x37\xdd\x3f\xae\x11\x1c\x1d\x4b\xc9\xc4\xfa\xec\x1a\x42\x8c\x93" "\x5d\x23\x68\x37\x4e\xa9\x4b\x71\xca\x5d\x8a\x53\xe9\x52\x9c\x9e\x2e" "\xc5\x99\xd5\xa5\x38\xbd\x5d\x8a\x53\x2d\x88\x53\x0d\xad\xc5\x99\x3d" "\x65\x9c\x52\xcb\xfd\xe9\xeb\x52\x9c\xfe\x2e\xc5\x99\xd3\xa5\x38\x73" "\xbb\x14\x67\x5e\x97\xe2\xcc\xef\x52\x9c\x81\x29\xe3\xb4\x3e\x0f\x17" "\x74\x29\xce\xc2\x2e\xc5\x39\xac\x4b\x71\x0e\xef\x52\x9c\x23\xba\x14" "\xe7\x75\x5d\x8a\x73\x64\x97\xe2\x64\xd7\x94\xa7\x3b\x0f\xe7\xa6\x7b" "\x1e\x95\x17\x67\xfc\x46\xb9\x30\x4e\x25\x29\xd7\xef\x68\xb6\x9e\x1e" "\xdb\x39\xa6\xc3\x76\xfa\x5b\x6c\x27\xf7\xfb\x71\x8b\xed\xcc\x6e\xb1" "\x9d\xe3\x32\x8f\x2b\x4d\xb3\x9d\x6a\x8b\xed\xbc\xb1\xc3\x76\x92\x16" "\xdb\x79\x73\x87\xed\x94\x0a\xda\x89\xf3\xf6\x8a\x6c\xff\x62\x3b\xb1" "\xd4\xe2\xfc\xbf\xb2\x4b\x71\xb6\x75\x29\xce\x55\x5d\x8a\x73\x75\x97" "\xe2\x7c\xbe\x4b\x71\xbe\xd0\xa5\x38\xd7\x74\x18\x07\xa0\x55\x31\xff" "\xdf\x9f\xef\x0d\x84\xde\xca\xbb\x42\x5f\x7a\xc5\xc9\xae\x02\xc4\x7c" "\x77\xf1\xf8\xd7\xc9\xdf\xef\xf2\x2e\x48\x31\xde\x1b\x32\xf5\xb3\xb2" "\xf1\xb2\x61\xb2\x89\x7a\x26\xde\xe2\xe9\xf6\x2f\xbb\x80\x90\x89\xb7" "\x24\x53\xdf\x33\x21\x5e\xa5\x9e\x8f\x4c\x11\xaf\xda\x18\x6f\x69\xe6" "\xce\x49\xc7\x9b\xed\x5f\x76\x41\x21\xd3\xbf\x13\x33\xf5\xbd\x45\xf1" "\xb2\x0b\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x30\x83\x7e\x7b\xf5\xa9\x9f\x3c\xef\x3d\x1f\x5d\x15\x92\x30" "\xf6\xaf\xa9\x7d\x4d\xc4\xfb\xca\xb3\x56\xac\x18\x6a\xa3\xdd\x5d\xab" "\x6e\x5e\x5a\x5e\xfd\xf0\xee\xc6\xba\xde\x4a\x1b\x81\x00\x00\x00\x80" "\x42\x31\x0f\xef\xa9\xd7\x54\x43\x6f\x65\x79\xe8\x4d\x66\x4d\xd8\xaf" "\x9a\xae\x03\x54\xd3\x72\x79\xa0\xb6\x1d\x9c\x17\x56\x8e\x6d\x93\xa1" "\xd2\x78\xb9\x2f\x59\x30\xe5\xe3\x2a\xe9\xe3\x96\x6d\xdd\xb0\x69\xd9" "\x96\x2b\xb7\xbd\x75\xdd\x86\x91\x4b\x46\x2f\x19\xdd\xf8\xf6\xe5\xa7" "\x2e\x3f\x7d\xf8\xb4\xd3\x4f\x5b\xb6\x76\xdd\xfa\xd1\xe1\xda\xd7\x10" "\x7a\x0b\xe2\x85\x10\xc6\x97\x1f\xb6\x5c\xb9\xed\xb3\x23\xeb\xd7\x8f" "\x6e\xde\x52\xab\xcc\xf6\x7f\x51\xfa\xb8\x45\x69\x39\x49\x1f\x37\xf8" "\xb6\x30\x3c\xb6\xbd\x36\xed\xff\xc2\x82\xf6\x4a\x93\xda\x9b\xb9\x1b" "\xc5\x67\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x60\xd7\xfe\x42\xdd\x3c\xeb\x38\x80\x3f" "\x6f\x92\x93\x64\x67\xab\x8d\xec\x5f\x56\xd6\xd3\xd0\x3f\xa3\xea\xd0" "\xb6\x66\xd2\xe9\x58\x5e\x10\x1c\x6c\x6d\xe9\x61\x20\xc9\xf4\x38\x8a" "\x6b\x71\x78\xba\x96\xad\x1d\x75\xc6\xad\xe0\x36\x5b\x14\x61\xa3\x50" "\x2a\xbd\xa9\xd4\xe1\xe6\xf0\x66\x7f\xdc\x10\xf7\x87\x42\x65\x56\x0b" "\x9e\x5a\x64\x1b\xba\x0b\xbd\x50\x36\x9d\x74\xa3\x17\xd2\x11\xe9\x39" "\x79\x73\x92\x34\x69\x4e\xe3\x58\xb7\xee\xf3\xb9\x78\xdf\xe4\x79\x7e" "\xcf\xf3\xcb\x93\x8b\x03\xdf\xf7\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\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x0f\xd6\x54\xbd\x3c\x51\xad\x8c" "\xd7\x46\xa3\x10\xa2\x3e\x35\x8d\x1e\x92\xb9\x74\x36\x8e\x4b\x43\xf4" "\xfd\xfa\xf3\x5b\x7f\x9c\x1b\x3b\xb9\xbc\x7d\x2c\x97\x19\x62\x23\x00" "\x00\x00\x60\xa0\x24\x87\x8f\xb4\x46\xf2\x21\x97\x49\x87\x74\xb8\x6a" "\xfa\xdd\xe2\xd0\x36\x11\x66\x73\x3f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xf1\x33\x55\x2f" "\x4f\x54\x2b\xe3\xb5\x8b\xa3\x10\xa2\x3e\x35\x8d\x1e\x92\xb9\x74\x36" "\x8e\x4b\x43\xf4\x7d\xe3\x9d\x27\xbf\xf0\xea\xd8\xd8\x3f\xda\xc7\x8a" "\x43\xec\x03\x00\x00\x00\x0c\x96\xe4\xf0\x54\x6b\x24\x1f\x8a\x61\x49" "\x18\x89\xae\xea\xa8\x4b\x9e\x0d\x2c\xe8\x5a\xdf\x5d\x97\xec\xb3\x70" "\x8e\x75\xdd\xcf\x0e\xfa\xd5\x2d\x99\x63\xdd\x35\x73\xac\xfb\xd4\x80" "\xba\x75\xcd\xfb\x8e\x00\x00\x00\x00\x1f\x7d\x49\xfe\xcf\xb4\x46\x0a" "\x21\x97\x99\xd7\x37\xff\x0f\xca\xf5\x49\xdd\xa2\xae\xba\x74\xf3\x3e" "\xcc\x6f\x05\x00\x00\x00\x80\xff\x4f\x92\xff\x73\xad\x91\x62\xc8\x65" "\x8a\xad\xbc\x3e\xd7\xbc\xbf\xb8\xab\x2e\x59\x3f\xe8\xff\xf6\xc9\xfa" "\x65\x7d\xd6\x0f\xfa\x7f\xfe\xda\xe6\xdd\xff\xe9\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\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\xa3" "\x63\xaa\x5e\x9e\xa8\x56\xc6\x6b\xe9\x28\x84\xa8\x4f\x4d\xa3\x87\x64" "\x2e\x9d\x8d\xe3\xd2\x10\x7d\x57\xbd\x30\xfa\xaf\x5b\x0e\x3d\xb4\xb8" "\x7d\x2c\x97\x19\x62\x23\x00\x00\x00\x60\xa0\x24\x87\xcf\x46\xef\x7c" "\xc8\x65\x46\xc3\x48\xb8\x78\x3a\xf7\x8f\xdd\xb4\xff\xe9\xaf\x3e\xfd" "\x6c\x39\x84\x30\x13\xf3\xb3\xd9\xb0\x63\xc3\xb6\x6d\x77\xaf\x9a\xb9" "\x26\x75\x2b\x8f\x1c\x1a\xf9\xd1\xe1\xb7\xbe\x77\x46\xdd\xca\x99\xeb" "\x79\x3b\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\xbe\x99\xaa\x97\x27\xaa\x95\xf1\xda\x45" "\x51\x08\x51\x9f\x9a\x46\x0f\xc9\x5c\x3a\x1b\xc7\xa5\x21\xfa\xbe\xfe" "\xa5\xaf\xfc\xed\xf1\xe3\xcf\xbd\xd9\x3e\x56\x1c\x62\x1f\x00\x00\x00" "\x60\xb0\x24\x87\xcf\x66\xff\x7c\x28\x86\x6c\xc8\x86\x2b\xa6\xdf\xb5" "\x67\xfd\xd3\x52\x5d\xeb\xfb\x3d\x33\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x2e\x1c\xf7\x7c\xe7\xbe\x6f\x6f\x98\x9c\xdc\x78\xb7" "\x17\x5e\x78\xe1\x45\xeb\xc5\xf9\xfe\xcb\x04\x00\x00\xbc\xdf\x16\x85" "\x28\x34\xce\xd1\x95\xeb\xcf\xf7\xa7\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x0c\xa6\xea" "\xe5\x89\x6a\x65\xbc\x96\x8f\x42\x88\xfa\xd4\x34\x7a\x48\xe6\xd2\xd9" "\x38\x2e\x0d\xd1\x37\x7e\xfe\x68\x6e\xde\xc9\x17\x5e\x6a\x1f\x2b\x0e" "\xb1\x0f\x00\x00\x00\x30\x58\x92\xc3\x67\xb3\x7f\x3e\x14\xc3\x48\x18" "\x09\x97\x4f\xbf\xeb\xf5\x4c\x60\x3a\xff\x17\x3e\xc0\x0f\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xa8\x4c\xd5\xcb\x13\xd5\xca" "\x78\x6d\x5e\x14\x42\xd4\xa7\xa6\xd1\x43\x32\x97\xce\xc6\x71\x69\x88" "\xbe\x8f\xed\xdc\xf7\xc5\x83\xf3\x7f\x78\x73\xfb\x58\x2e\x33\xc4\x46" "\x00\x00\x00\xc0\x40\x49\x0e\xcf\xb6\x46\xf2\x21\x97\xf9\x74\xc8\x85" "\xab\x9b\xef\x27\x3b\x17\x44\xe9\xe6\xbd\xf7\x73\x81\xd9\x75\x5b\x3b" "\x96\x8d\xce\x79\x5d\xbd\x63\x5d\x7a\xce\xeb\x76\x75\x9d\x2c\xd3\x3c" "\xcd\xcc\xba\x7c\xb2\x5f\x61\xe6\xde\x5a\x57\x3a\x73\x5d\xa9\x6d\x5d" "\x31\xb4\xda\x97\x3a\xd6\x85\x3d\x1d\xab\xe6\x0d\xf8\x9c\x01\x00\x00" "\x00\xce\xa3\x24\xff\xe7\x5a\x23\x85\x90\xcb\xe4\xda\x72\xee\xcf\x3b" "\xea\x0b\x72\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xd0\xc7\x54\xbd\x3c\x51\xad\x8c\xd7\xa2\x28\x84\xa8\x4f" "\x4d\xa3\x87\x64\x2e\x9d\x8d\xe3\xd2\x10\x7d\xef\xfb\xfd\x27\x2f\xf9" "\xc6\x2f\x76\x6f\x6f\x1f\x2b\x0e\xb1\x0f\x00\x00\x00\x30\x58\x92\xc3" "\x67\xb3\x7f\x3e\x14\xc3\xc2\xf0\x89\xb0\x70\x3a\xf7\x87\x42\x67\x7d" "\x52\xf7\xef\xea\xa9\x83\x8f\xfe\xe7\xef\xcb\x43\x58\x71\xc5\xb1\xb1" "\x4c\xdf\xfd\x7f\xfb\xfa\x8d\x2f\x76\x5f\x42\x48\x75\x16\xa5\x42\x98" "\xdf\xec\x17\xf5\xe9\xf7\xbb\x3f\x3e\x7a\xef\xd2\xc6\xa9\xc7\x43\x58" "\x71\x79\xfa\xea\x73\xed\xd7\xb9\x65\xdc\x78\xa6\xba\x71\xed\xb6\xc3" "\xc7\xb6\x9e\xe5\x8b\x01\x00\x00\x80\x0b\x48\x92\xff\x47\x5a\x23\x85" "\x90\xcb\xdc\xd5\x37\xff\x27\xc9\xfb\x9c\xf2\xff\xfc\x7b\x77\xfe\xea" "\xb2\xe6\xb5\x99\xc8\xbb\x56\xa4\x0a\xcd\x7e\xa9\x3e\xfd\xbe\xbc\xf4" "\xc9\xbf\x2e\x5b\xfd\xcf\xb7\x4e\xe7\xff\xb3\xf5\xfb\xdc\xbe\xcd\x07" "\x2f\xeb\x68\x38\x33\xd2\x25\x8a\x1b\x95\xcd\xdb\xd7\x1d\xbb\xee\x40" "\x2a\x39\xf5\x4c\xff\x74\x57\xff\xe4\x7b\xf9\xda\x77\xdf\xfc\xef\xa6" "\x1d\x8f\x9c\x9a\xe9\x9f\x0f\xf9\xe6\xf8\x82\x4c\xaf\xfe\x67\x5e\xbb" "\x5c\x14\x37\x26\x53\x7b\x6b\x6b\xde\xdb\x5b\xef\xec\x9f\xe9\x73\xfe" "\x87\xfe\xf0\xd2\xf1\xdf\x2c\xd8\xfd\xee\xe9\xfe\xef\x2c\x1a\x6d\xf5" "\xbf\xe6\x2c\xe7\x3f\x7b\xff\xd1\x5b\x1f\xde\x73\xfd\xbe\x43\xeb\x3a" "\xfb\x87\x10\x4a\xbd\xfa\xbf\xfd\xee\xcd\xe1\xca\x3f\xdf\xf9\x60\xf7" "\xf9\x47\xbb\x36\x6e\xff\xe6\xdb\xaf\x5d\xa2\xb8\x71\x64\xf1\x89\x03" "\xab\xf7\x17\x6f\xe8\xec\x1f\x75\xf5\x4f\xbe\xff\x5f\x1e\x7f\x6c\xcf" "\xcf\x1e\xf9\xc1\xb3\x49\xff\xe4\xb7\x22\xcb\x97\xcc\xb5\x7f\xaa\xab" "\xff\x2b\xbb\x2e\xdd\xf9\xf2\x03\xeb\x17\x74\xf6\x4f\xf5\x39\xff\x8b" "\xb7\xbd\x3a\xb6\xa5\xf4\xfd\x3f\x75\x9f\xff\x8e\xa1\xcf\xff\xc4\xb5" "\x4f\xdd\xfe\xda\x86\xf8\xfe\xee\x29\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0b\xcb\x54\xbd\x3c\x51\xad\x8c\xd7\x52" "\x51\x08\x51\x9f\x9a\x46\x0f\xc9\x5c\x3a\x1b\xc7\xa5\x21\xfa\xbe\x71" "\xcb\xd1\xb7\x6f\xdb\xfd\xd3\x9f\xb4\x8f\x15\x87\xd8\x07\x00\x00\x00" "\x18\x2c\xc9\xe1\xb3\xd9\x3f\x1f\x8a\x21\x1b\xb2\x61\x74\x3a\xf7\x3f" "\x53\xdd\xb8\x76\xdb\xe1\x63\x5b\x43\x61\x66\x36\x6a\xde\x33\x93\x5b" "\xee\xd9\xf6\x99\x4d\x5b\xb6\xdf\x75\xc7\x79\xfa\xe4\x00\x00\x00\xc0" "\x5c\x25\xf9\x3f\xd3\x1a\x29\x84\x5c\x66\x69\x18\x69\xe6\xff\xca\xe6" "\xed\xeb\x8e\x5d\x77\x20\x95\xe4\xff\x54\x92\xff\x37\xdd\x39\xb9\x71" "\x45\x68\xd5\xbd\xb2\xeb\xd2\x9d\x2f\x3f\xb0\x7e\x41\xeb\x39\x41\x08" "\xd3\x3f\x0b\xc8\x9f\xae\xfb\xfc\x6c\xdd\x4d\x37\x1e\x2d\x9c\xf8\xcb" "\xb7\x96\xf5\xac\x5b\x35\x5b\x77\x64\xf1\x89\x03\xab\xf7\x17\x6f\x48" "\xea\x42\x7b\xdd\xca\xd0\x7a\x3e\xf1\xc4\xb5\x4f\xdd\xfe\xda\x86\xf8" "\xfe\xd6\xe7\x6b\xaf\xfb\xec\x37\xb7\x4c\x36\x1f\x4f\x24\xfb\x8e\xde" "\xfa\xf0\x9e\xeb\xf7\x1d\x5a\xd7\x3a\x47\xf3\x3e\xda\xdc\x37\xa9\x9b" "\x4c\xed\xad\xad\x79\x6f\x6f\x3d\xa9\x4b\x37\xef\xf9\xe6\xb9\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\x80\x33\x4d" "\xd5\xcb\x13\xd5\xca\x78\x2d\xa4\x43\x88\xfa\xd4\x34\x7a\x48\xe6\xd2" "\xd9\x38\x2e\x0d\xd1\x77\xcd\xd2\x5f\x3f\x78\xc9\xc9\xe7\x16\xb6\x8f" "\xe5\x32\x43\x6c\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\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xfc\x8f\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d" "\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a" "\xec\xd7\x4d\x68\x1d\x55\x1f\x07\xe0\x73\xee\x4d\xde\xdc\xe6\x26\x6d" "\xd2\xbe\x60\x54\x4c\xd3\xaa\x28\x75\x61\x51\x10\xd1\x8d\x8a\x8a\xb4" "\x22\x05\x57\x95\x22\xd5\xd6\x2e\x44\x41\x10\x51\xea\xc2\x54\x5a\xb1" "\x54\xc5\x8d\x60\x75\x53\x44\x05\x35\x4a\x41\xc1\xc6\x62\x69\x95\x54" "\xfc\x2a\x6e\x5c\xa8\xa0\x50\x5d\x08\xa5\x18\xd0\x86\xe2\x42\x25\xc9" "\x39\xb7\x37\xd3\x8c\x57\x27\x55\x50\x9f\x07\x86\x73\xcf\x99\x99\xdf" "\xfc\x67\xce\xc9\xe4\x5e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x47\xe9\xe9\x1a\x9a\x69\x0f\xef\xb8\x7f\xea\x96\x73\x6e" "\xf8\xe8\xd1\xbb\x4e\x3c\x72\xd3\x3b\xf7\x6e\xbb\xe8\xe1\x57\xbf\x1b" "\xd9\x74\xdd\x87\x7b\x7b\x5f\x3a\x39\xb1\x79\xc5\x96\x2f\xaf\x5f\xb6" "\x69\xff\xdd\x6b\xc6\x77\x3f\x7f\xe8\xa7\xfe\xb7\x7e\x39\xda\x31\xf8" "\xa1\xd9\x66\x55\xea\x36\x42\x88\xc7\x63\x08\x8d\x77\x27\x9f\x79\x6c" "\xe2\xe3\xb3\xa6\xc7\x62\x08\xa1\x1e\x07\x46\x43\x18\x8c\x4b\x0f\x0d" "\xc6\x42\xc2\xea\x9f\x43\x08\x9b\x5b\x75\xce\xdd\xf9\xe6\x89\xcb\xb7" "\x4c\xb7\xdb\x76\xf5\xcc\x19\x5f\x52\x08\x29\xde\x57\x68\xd6\x73\x3d" "\xb3\x06\xe6\xd6\xcb\xbf\x4b\x23\xad\xb3\xad\x53\x0f\x5e\x12\xbe\xbe" "\x76\xfd\xf6\x4f\x97\xbf\xf1\x7a\xf7\xd8\xb1\xd1\x53\x87\xc4\x46\xdb" "\x7a\x0a\x61\xf1\xc6\xf6\xf3\xbb\x43\x08\x8b\xd2\x36\x2d\xaf\xb6\xa1" "\x7c\x72\x6a\xd7\x85\x10\x7a\xdb\xce\xbb\xb2\x43\x5d\xe7\xff\xc1\xfa" "\x2f\x2d\xe9\x9f\x9b\xda\xff\xa5\xb6\xd9\x21\x27\xef\x5f\x59\xe8\xd7" "\x0a\xc7\x15\xfb\x59\x77\xa1\xed\xed\x70\xbd\x85\x2a\xab\xa3\xea\x71" "\x9d\xf4\x15\xfa\xc5\x97\xd1\x42\x95\xd5\x99\xc7\x07\x53\xfb\x76\x6a" "\x57\xfd\xc9\xfc\x7a\xde\x62\xa8\xc5\xd0\xd5\x2a\xff\x9e\x78\x6a\x8d" "\x84\xb6\x79\x8b\x21\xce\xcc\x65\xa3\xd5\xaf\xb5\xe6\x36\xa4\xfb\x2f" "\xf4\x63\xa1\x5f\x2b\xf4\xeb\xdd\x85\xfb\x9a\xb9\x6e\x5a\x68\xf5\x18" "\xe7\x8e\xe7\xe3\x0a\xe3\xf9\x75\xdc\x95\xc6\x57\xb4\xbf\xab\xe7\x71" "\x6b\xc9\xf8\xd9\xa9\x6d\xa4\x3f\xd4\x93\xb9\x1f\x8a\x1f\x66\x35\x4f" "\xfb\xd0\xba\xaf\x19\xb9\xae\xc9\xdf\xa9\xe5\xef\x50\x6b\x7b\x07\xcd" "\x37\xde\x9a\xf8\x34\x19\xcd\x34\xd6\x8c\x4b\x4f\x3b\xe7\xd7\x79\xe4" "\x7d\x13\xeb\x9f\xb8\xb0\xbe\xe1\xbd\xc3\x03\x25\x75\xc4\xbd\x31\xe5" "\xc7\x4a\xf9\x5b\x3f\x19\xec\xbb\xfd\xb5\x9d\x0f\x0c\x95\xe5\x6f\xac" "\xa5\xfc\x5a\xa5\xfc\x6f\xd6\x1e\xf9\xe1\xb6\x9d\x2f\x3c\x57\x9a\xff" "\x74\xce\xaf\x57\xca\xbf\xec\x40\xef\xf1\xb5\xef\xef\x58\x59\xfa\x7c" "\x26\xf3\xf3\xe9\xaa\x94\x7f\xc7\xd1\x0f\x9e\x5c\xfe\xff\x3b\xc7\x4a" "\xeb\xdf\x93\xf3\x1b\x95\xf2\xaf\x19\x3f\xd2\xd3\x3f\x75\xe0\x60\x69" "\xfd\xab\xf3\xf3\x59\x54\x29\xff\xab\xab\x6f\xfc\xf6\x95\xcf\xf7\x1d" "\x2b\xcd\x0f\x39\xbf\xb7\x52\xfe\x86\xf1\xfb\x9e\xea\x19\x9e\xba\xb8" "\x34\xff\x60\x7e\x3e\xcd\x6a\xeb\xe7\xc7\xb1\x2b\xbe\x18\x1e\xfe\x7e" "\xa4\x2c\xff\xb3\x9c\xdf\x5f\x29\xff\xe5\xd1\xdd\x57\xbd\xb8\x64\xd7" "\x9a\xd2\xf9\x5d\x97\x9f\xcf\x40\xa5\xfc\x9b\x2f\xd8\xbf\xbd\x6f\x6a" "\xdf\x79\x65\xef\xce\xb8\xe7\x4c\xfd\xe7\x04\xf8\x6f\x5a\x96\xbe\x63" "\x3d\x9e\xfa\x55\x7f\x67\x2e\x54\xdb\xef\x85\x67\x47\xba\x66\xbf\xf3" "\xf5\xa5\xad\xff\x4c\x5e\xa8\x60\xfa\x3a\x8b\xff\xc2\x7c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7" "\xed\x08\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0a\x00\x00\xff\xff\xa6\x40\x35\x59", 22708); syz_mount_image(/*fs=*/0x200058c0, /*dir=*/0x20005900, /*flags=MS_POSIXACL*/ 0x10000, /*opts=*/0x20000800, /*chdir=*/1, /*size=*/0x58b4, /*img=*/0x20005980); break; case 4: memcpy((void*)0x20000000, "./file2\000", 8); memcpy((void*)0x20000040, "./file1\000", 8); syscall(__NR_rename, /*old=*/0x20000000ul, /*new=*/0x20000040ul); break; case 5: *(uint16_t*)0x20000040 = 0; *(uint16_t*)0x20000042 = 0; *(uint64_t*)0x20000048 = 0; *(uint64_t*)0x20000050 = 0x1000; *(uint32_t*)0x20000058 = 0; *(uint32_t*)0x2000005c = 0; memset((void*)0x20000060, 0, 16); syscall(__NR_ioctl, /*fd=*/-1, /*cmd=*/0x40305839, /*arg=*/0x20000040ul); break; case 6: syscall(__NR_write, /*fd=*/-1, /*buf=*/0ul, /*count=*/0ul); break; case 7: *(uint64_t*)0x20000340 = 0; *(uint32_t*)0x20000348 = 0; *(uint64_t*)0x20000350 = 0; *(uint64_t*)0x20000358 = 1; *(uint64_t*)0x20000360 = 0; *(uint64_t*)0x20000368 = 0; *(uint32_t*)0x20000370 = 0; syscall(__NR_sendmsg, /*fd=*/-1, /*msg=*/0x20000340ul, /*f=MSG_BATCH|MSG_PROBE|MSG_NOSIGNAL|MSG_DONTWAIT*/ 0x44050ul); break; case 8: syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); break; case 9: memcpy((void*)0x20005dc0, "jfs\000", 4); memcpy((void*)0x20005e00, "./bus\000", 6); memcpy( (void*)0x20011a00, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35" "\x8c\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde" "\x24\x52\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6" "\x50\x18\x6b\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e" "\x84\x17\x59\x06\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\xa2\x87\x1e" "\x02\xd3\xd5\x33\xe7\xf7\x93\x86\xaa\xa7\x4e\x55\xf7\x29\xfe\x5d\xd3" "\xdd\xd3\x55\x7d\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\x88\x1f\x7e\xff\xc7\xe7\x7a\x11\x71\xf5\x57\x69\xc1\x72\xc4" "\xff\xc5\x20\xa2\x1f\xb1\x58\xd7\x2b\x11\xb1\xb8\xb2\x9c\xd7\x1f\x46" "\xc4\xeb\xb1\xd5\x1c\xaf\xd5\xab\xcf\x47\xd4\xdb\x6f\xfd\x73\x2c\xe2" "\x62\x44\xdc\x3f\x1a\xf1\xf0\xd1\x9d\xb5\x7a\xf1\xf9\x3d\xf6\xe3\xdf" "\x47\xfe\xff\xd8\x3f\xff\xfa\x83\xd3\xbf\xff\xdb\xef\xee\x9d\xfc\xe3" "\xa9\xb7\xdb\xed\x7f\x5a\xff\xc7\xbd\x9f\xdc\x4d\xf7\x05\x00\x00\x00" "\x3c\x97\xaa\xaa\xaa\x5e\x7a\x9b\x7f\x3c\xbd\xbf\xef\x77\xdd\x29\x00" "\x60\x2a\xf2\xf3\x7f\x95\xe4\xe5\x87\xa4\x1e\xce\x58\x7f\xd4\x6a\xb5" "\x5a\xad\xee\xb4\x6e\xaa\xc6\xbb\xdb\x2c\x22\x62\xa3\xb9\x4d\xfd\x9a" "\xe1\xee\xb8\x1b\x03\x00\x66\xd7\x46\x7c\xd1\x75\x17\xe8\x90\xfc\x8b" "\x36\x8c\x88\x23\x5d\x77\x02\x98\x69\xce\xbb\x3f\x9c\x1e\x3e\xba\xb3" "\xd6\x4b\xf9\xf6\x9a\xcf\x07\x2b\xdb\xed\xf9\x5c\x90\x1d\xf9\x6f\xf4" "\x1e\x5f\xdf\xb1\xdb\x74\x92\xf6\x39\x26\xd3\x7a\x7c\x6d\xc6\x20\x5e" "\xdd\xa5\x3f\x8b\x53\xea\xc3\x2c\xc9\xf9\xf7\xdb\xf9\x5f\xdd\x6e\x1f" "\xa5\xf5\xf6\x3b\xff\x69\xd9\x2d\xff\xd1\xf6\xa5\x4f\xc5\xc9\xf9\x0f" "\xda\xf9\xb7\x1c\x9e\xfc\xfb\x63\xf3\x2f\x55\xce\x7f\xf8\x5c\xf9\x0f" "\xe4\x0f\x00\x00\x00\x00\x00\x33\x2c\xff\xfd\x7f\xb9\xe3\xcf\x7f\xe7" "\x5f\x7c\x57\xf6\xe4\x59\x9f\xff\xae\x4c\xa9\x0f\x00\x00\x00\x00\x00" "\x00\x00\xf0\xb2\xbd\xe8\xf8\x7f\x8f\x19\xff\x0f\x00\x00\x00\x66\x56" "\xfd\x5e\xbd\xf6\xe7\xa3\x4f\x96\xed\xf6\x1e\xbb\x5e\x7e\xa5\x17\xf1" "\x4a\x6b\x7d\xa0\x30\xe9\x62\x99\xa5\xae\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x25\x19\x6e\x9f\xc3\x7b\xa5\x17\x31\x17\x11\xaf" "\x2c\x2d\x55\x55\x55\xff\x34\xb5\xeb\xe7\xf5\xa2\xdb\x1f\x74\xa5\xef" "\x3f\x94\xac\xeb\x5f\xf2\x00\x00\xb0\xed\xfe\xd1\xd6\xb5\xfc\xbd\x88" "\x85\x88\xb8\x92\xbe\xeb\x6f\x6e\x69\x69\xa9\xaa\x16\x16\x97\xaa\xa5" "\x6a\x71\x3e\xbf\x9e\x1d\xcd\x2f\x54\x8b\x8d\xf7\xb5\x79\x5a\x2f\x9b" "\x1f\xed\xe1\x05\xf1\x70\x54\xd5\x37\xb6\xd0\xd8\xae\x69\xd2\xfb\xe5" "\x49\xed\xed\xdb\xab\xef\x6b\x54\x0d\xf6\xd0\xb1\xe9\xe8\x30\x70\x00" "\x88\x88\xed\x67\xa3\x87\x9e\x91\x0e\x99\xaa\x3a\x16\x5d\xbf\xca\xe1" "\x60\x70\xfc\x1f\x3e\x8e\x7f\xf6\xa2\xeb\xc7\x29\x00\x00\x00\xb0\xff" "\xaa\xaa\xaa\x7a\xe9\xeb\xbc\x8f\xa7\xcf\xfc\xfb\x5d\x77\x0a\x00\x98" "\x8a\xfc\xfc\xdf\xfe\x5c\x40\xad\x56\xab\xd5\x6a\xf5\xe1\xab\x9b\xaa" "\xf1\xee\x36\x8b\x88\xd8\x68\x6e\x53\xbf\x66\xb8\x3b\xee\xc6\x00\x80" "\xd9\xb5\x11\x5f\x74\xdd\x05\x3a\x24\xff\xa2\x0d\x23\xe2\xf5\xae\x3b" "\x01\xcc\xb4\x5e\xd7\x1d\x60\x5f\x3c\x7c\x74\x67\xad\x97\xf2\xed\x35" "\x9f\x0f\xd2\xf8\xee\xf9\x5c\x90\x1d\xf9\x6f\xf4\xb6\xb6\xcb\xdb\x8f" "\x9b\x4e\xd2\x3e\xc7\x64\x5a\x8f\xaf\xcd\x18\xc4\xab\xbb\xf4\xe7\xb5" "\x29\xf5\x61\x96\xe4\xfc\xfb\xed\xfc\xaf\x6e\xb7\x8f\xd2\x7a\xfb\x9d" "\xff\xb4\xec\x96\x7f\xbd\x9f\xcb\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff" "\x96\xc3\x93\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\x9f\x2b\xff\x81\xfc\x01" "\x00\x00\x00\x00\x60\x86\xe5\xbf\xff\x2f\xfb\xfc\x37\xef\x32\x00\x00" "\x00\x00\x00\x00\x00\x1c\x38\x0f\x1f\xdd\x59\xcb\xd7\xbd\xe6\xcf\xff" "\xbf\x34\x66\x3d\xd7\x7f\x1e\x4e\x39\xff\x9e\xfc\x8b\x94\xf3\xef\xb7" "\xf2\xff\x5a\x6b\xbd\x41\x63\xfe\xc1\xfb\x4f\xf2\xff\xd7\xa3\x3b\x6b" "\x3f\xfa\xc3\xe7\xc7\xf3\x74\xaf\xf9\xcf\xe7\x99\x5e\x7a\x64\xf5\xd2" "\x23\xa2\x97\xee\xa9\x37\x4c\xd3\x17\xd9\xbb\xa7\x6d\xce\x0d\x46\xf5" "\x3d\xcd\xf5\xfa\x83\x61\x3a\xe7\xa7\x9a\xfb\x30\xae\xc7\x8d\x58\x8f" "\xd5\x1d\xeb\xf6\xd3\xff\xc7\x93\xf6\x73\x3b\xda\xeb\x9e\xce\xed\x68" "\x3f\xbf\xa3\x7d\xf8\x54\xfb\x85\x1d\xed\x73\xe9\x7b\x07\xaa\xc5\xdc" "\x7e\x26\xd6\xe2\xe7\x71\x23\x3e\xd8\x6a\xaf\xdb\xe6\x27\xec\xff\xc2" "\x84\xf6\x6a\x42\x7b\xce\x7f\xe0\xf8\x2f\x52\xce\x7f\xd8\xf8\xa9\xf3" "\x5f\x4a\xed\xbd\xd6\xb4\xf6\xe0\xb3\xfe\x53\xc7\x7d\x73\x3a\xee\x7e" "\xde\xfb\xed\xbd\xfb\xab\xfb\xbf\x3b\x13\x6d\xc6\xe0\xf1\xbe\x35\xd5" "\xfb\x77\xa2\x83\xfe\x6c\xfd\x9f\x1c\x19\xc5\x2f\x6f\xad\xdf\x3c\xf3" "\xeb\x6b\xb7\x6f\xdf\x3c\x17\x69\xb2\x63\xe9\xf9\x48\x93\x97\x2c\xe7" "\x3f\x97\x7e\x1e\xff\xfe\x7f\x73\xbb\x3d\xff\xde\x6f\x1e\xaf\x0f\x3e" "\x1b\x3d\x77\xfe\xb3\x62\x33\x86\xbb\xe6\xff\x66\x63\xbe\xde\xdf\x93" "\x53\xee\x5b\x17\x72\xfe\xa3\xf4\x93\xf3\xff\x20\xb5\x8f\x3f\xfe\x0f" "\x72\xfe\xbb\x1f\xff\xa7\x3a\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x3c\x4b\x55\x55\x5b\x97\x88\xbe\x17\x11\x97\xd2\xf5" "\x3f\x5d\x5d\x9b\x09\x00\x4c\x57\x7e\xfe\xaf\x92\xbc\x5c\xad\x56\xab" "\xd5\x6a\xf5\xe1\xab\x9b\xaa\xf1\xde\x6d\x16\x11\xf1\xf7\xe6\x36\xf5" "\x6b\x86\xdf\x8c\xbb\x31\x00\x60\x96\xfd\x27\x22\x3e\xef\xba\x13\x74" "\x46\xfe\x05\xcb\xdf\xf7\x57\x4f\xdf\xea\xba\x33\xc0\x54\xdd\xfa\xe4" "\xd3\x9f\x5e\xbb\x71\x63\xfd\xe6\xad\xae\x7b\x02\x00\x00\x00\x00\x00" "\x00\x00\xfc\xaf\xf2\xf8\x9f\x2b\x8d\xf1\x9f\xdf\x8a\x88\xe5\xd6\x7a" "\x3b\xc6\x7f\x7d\x3f\x56\x5e\x74\xfc\xcf\x61\x9e\x79\x3c\xc0\xe8\x4b" "\x1e\xe8\x7b\x17\x9b\xfd\xd1\xa0\xdf\x18\x6e\xfc\x8d\x78\xf6\xf8\xdf" "\x27\xe2\xd9\xe3\x7f\x0f\x27\xdc\xdf\xdc\x84\xf6\xd1\x84\xf6\xf9\x09" "\xed\x0b\x13\xda\xc7\x5e\xe8\xd1\x90\xf3\x7f\xa3\x31\xde\x79\x9d\xff" "\xf1\xd6\xf0\xeb\x25\x8c\xff\xda\x1e\xf3\xbe\x04\x39\xff\x13\x8d\xc7" "\x73\x9d\xff\x57\x5b\xeb\x35\xf3\xaf\xfe\x72\x90\xf3\xef\xef\xc8\xff" "\xec\xed\x8f\x7f\x71\xf6\xd6\x27\x9f\x9e\xbe\xfe\xf1\xb5\x8f\xd6\x3f" "\x5a\xff\xd9\xc5\xd5\xd5\x4b\x17\x2e\xbf\xb3\x7a\x79\xf5\xec\x87\xd7" "\x6f\xac\xa7\x7f\x3b\xec\xf1\xfe\xca\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96" "\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x39\xd5\xf2\x2f\x4b\xce\xff\x2b" "\xa9\x96\x7f\x59\x72\xfe\xf9\xf5\x9e\xfc\xcb\x92\xf3\xcf\xef\x7d\xe4" "\x5f\x96\x9c\xff\xc9\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9" "\xf9\x9f\x4a\xb5\xfc\xcb\x92\xf3\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\x74" "\xaa\xe5\x5f\x96\x9c\xff\x99\x54\xcb\xbf\x2c\x39\xff\xb3\xa9\x96\x7f" "\x59\x72\xfe\xf9\x13\x2e\xf9\x97\x25\xe7\x9f\xcf\x6c\x90\x7f\x59\x72" "\xfe\xe7\x53\x2d\xff\xb2\xe4\xfc\x2f\xa4\x5a\xfe\x65\xc9\xf9\x5f\x4c" "\xf5\x30\x16\xe5\x5f\x90\x9c\xff\x3b\xa9\x76\xfc\x97\x25\xe7\x7f\x29" "\xd5\xf2\x2f\x4b\xce\xff\x72\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff" "\xb2\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x27\xd5\xf2\x2f\x4b\xce\xff\xbb" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4b\xb5\xfc\xcb\x92\xf3\x7f\x37\xd5\xf2" "\x2f\xcb\x93\xef\xff\x37\x63\xc6\x8c\x99\x3c\xd3\xf5\x6f\x26\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x6d\x1a\xa7\x13\x77\xbd\x8f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\x5f\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\x03" "\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\xbd\x7b\x8d\x91\xeb\xac\xef" "\x07\x7e\x76\xbd\xeb\xac\x1d\x2e\xfb\x87\x10\xfc\x0f\x01\x36\x89\x09" "\x21\x59\xb2\xeb\x7b\x96\xd6\x60\x6e\x25\x4d\x48\x4b\x81\xd0\x96\x5e" "\x8c\x6b\xaf\x8d\xc1\xb7\x7a\x6d\x6e\x8a\x14\xa3\xd0\x12\xa9\x51\x1b" "\xa9\xbc\x80\x17\xe5\x56\xa4\xf2\xa6\x22\x02\x54\x51\x95\x22\x57\x6a" "\x05\x12\x48\xe4\x15\xad\xd4\x36\xa4\x0a\x54\x11\x85\xd6\xd0\xbe\x80" "\x0a\xd8\x6a\xe6\x3c\xbf\xc7\x33\xe3\xbd\xf9\xcc\xc6\x99\x39\xe7\xf3" "\x91\xe2\x9f\x77\xf6\xcc\xcc\x33\x67\x9e\x99\xdd\xef\x9a\xef\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\x9d\x6e\x78\xed\xfc\x87\x47\x8a" "\xa2\x68\xfd\xd7\xfe\x63\xb2\x28\x9e\xd1\xfa\xfb\xa6\xa9\xc9\xd6\x87" "\x5b\x5f\xf1\x74\xaf\x10\x00\x00\x00\xe8\xd7\xcf\xda\x7f\x5e\x78\x76" "\xbe\x60\xdf\x1a\xae\xd4\x71\xcc\x57\x5f\xf4\xcd\x2f\x2e\x2e\x2e\x2e" "\x16\x8f\x7d\xf7\x65\xcf\xff\xc8\xe2\x62\xfe\xc4\x54\x51\x4c\x5e\x55" "\x14\xed\xcf\x85\x27\xef\xf9\x9b\xad\x9d\xc7\x24\x0f\x14\x13\x23\xa3" "\x1d\x1f\x8f\xae\x72\xf7\x1b\x56\xf9\xfc\xd8\x2a\x9f\x1f\x5f\xe5\xf3" "\x1b\x57\xf9\xfc\x55\xab\x7c\x7e\x62\x95\xcf\x5f\x72\x02\x2e\xb1\xa9" "\xfc\x79\x4c\xfb\xc6\xb6\xb6\xff\x3a\x59\x9e\xd2\xe2\x9a\x62\xbc\xfd" "\xb9\xad\x4b\x5c\xeb\x81\x91\xab\x46\x47\xe3\x67\x39\x6d\x23\xed\xeb" "\x2c\x8e\x1f\x2e\x8e\x16\xc7\x8a\xf9\x62\xb6\xeb\xf8\xf2\xd8\x91\xf6" "\xf1\x5f\xbe\xa1\x75\x5f\x77\x16\x71\x5f\xa3\x1d\xf7\x75\x7d\x6b\x87" "\xfc\xf0\xbe\x83\xb1\x86\x91\x74\x8e\xb7\x76\xdd\xd7\xc5\xdb\x0c\x3f" "\x78\x75\x31\xf5\xa3\x1f\xde\x77\xf0\x4d\x1f\x7b\xfc\xba\xa5\xe6\xaa" "\xa7\xa1\xeb\xf6\xca\x75\xde\x72\x63\x6b\x9d\x1f\x4a\x97\x94\x6b\x1d" "\x29\xae\xca\xe7\x24\xd6\x39\xda\xb1\xce\xeb\x97\x78\x4e\x36\x74\xad" "\x73\xa4\x7d\xbd\xd6\xdf\x7b\xd7\x79\x61\x8d\xeb\xdc\x70\x71\x99\x57" "\x54\xef\x73\x3e\x51\x8c\xb6\xff\xfe\x68\xfb\x3c\x8d\x75\xfe\x58\x2f" "\x9f\xa7\xeb\xd3\x65\x3f\xbe\xa9\x28\x8a\x73\x17\x97\xdd\x7b\xcc\x25" "\xf7\x55\x8c\x16\x9b\xbb\x2e\x19\xbd\xf8\xfc\x4c\x94\x3b\xb2\x75\x1b" "\xad\xad\xf4\x9c\x62\xec\xb2\xf6\xe9\x0d\x6b\xd8\xa7\xad\x79\x68\x6b" "\xf7\x3e\xed\x7d\x4d\xc4\xf3\x7f\x43\xba\xde\xd8\x32\x6b\xe8\x7c\x9a" "\x7e\xf0\xc1\x8d\x97\x3c\xef\x97\xbb\x4f\x43\xeb\x51\x2f\xf7\x5a\xe9" "\xdd\x83\xeb\xfd\x5a\x19\x94\x3d\x18\xfb\xe2\xd1\xf6\x83\x7e\x70\xc9" "\x3d\xb8\x35\x3d\xfe\xfb\x6e\x5e\x7e\x0f\x2e\xb9\x77\x96\xd8\x83\xf9" "\x71\x77\xec\xc1\x1b\x57\xdb\x83\xa3\x1b\x37\xb4\xd7\x9c\x9f\x84\x91" "\xf6\x75\x2e\xee\xc1\x6d\x5d\xc7\x6f\x68\xdf\xd3\x48\x7b\x3e\x79\xf3" "\xca\x7b\x70\xe6\xcc\xf1\x53\x33\x0b\xef\xff\xc0\xcb\x8f\x1e\x3f\x70" "\x64\xfe\xc8\xfc\x89\x9d\xb3\xb3\xbb\x77\xec\xd9\x35\xbb\x67\x76\xe6" "\xf0\xd1\x63\xf3\xe9\xcf\x8a\x67\x7b\xf0\x6d\x2e\x46\xf3\x6b\xe0\xc6" "\x74\xee\xe2\x35\xf0\xd2\x9e\x63\x3b\xb7\xea\xe2\xa7\xd6\xef\x75\x38" "\xb1\xc2\xeb\x70\xb2\xe7\xd8\xf5\x7e\x1d\x8e\xf5\x3e\xb8\x91\x2b\xf3" "\x82\xbc\x74\x4f\x97\xaf\x8d\xb7\xb6\x4e\xfa\xc4\x43\xa3\xc5\x32\xaf" "\xb1\xf6\xf3\x73\x6b\xff\xaf\xc3\xfc\xb8\x3b\x5e\x87\x63\x1d\xaf\xc3" "\x25\xbf\xa6\x2c\xf1\x3a\x1c\x5b\xc3\xeb\xb0\x75\xcc\xa9\x5b\xd7\xf6" "\x3d\xcb\x58\xc7\x7f\x4b\xad\xe1\xa9\xfa\x5a\x30\xd9\xb1\x07\x7b\xbf" "\x1f\xe9\xdd\x83\xeb\xfd\xfd\xc8\xa0\xec\xc1\x89\xb4\x2f\xfe\xe5\xd6" "\xe5\xbf\x16\x5c\x9f\xd6\xfb\xe0\xf4\xe5\x7e\x3f\xb2\xe1\x92\x3d\x98" "\x1f\x6e\x7a\xef\x69\x5d\x92\xbf\xdf\x9f\xb8\xa3\x3d\x96\xda\x97\xd7" "\xb5\x3e\x71\xf5\xc6\xe2\xec\xc2\xfc\xe9\xdb\xdf\x77\xe0\xcc\x99\xd3" "\xdb\x8a\x34\xae\x88\xe7\x76\xec\x95\xde\xfd\xba\xb9\xe3\x31\x15\x97" "\xec\xd7\xd1\xcb\xde\xaf\xfb\x3e\xfc\xf5\x6f\x5c\xb7\xc4\xe5\x93\xe9" "\x5c\x4d\xbc\xbc\xf5\xc7\xc4\xb2\xcf\x55\xeb\x98\x9d\xb7\xaf\xfc\x5c" "\xb5\xbf\xba\x2d\x7d\x3e\xbb\x2e\xdd\x5e\xa4\xb1\xce\xae\xf4\xf9\x5c" "\xea\xab\x79\xeb\x7c\xe6\x2c\xb9\xc2\xf9\x6c\x1d\xf3\xa1\x99\xfe\xbf" "\x17\xcf\xb9\xb4\xe3\xfd\x77\x7c\x99\xf7\xdf\xc8\xfd\x3f\x6f\xdf\xcf" "\xd6\x7c\x53\x0f\x6c\x18\x1f\x2b\x5f\xbf\x1b\xf2\xd9\x19\xef\x7a\x3f" "\xee\x7e\xaa\xc6\xda\xef\x5d\x23\xed\xfb\xbe\x30\xb3\xb6\xf7\xe3\xf1" "\xf4\xdf\x95\x7e\x3f\xbe\x66\x85\xf7\xe3\x2d\x3d\xc7\xae\xf7\xfb\xf1" "\x78\xef\x83\x8b\xf7\xe3\x91\xd5\x7e\xda\xd1\x9f\xde\xe7\x73\x22\xed" "\x93\x63\xb3\x2b\xbf\x1f\xb7\x8e\xd9\xb2\xfd\x72\xf7\xe4\xd8\x8a\xef" "\xc7\x37\xa5\x39\x92\xce\xff\xcb\x52\x52\xc8\xb9\xa8\x63\xef\x2c\xb7" "\x6f\xf3\x7d\x8d\x8d\x8d\xa7\xc7\x35\x16\xf7\xd0\xbd\x4f\x77\x74\x1d" "\x3f\x9e\xb2\x59\xeb\xbe\x3e\xbb\xbd\xda\x3e\xbd\xe5\xa6\xf2\xb6\x36" "\xe4\x47\x77\xd1\x95\xda\xa7\x53\x3d\xc7\xae\xf7\x3e\xcd\xef\x57\xcb" "\xed\xd3\x91\xd5\x7e\xfa\x56\x4d\xef\xf3\x39\x91\xf6\xc5\x35\x3b\x56" "\xde\xa7\xad\x63\xce\xef\xec\xff\xbd\x73\x53\xfc\xb5\xe3\xbd\x73\xe3" "\x6a\x7b\x70\x7c\xc3\xc6\xd6\x9a\xc7\xf3\x26\x2c\xdf\xef\x17\x37\xc5" "\x1e\xbc\xbd\x38\x58\x9c\x2c\x8e\x15\x87\xda\x9f\xdd\xd8\xde\x4f\x23" "\xed\xfb\x9a\xde\xb5\xb6\x3d\xb8\x31\xfd\x77\xa5\xdf\x2b\xb7\xac\xb0" "\x07\x6f\xe9\x39\x76\xbd\xf7\x60\xfe\x3a\xb6\xdc\xde\x1b\x19\xbb\xf4" "\xc1\xaf\x83\xde\xe7\x73\x22\xed\x8b\x8f\xee\x5a\x79\x0f\xb6\x8e\x79" "\xdd\x9e\xf5\xfd\xde\xf5\x96\x74\x49\x3e\xa6\xe3\x7b\xd7\xde\x9f\xaf" "\x2d\xf7\x33\xaf\xeb\x7a\x4e\xd3\x53\xf9\x33\xaf\xd6\x3a\xff\x7e\xcf" "\xca\x3f\x9b\x6d\x1d\x73\xec\x8e\xcb\xcd\x99\x2b\x9f\xa7\xdb\xd2\x25" "\x57\x2f\x71\x9e\x7a\x5f\xbf\xcb\xbd\xa6\x0e\x15\x57\xe6\x3c\x6d\x49" "\xeb\xfc\xfe\x1d\xcb\x9f\xa7\xd6\x7a\x5a\xc7\x7c\x64\x6e\x8d\xfb\x69" "\x5f\x51\x14\x5f\xb8\x7b\x5f\xfb\xe7\xbd\xe9\xdf\x57\x3e\x7f\xf6\x5b" "\x5f\xec\xfa\x77\x97\x7d\xe5\xe7\xbe\x34\x77\xf1\xb6\x2e\xf9\xae\x63" "\xa9\x7f\xf7\xf9\xc2\xdd\xfb\xce\xff\xd3\x5d\x3f\xb9\x9c\xc7\x08\xc0" "\x60\xfb\x79\xfb\xcf\xad\x9b\xcb\xaf\x75\x1d\xff\x32\xb5\x96\x7f\xff" "\x07\x00\x00\x00\x86\x42\xe4\xfe\xd1\x34\x33\xf9\x1f\x00\x00\x00\x6a" "\x23\x72\x7f\xfc\xaf\xc2\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x58" "\x9a\x59\x43\xf2\xff\x83\xff\xfa\xbc\x77\xff\xf4\xfe\x22\x37\xf3\x17" "\x93\xf8\x7c\x9c\x86\x53\x4f\x94\xc7\x45\xc7\xf5\x93\xe9\xe3\xa9\xc5" "\x8b\x5a\x97\xbf\xe6\x33\xff\xf0\xf5\xb7\xdf\xbf\xb6\xfb\x1e\x2d\x8a" "\xe2\xa7\x77\xfd\xf3\x92\xc7\x3f\xf8\x44\xac\xab\xf4\x70\x5a\xe7\xd4" "\xb7\xbb\x2f\xbf\xc4\x96\x6f\xaf\xe9\xfe\xdf\x71\xef\xc5\xe3\x3a\x3b" "\x80\x93\xe9\xf6\xe3\xf1\xf4\x6e\x83\x2f\xff\xd7\x13\xed\xeb\x4d\xcd" "\x95\xf3\xfc\x5d\xe7\xdb\xf3\xcd\xe7\x1e\x7c\xa0\xf5\xf9\x0b\x73\xe5" "\xc7\xd1\x9d\x7c\xf2\xbf\xcb\xe3\xfe\x2c\x95\x79\xf7\x1d\xfe\xbb\xae" "\xeb\xdf\xf2\x58\x79\x7f\x5b\x1f\x5b\xf9\x71\xc5\xf5\x3e\xf7\xc6\x4d" "\x77\xbf\xe0\x6d\x17\xef\x2f\xae\x37\x72\xe3\xb3\xda\x0f\xe3\xa3\xaf" "\x2c\x6f\x37\x7e\xef\xcd\xc3\xaf\x2d\x8f\xbf\x90\x8e\x5b\x6e\xfd\x7f" "\xfb\x47\x9f\xfd\x5c\xeb\xf8\xf7\xbd\x64\xe9\xf5\xdf\x3f\xba\xf4\xfa" "\x9f\x4c\xb7\xfb\x9d\x34\x7f\xf2\xb3\xf2\xf2\xce\x73\xda\xfa\x38\xae" "\xf7\x07\x69\xfd\x71\x7f\x71\xbd\xdb\x3f\xfd\x95\x25\xd7\xff\xc8\x1b" "\xca\xe3\x1f\x49\xcf\xcb\x27\xd3\xec\x5d\xff\xab\xff\xe4\x85\x3f\xeb" "\x3c\x5f\xb1\xfe\xb8\x9f\x7d\x8f\x97\xd7\x8b\xfb\x9f\xfd\xab\x7f\x6f" "\x5f\x2f\x6e\x2f\x6e\xbf\x77\xfd\x13\xaf\x7a\xa2\xeb\x7c\xf4\xde\xfe" "\xf9\xcf\x97\xb7\xb3\xf7\x3d\xff\xb3\xa1\xf3\xf8\xb8\x3c\xee\x27\xef" "\xbb\xc7\xbb\x9f\xe7\xd6\xed\x74\xee\xb7\xf0\xd9\x3f\x3c\xdf\x75\x9e" "\x8b\x7f\x2b\xaf\xf7\xd7\x3d\xeb\x8f\xdb\x3b\xf5\xf8\xd2\xeb\xbf\xad" "\x67\x9d\xa7\xb6\x6d\x6e\x5f\x7f\xb9\xca\xf8\xc7\xe7\xbf\xb3\xe4\xe3" "\x8d\xf5\xec\xfb\xcb\x47\xbb\x1e\xcf\x23\xdf\x4b\xe7\xef\x35\xf7\xb4" "\x6f\x77\xe2\xc7\x69\x3f\xa6\xcf\xff\xef\xc3\xe5\xed\xf5\xfe\xb6\x84" "\x47\xbf\xd7\xfd\x7e\x12\xc7\x7f\x72\xb2\x7c\x5d\xc6\xed\xcd\xf4\xac" "\xff\xe1\x9e\xf5\x9f\x7b\x71\xeb\xdc\xad\xbe\xfe\x3b\x7f\x54\xae\xff" "\x91\x57\x7d\xb5\xfb\xf9\xf8\x8f\x72\x1d\xfb\x7e\x50\xce\xd5\xd6\x7f" "\xe4\x13\xdf\xec\xba\xfe\xa7\xbe\x55\x3e\x1f\xa7\xdf\x3b\x7d\xe2\xe4" "\xc2\xd9\xa3\xd1\xa1\x9e\x4c\xbf\xfb\xe7\xd4\x77\xcb\xdb\xbb\x6a\x62" "\xd3\xe6\xab\x9f\xf1\xcc\x67\x3d\x3b\xbd\x57\xf6\x7e\xbc\xff\xe4\x99" "\x77\xce\x9f\x9e\x9a\x9d\x9a\x2d\x8a\xa9\x21\xfc\x95\x78\x4f\xf5\xfa" "\x3f\x9d\xe6\x7f\x96\xe3\xdc\x7a\xdf\xfe\x7d\x45\x51\xbc\xb7\xe3\xeb" "\xda\xad\xaf\x2f\xf7\x5f\xf1\xa2\x0b\x7f\xfc\xe2\x3b\x3f\xf3\xce\x38" "\xee\x1f\x5f\x57\x5e\xfe\xd0\xdd\xe5\xd7\xad\x97\xa6\xe3\x1e\x4e\x97" "\x9f\x4b\xcf\x77\xdc\xce\xc7\x3f\x56\x7e\x3d\xec\x77\xfd\x71\x3f\xcb" "\xcd\xbc\xde\x35\x3a\xfb\xb5\x0f\xef\x5e\xd3\x81\xe9\xf1\x7f\xf4\x86" "\x6b\xdb\xaf\xb2\x91\xf3\xe5\xc5\xbd\xef\x57\x55\xc5\xeb\xfc\xf1\xe7" "\x75\xbf\xee\x1f\x7b\x6b\x39\xbf\x94\xce\xeb\x62\xfa\xcd\xcc\x37\x5e" "\xfb\xb5\xf6\x71\xbd\xf7\x1f\xbf\x1b\xe1\xa1\xb7\x94\xaf\xef\xf8\x4e" "\x2e\xae\xdf\xef\xfa\xff\x22\x3d\xdf\xf7\x7c\xa7\xbc\xfd\xb8\xdd\xbc" "\xde\xf4\x7d\xcc\x57\xb6\x74\xbf\x3f\xc6\xf3\xf3\xa5\xfb\x7b\x7e\xd3" "\xc0\x64\xf9\x5b\x3c\xce\xa5\xf7\x8f\xe2\x5c\xf9\xf9\x38\x2a\xbe\xa7" "\x7a\xe8\xc2\xb5\x97\xb3\xcc\x65\x2d\xbc\x7f\x61\xe6\xd8\xd1\x13\x67" "\xdf\x37\x73\x66\x7e\xe1\xcc\xcc\xc2\xfb\x3f\xb0\xff\xf8\xc9\xb3\x27" "\xce\xec\x6f\xff\x6e\xce\xfd\xef\x5a\xed\xfa\x17\x5f\xdf\x9b\xdb\xaf" "\xef\x43\xf3\xbb\x77\x16\xed\x57\xfb\xc9\x72\x3c\xc5\x9e\xee\xf5\x9f" "\xba\xf7\xe0\xa1\x3d\xb3\x37\x1f\x9a\x3f\x7c\xe0\xec\xe1\x33\xf7\x9e" "\x9a\x3f\x7d\xe4\xe0\xc2\xc2\xc1\xf9\x43\x0b\x37\x1f\x38\x7c\x78\xfe" "\xbd\xab\x5d\xff\xe8\xa1\xbd\xdb\xb6\xcf\xed\xd8\xb3\x7d\xfa\xc8\xd1" "\x43\x7b\xef\x98\x9b\xdb\x31\x37\x7d\xf4\xc4\xc9\xd6\x32\xca\x45\xad" "\x62\xf7\xec\xbb\xa7\x4f\x9c\xde\xdf\xbe\xca\xc2\xde\x9d\x73\xdb\x76" "\xed\xda\x39\x3b\x7d\xfc\xe4\xa1\xf9\xbd\x7b\x66\x67\xa7\xcf\xae\x76" "\xfd\xf6\xd7\xa6\xe9\xd6\xb5\xdf\x33\x7d\x7a\xfe\xd8\x81\x33\x47\x8f" "\xcf\x4f\x2f\x1c\xfd\xc0\xfc\xde\x6d\x73\xbb\x77\x6f\x5f\xf5\xb7\xfb" "\x1d\x3f\x75\x78\x61\x6a\xe6\xf4\xd9\x13\x33\x67\x17\xe6\x4f\xcf\x94" "\x8f\x65\xea\x4c\xfb\xe2\xd6\xd7\xbe\xd5\xae\x0f\x2d\x0b\x9f\xd8\xb4" "\xe4\xd7\xa9\x91\xf4\xdd\xfb\xb6\xdb\x76\xe7\xdf\xcf\xda\xf2\x99\x0f" "\x2e\x7b\x53\xe5\x21\x3d\xbf\x40\xf4\xfb\xe9\x77\xd1\x7c\xe3\xcf\xff" "\x74\xd7\x5a\x3e\x8e\xdc\x3f\x9e\x66\xd6\x90\xfc\x0f\x00\x00\x00\x4d" "\x10\xb9\x7f\x63\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\xaa\x34" "\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x44\x9a\x59\x43\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\xaf\x42\xff\x5f\xff\xbf" "\x0a\xfd\x7f\xfd\xff\x61\x58\xbf\xfe\xbf\xfe\x3f\xfd\x1b\xb4\xfe\x7f" "\xe4\xfe\x4d\x45\xd1\xc8\xfc\x0f\x00\x00\x00\x4d\x10\xb9\x7f\x73\x9a" "\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\xea\x34\x33\xf9\x1f\x00\x00" "\x00\x6a\x23\x72\xff\x33\xd2\xcc\x1a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\x83\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\x55\xe8\xff\xeb\xff" "\x0f\xc3\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\x3f\x33\xcd" "\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\x72\xff\xb3\xd2\xcc\xe4\x7f\x00" "\x00\x00\xa8\x8d\xc8\xfd\xcf\x4e\x33\x93\xff\x01\x00\x00\xa0\x36\x22" "\xf7\x4f\xa6\x99\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd" "\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\xab\xd0\xff\xd7\xff\x1f\x86\xf5\xeb" "\xff\xeb\xff\xd3\xbf\x41\xeb\xff\x47\xee\xff\x7f\x69\x66\x0d\xc9\xff" "\x00\x00\x00\xd0\x04\x91\xfb\x9f\x93\x66\x26\xff\x03\x00\x00\x40\x6d" "\x44\xee\x7f\x6e\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\x9a\x34" "\xb3\x86\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f" "\x85\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\xc3\xb0\x7e\xfd\x7f\xfd\x7f" "\xfa\x37\x68\xfd\xff\xc8\xfd\xcf\x4b\x33\x6b\x48\xfe\x07\x00\x00\x80" "\x26\x88\xdc\x7f\x6d\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\xf9" "\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x2d\x69\x66\x0d\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd" "\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff\xfa\xff\xf4\x6f\xd0\xfa" "\xff\x91\xfb\xff\x7f\x9a\x59\x43\xf2\x3f\x00\x00\x00\x34\x41\xe4\xfe" "\xeb\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8\xfd\x2f\x48\x33\x93\xff" "\x01\x00\x00\xa0\x36\x22\xf7\x5f\x9f\x66\xd6\x90\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\x1f\xf4\xff\xf5\xff\xab\xd0\xff\xd7\xff\xaf\x42\xff" "\x5f\xff\x7f\x18\xd6\xaf\xff\xaf\xff\x4f\xff\x06\xad\xff\x1f\xb9\xff" "\x85\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04\x91\xfb\x5f\x94\x66\x26" "\xff\x03\x00\x00\x40\x6d\x44\xee\x7f\x71\x9a\x99\xfc\x0f\x00\x00\x00" "\xb5\x11\xb9\x7f\x2a\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x3f\xe8\xff\xeb\xff\x57\xa1\xff\x7f\xd9\xfd\xff\x4d\x97\xb3\x3e\xfd" "\xff\xf2\x78\xfd\xff\x6a\x9e\xee\xfe\xfc\xb0\xaf\x5f\xff\x5f\xff\x9f" "\xfe\x0d\x5a\xff\x3f\x72\xff\x0d\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0" "\x04\x91\xfb\x6f\x4c\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\xdf\x94" "\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\xdf\x9a\x66\xd6\x90\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\x1f\xf4\xff\xf5\xff\xab\xd0\xff\xf7\xff" "\xff\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f\xfe\x0d\x5a" "\xff\x3f\x72\xff\x4b\xd2\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x22\xf7" "\xdf\x9c\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\x7f\x69\x9a\x99\xfc" "\x0f\x00\x00\x00\xb5\x11\xb9\xff\x96\x34\xb3\x86\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\x7f\x15\xfa" "\xff\xfa\xff\xc3\xb0\x7e\xfd\x7f\xfd\x7f\xfa\x37\x68\xfd\xff\xc8\xfd" "\x2f\x4b\x33\x6b\x48\xfe\x07\x00\x00\x80\x26\x88\xdc\x7f\x6b\x9a\x99" "\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\xb6\x34\x33\xf9\x1f\x00\x00\x00" "\x6a\x23\x72\xff\x74\x9a\x59\x43\xf2\xbf\xfe\xbf\xfe\xff\xca\xfd\xff" "\x73\xfa\xff\xfa\xff\xfa\xff\xe9\x63\xfd\xff\xa5\xe9\xff\xeb\xff\x57" "\xa1\xff\xaf\xff\x3f\x0c\xeb\xd7\xff\xd7\xff\xa7\x7f\x83\xd6\xff\x8f" "\xdc\xff\xf2\x34\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\xc8\xfd\xb7\xa7" "\x99\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\x67\xd2\xcc\xe4\x7f\x00\x00" "\x00\xa8\x8d\xc8\xfd\xb3\x69\x66\x0d\xc9\xff\xfa\xff\xfa\xff\xfe\xff" "\xff\xf5\xff\x83\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\x55\xe8\xff\xeb" "\xff\x0f\xc3\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\x6f\x4b" "\x33\x6b\x48\xfe\x07\x00\x00\x80\x26\x88\xdc\xbf\x3d\xcd\x4c\xfe\x07" "\x00\x00\x80\xda\x88\xdc\xbf\x23\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88" "\xdc\xbf\x33\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8" "\xff\xeb\xff\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f" "\xff\x5f\xff\x9f\xfe\x0d\x5a\xff\x3f\x72\xff\xae\x34\xb3\x86\xe4\x7f" "\x00\x00\x00\x68\x82\xc8\xfd\xbb\xd3\xcc\xe4\x7f\x00\x00\x00\xa8\x8d" "\xc8\xfd\x7b\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8\xfd\x77\xa4\x99" "\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x2a" "\xf4\xff\xf5\xff\xab\xd0\xff\xd7\xff\x1f\x86\xf5\xeb\xff\xeb\xff\xd3" "\xbf\x41\xeb\xff\x47\xee\x9f\x4b\x33\x6b\x48\xfe\x07\x00\x00\x80\x26" "\x88\xdc\xff\x8a\x34\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x2f\xa4" "\x99\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\x7f\x31\xcd\xac\x21\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x57\xa1\xff\xaf\xff" "\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f\xfe\x0d\x5a\xff" "\x3f\x72\xff\xde\x34\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\xc8\xfd\xaf" "\x4c\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\xbf\x2a\xcd\x4c\xfe\x07" "\x00\x00\x80\xda\x88\xdc\xbf\x2f\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf" "\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f\xfe\x0d\x5a\xff\x3f\x72\xff\xab" "\xd3\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x22\xf7\xbf\x26\xcd\x4c\xfe" "\x07\x00\x00\x80\xda\x88\xdc\xff\xda\x34\x33\xf9\x1f\x00\x00\x00\x6a" "\x23\x72\xff\xeb\xd2\xcc\x1a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x83\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\x55\xe8\xff\xeb\xff\x0f\xc3" "\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\xbf\x3e\xcd\xac\x21" "\xf9\x1f\x00\x00\x00\x9a\x20\x72\xff\x2f\xa5\x99\xc9\xff\x00\x00\x00" "\x50\x1b\x91\xfb\xdf\x90\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\xbf" "\x33\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb" "\xff\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f" "\xff\x9f\xfe\x0d\x5a\xff\x3f\x72\xff\x2f\xa7\x99\x35\x24\xff\x03\x00" "\x00\x40\x13\x44\xee\xbf\x2b\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc" "\x7f\x77\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\x8d\x69\x66\x0d" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0a\xfd" "\x7f\xfd\xff\x2a\x6a\xd1\xff\xbf\x5f\xff\xff\xa9\xf6\x74\xaf\x5f\xff" "\x5f\xff\x9f\xfe\x0d\x5a\xff\x3f\x72\xff\x3d\x69\x66\x0d\xc9\xff\x00" "\x00\x00\xd0\x04\x91\xfb\x7f\x25\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88" "\xdc\xff\xab\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x37\xa5\x99" "\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x2a" "\xf4\xff\xf5\xff\xab\xa8\x45\xff\xdf\xff\xff\xff\xba\xac\x71\x90\xd7" "\xaf\xff\xaf\xff\x4f\xff\x06\xad\xff\x1f\xb9\xff\xd7\xd2\xcc\x1a\x92" "\xff\x01\x00\x00\xa0\x09\x22\xf7\xbf\x39\xcd\x4c\xfe\x07\x00\x00\x80" "\xda\x88\xdc\xff\x96\x34\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x5b" "\xd3\xcc\x1a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x83\xfe\xbf\xfe" "\x7f\x15\xfa\xff\xfa\xff\x55\xe8\xff\xeb\xff\x0f\xc3\xfa\xf5\xff\xf5" "\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\xdf\x9b\x66\xd6\x90\xfc\x0f\x00\x00" "\x00\x4d\x10\xb9\xff\x6d\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe" "\x5f\x4f\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\xff\x46\x9a\x59\x43" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\xaf\x42\xff" "\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x61\x58\xbf\xfe\xbf\xfe\x3f\xfd\x1b" "\xb4\xfe\x7f\xe4\xfe\xdf\x4c\x33\x6b\x48\xfe\x07\x00\x00\x80\x26\x88" "\xdc\xff\xf6\x34\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x6f\xa5\x99" "\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\x7f\x3b\xcd\xac\x21\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x57\xa1\xff\xaf\xff\x5f" "\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f\xfe\x0d\x5a\xff\x3f" "\x72\xff\xef\xa4\x99\x35\x24\xff\x03\x00\x00\x40\x13\x44\xee\xff\xdd" "\x34\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\xfe\x34\x33\xf9\x1f\x00" "\x00\x00\x6a\x23\x72\xff\x3b\xd2\xcc\x1a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x83\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\x55\xe8\xff\xeb" "\xff\x0f\xc3\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\x1f\x48" "\x33\x6b\x48\xfe\x07\x00\x00\x80\x26\x88\xdc\xff\x7b\x69\x66\xf2\x3f" "\x00\x00\x00\xd4\x46\xe4\xfe\x83\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46" "\xe4\xfe\x43\x69\x66\x0d\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41" "\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd" "\xfa\xff\xfa\xff\xf4\x6f\xd0\xfa\xff\x91\xfb\xe7\xd3\xcc\x1a\x92\xff" "\x01\x00\x00\xa0\x09\x22\xf7\x1f\x4e\x33\x93\xff\x01\x00\x00\xa0\x36" "\x22\xf7\x1f\x49\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\xbf\x33\xcd" "\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x57" "\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\xff\x32\xe6\xc6\x07\x68\xfd\xfa" "\xff\xfa\xff\xf4\x6f\xd0\xfa\xff\x91\xfb\x8f\xa6\x99\x35\x24\xff\x03" "\x00\x00\x40\x13\x44\xee\x7f\x57\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11" "\xb9\xff\xdd\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x63\x69\x66" "\x0d\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0a" "\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff\xfa\xff\xf4" "\x6f\xd0\xfa\xff\x91\xfb\x8f\xa7\x99\x35\x24\xff\x03\x00\x00\x40\x13" "\x44\xee\x3f\x91\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\x3f\x99\x66" "\x26\xff\x03\x00\x00\x40\x6d\x44\xee\x3f\x95\x66\xd6\x90\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\x1f\xf4\xff\xf5\xff\xab\xd0\xff\xd7\xff\xaf" "\x42\xff\x5f\xff\x7f\x18\xd6\xaf\xff\xaf\xff\x4f\xff\x06\xad\xff\x1f" "\xb9\xff\xf7\xd3\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x22\xf7\x9f\x4e" "\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\x2f\xa4\x99\xc9\xff\x00\x00" "\x00\x50\x1b\x91\xfb\xcf\xa4\x99\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x07\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\xab\xd0\xff\xd7\xff" "\x1f\x86\xf5\xeb\xff\xeb\xff\xd3\xbf\x41\xeb\xff\x47\xee\x3f\x9b\x66" "\xd6\x90\xfc\x0f\xc0\xff\xb1\x77\xd7\x38\xc0\x5c\x49\x14\x46\x37\x38" "\x8b\x98\x55\x0c\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33\x83\x29\xb0" "\xfc\xbb\x6e\xc9\xb2\x9c\xf8\x75\xd2\xfd\xea\x9c\xa4\xd4\xd9\x4b\x6f" "\xf0\xa9\x01\x00\x98\x20\xbb\xff\x7e\x75\x9b\xfd\x0f\x00\x00\x00\xdb" "\xc8\xee\xbf\x7f\xdd\x66\xff\x03\x00\x00\xc0\x36\xb2\xfb\x1f\x50\xb7" "\x0d\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x1f\xfa\x7f\xfd\xff\x0a\xfd" "\xbf\xfe\x7f\x85\xfe\x5f\xff\x7f\x85\xf7\xeb\xff\xf5\xff\x1c\x77\xb6" "\xfe\x3f\xbb\xff\x81\x75\xdb\x90\xfd\x0f\x00\x00\x00\x13\x64\xf7\x3f" "\xa8\x6e\xb3\xff\x01\x00\x00\x60\x1b\xd9\xfd\x0f\xae\xdb\xec\x7f\x00" "\x00\x00\xd8\x46\x76\xff\x43\xea\xb6\x21\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x43\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xaf" "\xf0\x7e\xfd\xbf\xfe\x9f\xe3\xce\xd6\xff\x67\xf7\x3f\xb4\x6e\x1b\xb2" "\xff\x01\x00\x00\x60\x82\xec\xfe\x87\xd5\x6d\xf6\x3f\x00\x00\x00\x6c" "\x23\xbb\xff\xe1\x75\x9b\xfd\x0f\x00\x00\x00\xdb\xc8\xee\x7f\x44\xdd" "\x36\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xe8\xff\xf5\xff\x2b\xf4" "\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\xd9" "\xfa\xff\xec\xfe\x47\xd6\x6d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xdd\xff" "\xa8\xba\xcd\xfe\x07\x00\x00\x80\x6d\x64\xf7\x3f\xba\x6e\xb3\xff\x01" "\x00\x00\x60\x1b\xd9\xfd\x8f\xa9\xdb\x86\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x0f\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\xbf" "\xc2\xfb\xf5\xff\xfa\x7f\x8e\x3b\x5b\xff\x9f\xdd\xff\xd8\xba\x6d\xc8" "\xfe\x07\x00\x00\x80\x09\xb2\xfb\x1f\x57\xb7\xd9\xff\x00\x00\x00\xb0" "\x8d\xec\xfe\xc7\xd7\x6d\xf6\x3f\x00\x00\x00\x6c\x23\xbb\xff\x09\x75" "\xdb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa1\xff\xd7\xff\xaf\xd0" "\xff\xeb\xff\x57\xe8\xff\xf5\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71\x67" "\xeb\xff\xb3\xfb\x9f\x58\xb7\x0d\xd9\xff\x00\x00\x00\x30\x41\x76\xff" "\x93\xea\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\xff\xe4\xba\xcd\xfe\x07" "\x00\x00\x80\x6d\x64\xf7\x3f\xa5\x6e\x1b\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x3f\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff" "\x0a\xef\xd7\xff\xeb\xff\x39\xee\x6c\xfd\x7f\x76\xff\x53\xeb\xb6\x21" "\xfb\x1f\x00\x00\x00\x26\xc8\xee\x7f\x5a\xdd\x66\xff\x03\x00\x00\xc0" "\x36\xb2\xfb\x9f\x5e\xb7\xd9\xff\x00\x00\x00\xb0\x8d\xec\xfe\x67\xd4" "\x6d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x87\xfe\x5f\xff\xbf\x42" "\xff\xaf\xff\x5f\xa1\xff\xd7\xff\x5f\xe1\xfd\x77\xe9\xff\xef\x73\xc7" "\xa7\xfe\x5f\xff\xcf\xbd\x77\xb6\xfe\x3f\xbb\xff\x99\x75\xdb\x90\xfd" "\x0f\x00\x00\x00\x13\x64\xf7\x3f\xab\x6e\xb3\xff\x01\x00\x00\x60\x1b" "\xd9\xfd\xcf\xae\xdb\xec\x7f\x00\x00\x00\xd8\x46\x76\xff\x73\xea\xb6" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x43\xff\xaf\xff\x5f\xa1\xff" "\xd7\xff\xaf\xd0\xff\xeb\xff\xaf\xf0\x7e\xff\xff\xd7\xff\x73\xdc\xd9" "\xfa\xff\xec\xfe\xe7\xd6\x6d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xdd\xff" "\xbc\xba\xcd\xfe\x07\x00\x00\x80\x6d\x64\xf7\x3f\xbf\x6e\xb3\xff\x01" "\x00\x00\x60\x1b\xd9\xfd\x2f\xa8\xdb\x86\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x0f\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\xbf" "\xc2\xfb\xf5\xff\xfa\x7f\x8e\x3b\x5b\xff\x9f\xdd\xff\xc2\xba\x6d\xc8" "\xfe\x07\x00\x00\x80\x09\xb2\xfb\x5f\x54\xb7\xd9\xff\x00\x00\x00\xb0" "\x8d\xec\xfe\x17\xd7\x6d\xf6\x3f\x00\x00\x00\x6c\x23\xbb\xff\x25\x75" "\xdb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa1\xff\xd7\xff\xaf\xd0" "\xff\xeb\xff\x57\xe8\xff\xf5\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71\x67" "\xeb\xff\xb3\xfb\x5f\x5a\xb7\x0d\xd9\xff\x00\x00\x00\x30\x41\x76\xff" "\xcb\xea\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\xff\xf2\xba\xcd\xfe\x07" "\x00\x00\x80\x6d\x64\xf7\xbf\xa2\x6e\x1b\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x3f\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff" "\x0a\xef\xd7\xff\xeb\xff\x39\xee\x6c\xfd\x7f\x76\xff\x2b\xeb\xb6\x21" "\xfb\x1f\x00\x00\x00\x26\xc8\xee\x7f\x55\xdd\x66\xff\x03\x00\x00\xc0" "\x36\xb2\xfb\x5f\x5d\xb7\xd9\xff\x00\x00\x00\xb0\x8d\xec\xfe\xd7\xd4" "\x6d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x87\xfe\x5f\xff\xbf\x42" "\xff\xaf\xff\x5f\xa1\xff\xd7\xff\x5f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\x9d" "\xad\xff\xcf\xee\x7f\x6d\xdd\x36\x64\xff\x03\x00\x00\xc0\x04\xd9\xfd" "\xaf\xab\xdb\xec\x7f\x00\x00\x00\xd8\x46\x76\xff\xeb\xeb\x36\xfb\x1f" "\x00\x00\x00\xb6\x91\xdd\xff\x86\xba\x6d\xc8\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xd0\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff" "\x2b\xbc\x5f\xff\xaf\xff\xe7\xb8\xb3\xf5\xff\xd9\xfd\x6f\xac\xdb\x86" "\xec\x7f\x00\x00\x00\x98\x20\xbb\xff\x4d\x75\x9b\xfd\x0f\x00\x00\x00" "\xdb\xc8\xee\x7f\x73\xdd\x66\xff\x03\x00\x00\xc0\x36\xb2\xfb\xdf\x52" "\xb7\x0d\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x1f\xfa\x7f\xfd\xff\x0a" "\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\x7f\x85\xf7\xeb\xff\xf5\xff\x1c\x77" "\xb6\xfe\x3f\xbb\xff\xad\x75\xdb\x90\xfd\x0f\x00\x00\x00\x13\x64\xf7" "\xbf\xad\x6e\xb3\xff\x01\x00\x00\x60\x1b\xd9\xfd\x6f\xaf\xdb\xec\x7f" "\x00\x00\x00\xd8\x46\x76\xff\x3b\xea\xb6\x21\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x43\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff" "\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\xce\xd6\xff\x67\xf7\xbf\xb3\x6e\x1b" "\xb2\xff\x01\x00\x00\x60\x82\xec\xfe\x77\xd5\x6d\xf6\x3f\x00\x00\x00" "\x6c\x23\xbb\xff\xdd\x75\x9b\xfd\x0f\x00\x00\x00\xdb\xc8\xee\x7f\x4f" "\xdd\x36\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xe8\xff\xf5\xff\x2b" "\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc" "\xd9\xfa\xff\xec\xfe\xf7\xd6\x6d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xdd" "\xff\xbe\xba\xcd\xfe\x07\x00\x00\x80\x6d\x64\xf7\xbf\xbf\x6e\xb3\xff" "\x01\x00\x00\x60\x1b\xd9\xfd\x1f\xa8\xdb\x86\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x0f\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff" "\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x3b\x5b\xff\x9f\xdd\xff\xc1\xba\x6d" "\xc8\xfe\x07\x00\x00\x80\x09\xb2\xfb\x3f\x54\xb7\xd9\xff\x00\x00\x00" "\xb0\x8d\xec\xfe\x0f\xd7\x6d\xf6\x3f\x00\x00\x00\x6c\x23\xbb\xff\x23" "\x75\xdb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa1\xff\xd7\xff\xaf" "\xd0\xff\xeb\xff\x57\xe8\xff\xf5\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71" "\x67\xeb\xff\xb3\xfb\x3f\x5a\xb7\x0d\xd9\xff\x00\x00\x00\x30\x41\x76" "\xff\xc7\xea\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\xff\xf1\xba\xcd\xfe" "\x07\x00\x00\x80\x6d\x64\xf7\x7f\xa2\x6e\x1b\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x3f\xf4\xff\xfa\xff\x15\x97\xef\xff\xef\x7b\xe7\xd5\xff" "\xdf\x8d\xfe\xff\x06\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x98\xb3\xf5\xff" "\xd9\xfd\x9f\xac\xdb\x86\xec\x7f\x00\x00\x00\x98\x20\xbb\xff\x53\x75" "\x9b\xfd\x0f\x00\x00\x00\xdb\xc8\xee\xff\x74\xdd\x66\xff\x03\x00\x00" "\xc0\x36\xb2\xfb\x3f\x53\xb7\x0d\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x1f\xfa\x7f\xfd\xff\x8a\xcb\xf7\xff\xfe\xff\x7f\xcf\xf4\xff\x37\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x3f\xc7\x9c\xad\xff\xcf\xee\xff\x6c\xdd\x36" "\x64\xff\x03\x00\x00\xc0\x04\xd9\xfd\x9f\xab\xdb\xec\x7f\x00\x00\x00" "\xd8\x46\x76\xff\xe7\xeb\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\xff\x85" "\xba\x6d\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xd0\xff\xeb\xff\x57" "\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x2b\xbc\x5f\xff\xaf\xff\xe7\xb8" "\xb3\xf5\xff\xd9\xfd\x5f\xac\xdb\x86\xec\x7f\x00\x00\x00\x98\x20\xbb" "\xff\x4b\x75\x9b\xfd\x0f\x00\x00\x00\xdb\xc8\xee\xff\x72\xdd\x66\xff" "\x03\x00\x00\xc0\x36\xb2\xfb\xbf\x52\xb7\x0d\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x1f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff" "\x7f\x85\xf7\xeb\xff\xf5\xff\x1c\x77\xb6\xfe\x3f\xbb\xff\xab\x75\xdb" "\x90\xfd\x0f\x00\x00\x00\x13\x64\xf7\x7f\xad\x6e\xb3\xff\x01\x00\x00" "\x60\x1b\xd9\xfd\x5f\xaf\xdb\xec\x7f\x00\x00\x00\xd8\x46\x76\xff\x37" "\xea\xb6\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x43\xff\xaf\xff\x5f" "\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3" "\xce\xd6\xff\x67\xf7\x7f\xb3\x6e\x1b\xb2\xff\x01\x00\x00\x60\x82\xec" "\xfe\x6f\xd5\x6d\xf6\x3f\x00\x00\x00\x6c\x23\xbb\xff\xdb\x75\x9b\xfd" "\x0f\x00\x00\x00\xdb\xc8\xee\xff\x4e\xdd\x36\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd" "\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\xd9\xfa\xff\xec\xfe\xef\xd6\x6d" "\x43\xf6\x3f\x00\x00\x00\x4c\x90\xdd\xff\xbd\xba\xcd\xfe\x07\x00\x00" "\x80\x6d\x64\xf7\x7f\xbf\x6e\xb3\xff\x01\x00\x00\x60\x1b\xd9\xfd\x3f" "\xa8\xdb\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x0f\xfd\xbf\xfe\x7f" "\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e" "\x3b\x5b\xff\x9f\xdd\xff\xc3\xba\x6d\xc8\xfe\x07\x00\x00\x80\x09\xb2" "\xfb\x7f\x54\xb7\xd9\xff\x00\x00\x00\xb0\x8d\xec\xfe\x1f\xd7\x6d\xf6" "\x3f\x00\x00\x00\x6c\x23\xbb\xff\x27\x75\xdb\x90\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\x57\xe8\xff\xf5" "\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71\x67\xeb\xff\xb3\xfb\x7f\x5a\xb7" "\x0d\xd9\xff\x00\x00\x00\x30\x41\x76\xff\xcf\xea\x36\xfb\x1f\x00\x00" "\x00\xb6\x91\xdd\xff\xf3\xba\xcd\xfe\x07\x00\x00\x80\x6d\x64\xf7\xff" "\xa2\x6e\x1b\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xf4\xff\xfa\xff" "\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff\x0a\xef\xd7\xff\xeb\xff\x39" "\xee\x6c\xfd\x7f\x76\xff\x2f\xeb\xb6\x21\xfb\x1f\x00\x00\x00\x26\xc8" "\xee\xff\x55\xdd\x66\xff\x03\x00\x00\xc0\x36\xb2\xfb\x7f\x5d\xb7\xd9" "\xff\x00\x00\x00\xb0\x8d\xec\xfe\xdf\xd4\x6d\x43\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x87\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x5f\xa1\xff\xd7" "\xff\x5f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\x9d\xad\xff\xcf\xee\xff\x6d\xdd" "\x36\x64\xff\x03\x00\x00\xc0\x04\xd9\xfd\xbf\xab\xdb\xec\x7f\x00\x00" "\x00\xd8\x46\x76\xff\xef\xeb\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\xff" "\x87\xba\x6d\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xd0\xff\xeb\xff" "\x57\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x2b\xbc\x5f\xff\xaf\xff\xe7" "\xb8\xb3\xf5\xff\xd9\xfd\x7f\xac\xdb\x86\xec\x7f\x00\x00\x00\x98\x20" "\xbb\xff\x4f\x75\x9b\xfd\x0f\x00\x00\x00\xdb\xc8\xee\xff\x73\xdd\x66" "\xff\x03\x00\x00\xc0\x36\xb2\xfb\xff\x52\xb7\x0d\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x1f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f\x85\xfe\x5f" "\xff\x7f\x85\xf7\xeb\xff\xf5\xff\x1c\x77\xb6\xfe\x3f\xbb\xff\xaf\x75" "\xdb\x90\xfd\x0f\x00\x00\x00\x13\x64\xf7\xff\xad\x6e\xb3\xff\x01\x00" "\x00\x60\x1b\xd9\xfd\x7f\xaf\xdb\xec\x7f\x00\x00\x00\xd8\x46\x76\xff" "\x3f\xea\xb6\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x43\xff\xaf\xff" "\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f" "\xe3\xce\xd6\xff\x67\xf7\xff\xb3\x6e\x1b\xb2\xff\x01\x00\x00\x60\x82" "\xec\xfe\x7f\xd5\x6d\xf6\x3f\x00\x00\x00\x6c\x23\xbb\xff\xdf\x75\x9b" "\xfd\x0f\x00\x00\x00\xdb\xc8\xee\xff\x4f\xdd\x36\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\x7f\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f" "\xfd\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\xd9\xfa\xff\xec\xfe\xff\xd6" "\x6d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xdd\xff\xbf\xba\xcd\xfe\x07\x00" "\x00\x80\x6d\x64\xf7\xff\xbf\x6e\xb3\xff\x01\x00\x00\x60\x1b\xd9\xfd" "\x37\xd5\x6d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x87\xfe\x5f\xff" "\xbf\x42\xff\xaf\xff\x5f\xa1\xff\xd7\xff\x5f\xe1\xfd\xfa\x7f\xfd\x3f" "\xc7\x9d\xad\xff\xcf\xee\xbf\xb9\x6e\x1b\xb2\xff\x01\x00\x00\x60\x82" "\xec\xfe\x5b\xea\x36\xfb\x1f\x00\x00\x00\xb6\x91\xdd\x7f\x6b\xdd\x66" "\xff\x03\x00\x00\xc0\x36\xb2\xfb\x6f\xab\xdb\x86\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x0f\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf" "\xff\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x3b\x5b\xff\x9f\xdd\x7f\x7b\x00" "\x00\x00\xff\xff\xb5\x31\x6f\x00", 24063); syz_mount_image(/*fs=*/0x20005dc0, /*dir=*/0x20005e00, /*flags=*/0, /*opts=*/0x20001d40, /*chdir=*/1, /*size=*/0x5dff, /*img=*/0x20011a00); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }