// https://syzkaller.appspot.com/bug?id=7934c9b5faf36a4c1545368333dbfe8eff6af512 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 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; } } 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 struct nlmsg nlmsg; //% 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); 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)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) { } 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)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) { } } } close(sock_route); close(sock_generic); } 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 loop(void) { int i, call, thread; for (call = 0; call < 4; 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 == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20005d00, "jfs\000", 4)); NONFAILING(memcpy((void*)0x20005d40, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000c0, "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x69\x73\x6f\x38\x38\x35\x39\x2d\x33\x2c\x00\xaa\xf4\xea\xb2\x90\x8f" "\x47\x75\x49\x97\xb7\xd2\xa8\x9b\x97\x2a\xed\xc5\x01\x31\xcb\x6e\x7a" "\x4e\x95\xd7\x5c\x00\xf8\x91\x2d\x05\xd2\xc0\x95\x3b\x5a\xe1\xe3\x69" "\x1c\xac\x59\x46\x46\x38\xb0\x7e\x98\x23\x2c\x7d\x23\xd5\x5e\xf1\xc8" "\x08\x49\x7f\xb5\x6d\x38\x45\x44\x68\x41\xe6\x0c\xa1\xa0\xe5\x09\x34" "\xf0\x45\x4a\xe7\x88\xcd\x5d\x3b\xad\x74\x5d\x8b\xa3\x13\xd3\xa7\xf4" "\x75\xc6\xa1\xf5\x5c\x49\xf5\x39\xb9\x35\x36\xba\xb1\x9c\xed\x3a\xc5" "\x41\xe1\x28\xaa\xb2\x92\x61\xc3\x20\x16\x90\xa5\xd2\x2e\x69\x25\xd7" "\x58\x99\xd1\xb7\xbe\xff\xea\x96\x18\xb2\x6b\x4e\x30\xac\x06\x00\x0e" "\x2a\x81\x94\x1e\x5c\x11\xc7\x49\x31\x4e\x61\xfe\x6b\x49\x45\xf4\x0c" "\x75\xbc\x9f\xca\x9d\x04\xe2\x17\xca\x8b\x23\xa2\x08\x41\x14\x3a\xf9" "\xda\x25\x23\xd3\xf1\x8f\x96\x60\x80\x7c\xbe\x54\x44\x12\x5e\xf8\x9b" "\x2d\xdf\x4d\x15\x2c\x76\x16\x59\x67\xff\xeb\xfe\x33\x12\x32\x98\xf5" "\xdc\x95\x78\x61\x0e\xe7\xeb\x24\x8c\x0f\xb1\x86\x3d\x0f\xcb\x94\x21" "\x2f\xe3\x8c\x37\xf0\xb0\x73\x55\x9b\xef\x66\x25\x04\xd3\xd6\x12\xfc" "\x87\x01\x11\xb4\x9c\x96\x92\x5d\x3c\xb8\xba\xbe\xce\x7e\xbb\x48\xe6" "\x47\x28\x8b\x4d\x29\x94\xb4\x01\x19\x1f\xf3\x82\x9c\xce\xb8\x7f\xd0" "\x5a\x59\xd9\xbc\x38\xd3\xf9\x58\x58\xb1\x24\x19\xb8\xd7\x40\x75\xce" "\xa8\x41\x29\x8c\x11\x0d\xc0\x1c\xbe\xdc\x41\x6b\x5e\x81\x5a\xb3\x59" "\x9d\x52\x9a\x37\x14\x9e\xa9\x63\x73\x4b\x12\x1d\x35\x73\xe3\xc5\xc5" "\x58\x21\x9a\x34\xa7\xa4\x49\x5a\xfb\x6a\x69\xf4\x90\x1f\x2f\xcc\x7e" "\x89\xdd\xb1\x00\xe4\x3b\x14\x92\xe2\x45\xc0\x68\xaf\xa2\x44\x10\xb1" "\x39\x76\x36\x5d\xa4\x05\x5e\x6c\x33\x07\x3b\xd5\xd1\xa3\xea\x93\x2c" "\x62\x30\xd6\xef\x32\x1d\x46\x58\x63\x7b\xa2\x92\x05\x74\x5c\x12\xda" "\xab\x5d\xc8\xb2\x2b\xa3\xb0\x56\xc3\x3d\x8f\x97\xf2\x93\x11\xa6\xea" "\x1c\x55\x4c\xe3\x63\x5d\x7f\xc9\xcb\xeb", 469)); NONFAILING(memcpy( (void*)0x2000bb40, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\x19\x07\xf0\xe7\xbe\xf8\xfa\xa5\x34" "\x8d\x2a\x54\x85\x88\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x0b" "\x16\xb0\x00\x09\x65\x4d\x22\xd7\xad\x02\x29\xa0\x24\x20\x5a\x59\xc4" "\x95\x17\x88\x15\x5f\x01\x36\xdd\xb0\xe8\x86\x0f\xc0\x07\xe8\x67\x40" "\x7c\x00\x22\xd9\xac\xba\xa0\x0c\x1a\xfb\x9c\x64\x3c\xbe\xce\x75\x9a" "\xf8\xce\xb5\xcf\xef\x27\x39\x33\xcf\x9c\x3b\xbe\x67\xf2\xf7\x78\xee" "\xf5\xcc\xdc\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\xfc\xe8\x87\x3f\x3b\xdf\x8b\x88\xeb\xbf\x4b\x0b\x8e\x47\x7c" "\x21\x06\x11\xfd\x88\xc5\xba\x3e\x15\xf5\xcc\xd5\xfc\xf8\x61\x44\x9c" "\x88\xad\xe6\x78\x21\x22\x06\xf3\x11\xf5\xfa\x5b\xff\x3c\x17\x71\x29" "\x22\x3e\x39\x16\xb1\xb1\xb9\xba\x5c\x2f\xbe\xb0\xcf\x7e\x5c\x3e\x77" "\xf7\xf6\x67\x3f\xfe\xc1\x3f\xff\xf8\xe7\xf5\x13\xbf\x78\xfb\xe7\x1f" "\xb5\xdb\x7f\xfa\xc5\x8b\x1f\xff\xe9\x5e\xc4\xf1\x9f\xbc\xf1\xf1\x67" "\xf7\x9e\xce\xb6\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9\x6d\xfe\xc9" "\xf4\xfe\xbe\xdf\x75\xa7\x00\x80\xa9\xc8\xc7\xff\x2a\xc9\xcb\xd5\x6a" "\xb5\x5a\xad\x56\x1f\xbd\xba\xa9\x1a\xef\x5e\xb3\x88\x88\xb5\xe6\x3a" "\xf5\x6b\x06\xa7\xe3\x01\xe0\x90\x59\x8b\x4f\xbb\xee\x02\x1d\x92\x7f" "\xd1\x86\x11\xf1\x4c\xd7\x9d\x00\x66\x5a\xaf\xeb\x0e\x70\x20\x36\x36" "\x57\x97\x7b\x29\xdf\x5e\xf3\x78\x70\x6a\xbb\x3d\x5f\x0b\xb2\x23\xff" "\xb5\xde\x83\xfb\x3b\xf6\x9a\x4e\xd2\xbe\xc6\x64\x5a\x3f\x5f\xeb\x31" "\x88\xe7\xf7\xe8\xcf\xe2\x94\xfa\x30\x4b\x72\xfe\xfd\x76\xfe\xd7\xb7" "\xdb\x47\xe9\x71\x07\x9d\xff\xb4\xec\x95\xff\x68\xfb\xd6\xa7\xe2\xe4" "\xfc\x07\xed\xfc\x5b\x8e\x4e\xfe\xfd\xb1\xf9\x97\x2a\xe7\x3f\x7c\xac" "\xfc\x07\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff\xfe\x7f\xbc\xe3\xf3" "\xbf\xf3\x4f\xbe\x29\xfb\xf2\xa8\xf3\xbf\xa7\xa6\xd4\x07\x00\x00\x00" "\x00\x00\x00\x00\x78\xda\x9e\x74\xfc\xbf\x07\x8c\xff\x07\x00\x00\x00" "\x33\xab\x7e\xaf\x5e\xfb\xcb\xb1\x87\xcb\x76\x7e\x16\xdb\xdf\x77\x2c" "\xbf\xd6\x8b\x78\xb6\xf5\x78\xa0\x30\xe9\x66\x99\xa5\xae\xfb\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6e\x5f\xc3\x7b\xad\x17" "\x31\x17\x11\xcf\x2e\x2d\x55\x55\x55\x7f\x35\xb5\xeb\xc7\xf5\xa4\xeb" "\x1f\x76\xa5\x6f\x3f\x94\xac\xeb\x5f\xf2\x00\x00\xb0\xed\x93\x63\xad" "\x7b\xf9\x7b\x11\x0b\x11\x71\x2d\x7d\xd6\xdf\xdc\xd2\xd2\x52\x55\x2d" "\x2c\x2e\x55\x4b\xd5\xe2\x7c\x7e\x3d\x3b\x9a\x5f\xa8\x16\x1b\xef\x6b" "\xf3\xb4\x5e\x36\x3f\xda\xc7\x0b\xe2\xe1\xa8\xaa\xbf\xd9\x42\x63\xbd" "\xa6\x49\xef\x97\x27\xb5\xb7\xbf\x5f\xfd\x5c\xa3\x6a\xb0\x8f\x8e\x4d" "\x47\x87\x81\x03\x40\x44\x6c\x1f\x8d\x36\x1c\x91\x8e\x98\xaa\x7a\x2e" "\xba\x7e\x95\xc3\xe1\x60\xff\x3f\x7a\xec\xff\xec\x47\xd7\x3f\xa7\x00" "\x00\x00\xc0\xc1\xab\xaa\xaa\xea\xa5\x8f\xf3\x3e\x99\xce\xf9\xf7\xbb" "\xee\x14\x00\x30\x15\xf9\xf8\xdf\x3e\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa" "\xe8\xd5\x4d\xd5\x78\xf7\x9a\x45\x44\xac\x35\xd7\xa9\x5f\x33\x18\x8e" "\x1f\x00\x0e\x99\xb5\xf8\xb4\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x27" "\xba\xee\x04\x30\xd3\x7a\x5d\x77\x80\x03\xb1\xb1\xb9\xba\xdc\x4b\xf9" "\xf6\x9a\xc7\x83\x34\xbe\x7b\xbe\x16\x64\x47\xfe\x6b\xbd\xad\xf5\xf2" "\xfa\xe3\xa6\x93\xb4\xaf\x31\x99\xd6\xcf\xd7\x7a\x0c\xe2\xf9\x3d\xfa" "\xf3\xc2\x94\xfa\x30\x4b\x72\xfe\xfd\x76\xfe\xd7\xb7\xdb\x47\xe9\x71" "\x07\x9d\xff\xb4\xec\x95\x7f\xbd\x9d\xc7\x3b\xe8\x4f\xd7\x72\xfe\x83" "\x76\xfe\x2d\x47\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x56\xfe\x03" "\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x3f\xee\xfc\x6f\xde\x64" "\x00\x00\x00\x00\x00\x00\x00\x38\x74\x36\x36\x57\x97\xf3\x7d\xaf\xf9" "\xfc\xff\x97\xc7\x3c\xce\xfd\x9f\x47\x53\xce\xbf\x27\xff\x22\xe5\xfc" "\xfb\xed\xfc\x5b\x17\xe4\x0c\x1a\xf3\xf7\xdf\x7a\x98\xff\x7f\x36\x57" "\x97\x3f\xba\xfb\xef\x2f\xe5\xe9\xcc\xe7\x3f\x37\x18\xd5\xcf\x3d\xd7" "\xeb\x0f\x86\xe9\x9a\x9f\x6a\xee\x9d\xb8\x19\xb7\x62\x25\xce\xed\x7a" "\xfc\x70\x47\xfb\xf9\x5d\xed\x73\x3b\xda\x2f\x4c\x68\xbf\xb8\xab\x7d" "\x54\xb7\x2f\xe6\xf6\x33\xb1\x1c\xbf\x8e\x5b\xf1\xf6\x83\xf6\xf9\x09" "\x17\x46\x2d\x4c\x68\xaf\x26\xb4\xe7\xfc\x07\xf6\xff\x22\xe5\xfc\x87" "\x8d\xaf\x3a\xff\xa5\xd4\xde\x6b\x4d\x6b\xf7\x3f\xec\xef\xda\xef\x9b" "\xd3\x71\xcf\x73\xf5\x6f\xff\x7d\x79\xf7\xde\x35\x7d\xeb\x31\x78\xb0" "\x6d\x4d\xf5\xf6\x9d\xee\xa0\x3f\x5b\xff\x27\xcf\x8c\xe2\xb7\x77\x56" "\x6e\x9f\xf9\xfd\x8d\xbb\x77\x6f\x9f\x8f\x34\xd9\xb1\xf4\x42\xa4\xc9" "\x53\x96\xf3\x9f\x4b\x5f\x39\xff\x57\x5e\xda\x6e\xcf\xbf\xf7\x9b\xfb" "\xeb\xfd\x0f\x47\x8f\x9d\xff\xac\x58\x8f\xe1\x9e\xf9\xbf\xd4\x98\xaf" "\xb7\xf7\xd5\x29\xf7\xad\x0b\x39\xff\x51\xfa\xca\xf9\xe7\x23\xd0\xf8" "\xfd\xff\x30\xe7\xbf\xf7\xfe\xff\x5a\x07\xfd\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x47\xa9\xaa\x6a\xeb\x16\xd1\xab\x11\x71" "\x25\xdd\xff\xd3\xd5\xbd\x99\x00\xc0\x74\xe5\xe3\x7f\x95\xe4\xe5\x6a" "\xb5\x5a\xad\x56\xab\x8f\x5e\xdd\x54\x8d\xf7\x66\xb3\x88\x88\x7f\x34" "\xd7\xa9\x5f\x33\xfc\x61\xdc\x37\x03\x00\x66\xd9\xff\x22\xe2\x5f\x5d" "\x77\x82\xce\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9\x57\xba\xee\x0c\x30\x55" "\x77\xde\xff\xe0\x97\x37\x6e\xdd\x5a\xb9\x7d\xa7\xeb\x9e\x00\x00\x00" "\x00\x00\x00\x00\x00\x9f\x57\x1e\xff\xf3\x54\x63\xfc\xe7\xad\xeb\x80" "\x5a\xe3\x46\xef\x18\xff\xf5\xad\x38\x75\x68\xc7\xff\xec\x8f\x06\x5b" "\x63\x9d\xa7\x0d\x7a\x31\x1e\x3d\xfe\xf7\xe9\x78\xf4\xf8\xdf\xc3\x09" "\xcf\x37\x37\xa1\x7d\x34\xa1\x7d\x7e\x42\xfb\xc2\x84\xf6\xb1\x37\x7a" "\x34\xe4\xfc\x5f\x4c\x19\xe7\xfc\x4f\xa6\x0d\x2b\x69\xfc\xd7\x57\x3a" "\xe8\x4f\xd7\x72\xfe\xa7\xd3\x58\xcf\x39\xff\xaf\xb5\x1e\xd7\xcc\xbf" "\xfa\xeb\x61\xce\xbf\xbf\x23\xff\xb3\x77\xdf\xfb\xcd\xd9\x3b\xef\x7f" "\xf0\xfa\xcd\xf7\x6e\xbc\xbb\xf2\xee\xca\xaf\xce\x9f\xbb\x72\xe9\xe2" "\xe5\x4b\x17\x2f\x5f\x3e\xfb\xce\xcd\x5b\x2b\xe7\xb6\xff\xed\xb0\xc7" "\x07\x2b\xe7\x9f\xc7\xbe\x76\x1d\x68\x59\x72\xfe\x39\x73\xf9\x97\x25" "\xe7\xff\xd5\x54\xcb\xbf\x2c\x39\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xf3" "\xeb\x3d\xf9\x97\x25\xe7\x9f\xdf\xfb\xc8\xbf\x2c\x39\xff\x57\x53\x2d" "\xff\xb2\xe4\xfc\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\x5a\xaa\xe5\x5f\x96" "\x9c\xff\x37\x52\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\x92\xf3\x3f" "\x93\x6a\xf9\x97\x25\xe7\x7f\x36\xd5\xf2\x2f\x4b\xce\x3f\x9f\xe1\x92" "\x7f\x59\x72\xfe\xf9\xca\x06\xf9\x97\x25\xe7\x7f\x21\xd5\xf2\x2f\x4b" "\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\xa5\x54\xcb\xbf\x2c\x39\xff\xcb" "\xa9\x96\x7f\x59\x72\xfe\x57\x52\x2d\xff\xb2\xe4\xfc\xbf\x99\x6a\xf9" "\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39\xff\x37\x52\x2d\xff\xb2\xe4" "\xfc\xbf\x9d\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf\x2c\x39\xff\xef" "\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce\xff\xfb\xa9\x96" "\x7f\x59\x72\xfe\x6f\xa6\x5a\xfe\x65\x79\xf8\xf9\xff\x66\xcc\x98\x31" "\x93\x67\xba\xfe\xcd\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4" "\x4d\xe3\x72\xe2\xae\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01" "\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xbd\xc5\xc8\x55\xdf\x77\x00\x3f" "\x7b\xb3\xd7\x86\x04\x37\x10\x42\x88\x13\x5f\xb8\xc4\xc0\xc2\xee\xfa" "\x06\x0e\x31\x98\x24\xa4\x94\xf4\x42\x49\x48\x9b\x96\xd4\x38\xf6\xda" "\x38\xf1\xad\xde\x35\x37\xa1\xb2\x29\xb4\x25\x0a\x52\x91\xda\x07\xfa" "\xd0\x34\x89\xd2\x28\x52\x5b\x81\xaa\x48\x4d\x25\x1a\x21\x35\x52\xfb" "\xd6\x3c\x35\xe2\x25\x6a\xa5\x3c\xf8\x01\x2a\x07\x25\x95\x52\x05\xb6" "\x3a\x33\xff\xff\xdf\x33\xb3\xbb\x73\xd6\xd8\x63\x66\xce\xff\xf3\x89" "\xf0\xcf\x3b\x73\xce\xcc\x7f\xce\x9c\x99\xdd\xef\x46\xdf\x31\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xad\x36\x7d\x7c\xe6\xcf\x86\x8a\xa2\x28\xff\x6b\xfc\xb1\xae\x28" "\x2e\x2d\xff\xbe\xa6\xd8\x53\x7e\x39\xbf\xf3\x9d\x5e\x21\x00\x00\x00" "\x70\xbe\xde\x6c\xfc\xf9\xf7\x97\xa5\x0b\xf6\xac\x60\xa7\x96\x6d\xfe" "\xed\x43\xff\xf1\xdd\x85\x85\x85\x85\xe2\x0b\x6f\x9c\x7e\xeb\x2f\x16" "\x16\xd2\x15\x1b\x8b\x62\x64\x75\x51\x34\xae\x8b\xfe\xfd\x17\x3f\x5f" "\x68\xdd\x26\x78\xba\x18\x1f\x1a\x6e\xf9\x7a\xb8\xe2\xee\x47\x2a\xae" "\x1f\xad\xb8\x7e\xac\xe2\xfa\x55\x15\xd7\xaf\xae\xb8\x7e\xbc\xe2\xfa" "\x45\x07\x60\x91\x35\xcd\xdf\xc7\x34\x6e\xec\xda\xc6\x5f\xd7\x35\x0f" "\x69\x71\x45\x31\xd6\xb8\xee\xda\x25\xf6\x7a\x7a\x68\xf5\xf0\x70\xfc" "\x5d\x4e\xc3\x50\x63\x9f\x85\xb1\x83\xc5\xe1\xe2\x48\x31\x53\x4c\x2d" "\xda\x67\xa8\xf1\xbf\xa2\x78\x79\x53\x79\x5f\xf7\x14\xf1\xbe\x86\x5b" "\xee\x6b\x7d\x51\x14\x67\x7e\xfa\xe4\xfe\xb8\x86\xa1\x70\x8c\xaf\x2d" "\xda\xee\xac\xa1\xf5\xb9\x7b\xfd\xae\x62\xe3\x1b\x3f\x7d\x72\xff\xb7" "\xe7\x5e\x7b\xff\x52\xb3\xf2\x30\x2c\x5a\x69\x51\x6c\xd9\x5c\xae\xf3" "\x99\xa2\x38\xfb\xeb\xaa\x62\xa8\x58\x9d\x8e\x49\x5c\xe7\x70\xcb\x3a" "\xd7\x2f\xb1\xce\x91\xb6\x75\x0e\x35\xf6\x2b\xff\xde\xb9\xce\x33\x2b" "\x5c\x67\x7c\xdc\xe3\x61\x9d\x3f\xec\xb2\xce\xf5\xe1\xb2\xc7\xae\x29" "\x8a\x62\xbe\x58\x76\x9b\x4e\x4f\x17\xc3\xc5\xda\x8e\x7b\x4d\xc7\x7b" "\xbc\x79\x46\x94\xb7\x51\x3e\x95\xef\x29\x46\xcf\xe9\x3c\xd9\xb4\x82" "\xf3\xa4\xdc\xe7\x27\xd7\xb4\x9f\x27\x9d\xe7\x64\x3c\xfe\x9b\xc2\x31" "\x19\x5d\x66\x0d\xad\x4f\xc7\xeb\x5f\x5e\xb5\xe8\xb8\xbf\xdd\xf3\xa4" "\x7c\xd4\xfd\x70\xae\x96\xb7\x7d\x5f\x79\xa7\xe3\xe3\xad\xbf\x5a\x6d" "\x3b\x57\xcb\x6d\x9e\xbc\x6e\xf9\x73\x60\xc9\xe7\x6e\x89\x73\x20\x9d" "\xcb\x2d\xe7\xc0\xe6\xaa\x73\x60\x78\xd5\x48\xe3\x1c\x18\x3e\xbb\xe6" "\xcd\x6d\xe7\xc0\xf4\xa2\x7d\x86\x8b\xa1\xc6\x7d\x9d\xbe\xae\xfb\x39" "\x30\x39\x77\xf4\xc4\xe4\xec\xe3\x4f\xdc\x7c\xf8\xe8\xbe\x43\x33\x87" "\x66\x8e\x4d\x4f\xed\xdc\xbe\x6d\xc7\xf6\x6d\x3b\x76\x4c\x1e\x3c\x7c" "\x64\x66\xaa\xf9\xe7\xb9\x1d\xd2\x01\xb2\xb6\x18\x4e\xe7\xe0\xe6\xf0" "\x5e\x13\xcf\xc1\x0f\x77\x6c\xdb\x7a\x4a\x2e\x7c\xe3\xc2\xbd\x0e\xc6" "\xfb\xe4\x75\x50\x3e\xf6\xcf\x5c\x5f\x2e\xe8\xd2\xe1\x62\x99\x73\xbc" "\xdc\xe6\x99\x2d\xe7\xff\x3a\x48\xdf\xf7\x5b\x5e\x07\xa3\x2d\xaf\x83" "\x25\xdf\x53\x97\x78\x1d\x8c\xae\xe0\x75\x50\x6e\x73\x66\xcb\xca\xbe" "\x67\x8e\xb6\xfc\xb7\xd4\x1a\x7a\xf5\x5e\xb8\xae\xe5\x1c\x78\x27\xbf" "\x1f\x96\xf7\xf9\xe0\x0d\xcb\xbf\x17\xae\x0f\xeb\x7a\xf6\xc6\x73\xfd" "\x7e\x38\xb2\xe8\x1c\x88\x0f\x6b\x28\xbc\xf6\xca\x4b\xd2\xcf\x7b\xe3" "\xb7\x85\xe3\xb2\xf8\xbc\xb8\xba\xbc\xe2\x92\x55\xc5\xa9\xd9\x99\x93" "\xb7\x3c\xb6\x6f\x6e\xee\xe4\x74\x11\xc6\x45\x71\x79\xcb\x73\xd5\x79" "\xbe\xac\x6d\x79\x4c\xc5\xa2\xf3\x65\xf8\x9c\xcf\x97\x3d\x7f\xf7\xcb" "\xeb\xaf\x5e\xe2\xf2\x75\xe1\x58\x8d\xdf\xd4\xfd\xb9\x2a\xb7\xd9\x3e" "\xd1\xfd\xb9\x6a\xbc\xbb\x2f\x7d\x3c\xdb\x2e\xdd\x5a\x84\x71\x81\x5d" "\xec\xe3\xb9\xd4\x77\xb3\xf2\x78\xa6\x2c\xd1\xe5\x78\x96\xdb\x3c\x73" "\xf3\xf9\xff\x2c\x98\x72\x49\xcb\xfb\xdf\x58\xd5\xfb\xdf\xc8\xd8\x68" "\xf3\xfd\x6f\x24\x1d\x8d\xb1\xb6\xf7\xbf\xc5\x4f\xcd\x48\x63\x65\x45" "\x71\xe6\xe6\x95\xbd\xff\x8d\x85\xff\x2e\xf6\xfb\xdf\x15\x7d\xf2\xfe" "\x57\x1e\xab\x07\x6f\xe9\x7e\x0e\x94\xdb\x3c\x3b\x79\xae\xe7\xc0\x68" "\xd7\xf7\xbf\x6b\xc2\x1c\x0a\xeb\xb9\x21\x24\x86\xf1\x96\xdc\xff\x56" "\xe3\xfa\xf9\xe6\x69\xda\xf2\x5c\x56\x9e\x37\xa3\xa3\x63\xe1\xbc\x19" "\x8d\xf7\xd8\x7e\xde\x6c\x5b\xb4\x4f\x79\x6b\xe5\x7d\x6f\x99\x7a\x7b" "\xe7\xcd\x96\x6b\xda\x9f\xab\xb6\x9f\x5b\x6a\x78\xde\x94\xc7\xea\x2f" "\xa7\xba\x9f\x37\xe5\x36\xaf\x4c\x9f\xff\x7b\xc7\x9a\xf8\xd7\x96\xf7" "\x8e\x55\x55\xe7\xc0\xd8\xc8\xaa\x72\xbd\x63\xe9\x24\x68\xbe\xdf\x2d" "\xac\x89\xe7\xc0\x2d\xc5\xfe\xe2\x78\x71\xa4\x38\x90\xf6\x29\x9f\xe5" "\xf2\xbe\x26\xb6\xae\xec\x1c\x58\x15\xfe\xbb\xd8\xef\x1d\x57\xf5\xc9" "\x39\x50\x1e\xab\x17\xb6\x76\x3f\x07\xca\x6d\x7e\xb0\xed\xc2\xfe\xec" "\xb4\x25\x5c\x92\xb6\x69\xf9\xd9\xa9\xf3\xf7\x0b\xcb\x65\xfe\xab\x47" "\xcf\xde\x5e\xe7\x61\xbb\xd0\x99\xbf\x5c\xe7\x27\xb6\x77\xff\xdd\x50" "\xb9\xcd\x6b\xdb\xcf\x35\x67\x74\x3f\x4e\x37\x85\x4b\x2e\x59\xe2\x38" "\x75\xbe\x7e\x96\x3b\xa7\x0f\x14\x17\xe7\x38\x5d\x15\xd6\x79\x64\x47" "\xf7\xdf\x4d\x95\xdb\x5c\xb1\x73\x85\xe7\xd3\x9e\xa2\x28\x5e\x9d\x7e" "\xb5\xf1\xfb\xae\xf0\xfb\xdd\x7f\x3c\xf5\x9f\xdf\x6d\xfb\xbd\xef\x52" "\xbf\x53\x7e\x75\xfa\xd5\x7b\x27\xef\xff\xd1\xb9\xac\x1f\x00\x80\xb7" "\xef\xad\xc6\x9f\xf3\xab\x9a\x3f\x6b\xb6\xfc\x3f\xd6\x2b\xf9\xff\xff" "\x01\x00\x00\x80\x81\x10\x73\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x68\x98" "\x49\x26\xf9\xff\xe1\xdb\x76\xbd\xf8\xe6\x53\x45\xfa\x34\xc0\x85\x20" "\x5e\x1f\x0f\xc3\x7d\x77\x34\xb7\x8b\x1d\xef\xf9\xf0\xf5\xc6\x85\xb3" "\xca\xcb\x3f\xf6\xad\xb1\x17\xbf\xf2\xd4\xca\xee\x7b\xb8\x28\x8a\x5f" "\xde\xfb\x81\x25\xb7\x7f\xf8\x8e\xb8\xae\xa6\x13\x71\x9d\x1f\x69\xbf" "\x7c\x91\xab\x36\xac\xe8\xfe\x1f\x7a\xe0\xec\x76\xad\x9f\x9f\x70\x66" "\x57\xf3\xf6\xe3\xe3\x59\xe9\x69\x10\xbb\xca\x2f\x4f\x6e\x6d\xdc\xee" "\xc6\xc7\xa7\x1b\xf3\x95\x7b\x8b\xc6\xbc\x7f\xfe\xd9\xa7\x9b\xb7\xdf" "\xfc\x3a\x6e\x7f\x7a\x5b\x73\xfb\xbf\x0e\x1f\x5a\xb2\xe7\xe0\x50\xdb" "\xfe\x5b\xc2\x7a\xae\x0d\x73\x63\xf8\x4c\x99\xfb\xf6\x9c\x3d\x0e\xe5" "\x8c\xfb\xbd\xb8\xfe\x43\xff\x7a\xf9\x67\xcf\xde\x5f\xdc\x6f\x68\xf3" "\xbb\x1b\x0f\xf3\x85\x3f\x6a\xde\x6e\xfc\x8c\xa8\xe7\x2f\x6f\x6e\x1f" "\x1f\xf7\x72\xeb\xff\x97\xaf\x7e\xe7\xc5\x72\xfb\xc7\xae\x5b\x7a\xfd" "\x4f\x0d\x2f\xbd\xfe\xd3\xe1\x76\x7f\x12\xe6\x2f\x76\x37\xb7\x6f\x3d" "\xe6\x5f\x69\x59\xff\x9f\x84\xf5\xc7\xfb\x8b\xfb\xdd\xf2\xcd\xef\x2f" "\xb9\xfe\x97\xde\xd7\xdc\xfe\xa5\x70\x5e\x7c\x3d\xcc\xce\xf5\xdf\xf5" "\xe7\x1f\x7c\x73\xa9\xe7\x2b\xde\xcf\x9e\xdb\x9b\xfb\xc5\xfb\x9f\xfa" "\xdf\xed\x8d\xfd\xe2\xed\xc5\xdb\xef\x5c\xff\xf8\x53\xd3\x6d\xc7\xa3" "\xf3\xf6\x5f\x79\xa3\x79\x3b\xbb\x1f\xf9\xd9\x48\xeb\xf6\xf1\xf2\x78" "\x3f\xd1\x43\xb7\xb7\x9f\xdf\x43\xe1\xf9\x6d\xeb\x91\x17\x45\xf1\x9d" "\x3f\x2d\xda\x8e\x73\xf1\xd1\xe6\x7e\xff\xdc\xb1\xfe\x78\x7b\x27\x6e" "\x5f\x7a\xfd\x37\x75\xac\xf3\xc4\xd0\x86\xc6\xfe\x67\x1f\xcf\xba\xb6" "\xc7\xf5\xb5\xbf\xdd\xba\xe4\xe3\x8d\xeb\xd9\xf3\x0f\xeb\xda\x1e\xcf" "\xf3\x77\x87\xe3\xf7\xc6\xe4\x0f\xca\xdb\x3d\x7d\x7f\x38\x1f\xc3\xf5" "\xff\xf7\xc3\xe6\xed\x75\x7e\x96\xe9\x4b\x77\xb7\xbf\xdf\xc4\xed\xbf" "\xbe\xae\xf9\xba\x8d\xb7\x37\xd9\xb1\xfe\xe7\x3b\xd6\x3f\xbf\xa1\x3c" "\x76\xd5\xeb\xbf\xe7\x8d\xe6\xfa\x5f\xba\x73\x75\xdb\xfa\xf7\x7c\x32" "\x9c\x4f\xf7\x34\x67\xd5\xfa\x0f\xfd\xcd\x65\x6d\xfb\x7f\xe3\xdb\xcd" "\xe7\xe3\xe4\xa3\x13\xc7\x8e\xcf\x9e\x3a\x7c\xa0\xe5\xa8\xb6\xbe\x8e" "\x57\x8f\xaf\x59\x7b\xc9\xa5\xef\x7a\xf7\x65\xe1\xbd\xb4\xf3\xeb\xbd" "\xc7\xe7\x1e\x9e\x39\xb9\x71\x6a\xe3\x54\x51\x6c\x1c\xc0\x8f\x0c\xec" "\xf5\xfa\xbf\x19\xe6\xff\x34\xc7\xfc\x85\xbf\x87\xa6\x1f\xfd\xac\x79" "\xde\x3d\xf7\xa9\xe6\xf7\xad\x0f\xff\xbc\xf9\xf5\xf3\xe1\xf2\x87\xc2" "\xf3\x19\xbf\x3f\x7e\xed\xaf\xc6\xda\xce\xd7\xce\xe7\x7d\xfe\xce\xe6" "\x3c\xdf\xf5\xdf\x18\xd6\xb1\x52\xef\xfb\xea\x7f\x6f\x58\xd1\x86\xa7" "\x3f\xff\xf2\xa9\x7f\xfa\xe3\xd7\x3a\x7f\x2e\x88\x8f\xe7\xc4\x7b\xc7" "\x1b\x8f\xef\x85\x4d\x57\x36\xae\x1b\x7a\xa5\x79\x7d\xe7\xfb\x55\x95" "\xff\x7a\x6f\xfb\xeb\xfa\xc7\xa3\x53\x8d\xf9\xbd\x70\x5c\x17\xc2\x27" "\x33\x6f\xbe\xb2\x79\x7f\x9d\xb7\x1f\x3f\x9b\xe4\xb9\x4f\x37\x5f\xbf" "\xf1\x27\xb9\xb8\x7f\xd1\xf1\x79\x22\xeb\x46\xda\x1f\xc7\xf9\xae\xff" "\xc7\xe1\xe7\x98\xef\x5f\xd5\xfe\xfe\x17\xcf\x8f\xef\x3d\xd5\xf1\x69" "\xce\xeb\x8a\xa1\x72\x09\xf3\xe1\xfd\xa1\x98\x6f\x5e\x1f\xb7\x8a\xc7" "\xfb\xb9\x33\x57\x2e\x79\x7f\xf1\x73\x78\x8a\xf9\xf7\x9f\xcb\x32\x97" "\x35\xfb\xf8\xec\xe4\x91\xc3\xc7\x4e\x3d\x36\x39\x37\x33\x3b\x37\x39" "\xfb\xf8\x13\x7b\x8f\x1e\x3f\x75\x6c\x6e\x6f\xe3\xb3\x4b\xf7\x7e\xb1" "\x6a\xff\xb3\xaf\xef\xb5\x8d\xd7\xf7\x81\x99\x9d\xdb\x8b\xc6\xab\xfd" "\x78\x73\xf4\xd8\x3b\xbd\xfe\x13\x0f\xec\x3f\x70\xeb\xd4\xf5\x07\x66" "\x0e\xee\x3b\x75\x70\xee\x81\x13\x33\x27\x0f\xed\x9f\x9d\xdd\x3f\x73" "\x60\xf6\xfa\x7d\x07\x0f\xce\x3c\x5a\xb5\xff\xe1\x03\xbb\xa7\xb7\xee" "\xda\x76\xeb\xd6\x89\x43\x87\x0f\xec\xbe\x6d\xd7\xae\x6d\xbb\x26\x0e" "\x1f\x3b\x5e\x2e\xa3\xb9\xa8\x0a\x3b\xa7\xbe\x34\x71\xec\xe4\xde\xc6" "\x2e\xb3\xbb\xb7\xef\x9a\xde\xb1\x63\xfb\xd4\xc4\xd1\xe3\x07\x66\x76" "\xdf\x3a\x35\x35\x71\xaa\x6a\xff\xc6\xf7\xa6\x89\x72\xef\x47\x26\x4e" "\xce\x1c\xd9\x37\x77\xf8\xe8\xcc\xc4\xec\xe1\x27\x66\x76\x4f\xef\xda" "\xb9\x73\x6b\xe5\xa7\x3f\x1e\x3d\x71\x70\x76\xe3\xe4\xc9\x53\xc7\x26" "\x4f\xcd\xce\x9c\x9c\x6c\x3e\x96\x8d\x73\x8d\x8b\xcb\xef\x7d\x55\xfb" "\x93\x87\xd9\xe3\xe1\xfd\xae\xc3\x50\xf8\xe9\xfc\x73\x37\xed\x4c\x9f" "\x8f\x5b\xfa\xd6\x97\x97\xbd\xa9\xe6\x26\xed\x3f\x9e\x16\xaf\x87\xcf" "\x82\x8a\xdf\xdf\xaa\xbe\x8e\xb9\x7f\x2c\xcc\x24\x93\xfc\x0f\x00\x00" "\x00\x39\x88\xb9\x3f\x7c\xf0\xff\xd9\x2b\xe4\x7f\x00\x00\x00\xa8\x8d" "\x98\xfb\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x8f\x87\x99" "\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x2f\xbc" "\xd1\xf4\x37\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff" "\xfa\xff\x54\xeb\xb7\xfe\x7f\xcc\xfd\x6b\x8a\x22\xcb\xfc\x0f\x00\x00" "\x00\x39\x88\xb9\x7f\x6d\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\x25\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x97\x86\x99\x64\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f" "\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xfa\xad" "\xff\x1f\x73\xff\xbb\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb" "\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x59\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\xba\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff" "\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5a\xbf\xf5\xff\x63\xee\xff" "\x95\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xf7\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\x5f\x1e\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\x7f\x45\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\x19\xbc\xfe\xff\x50\xdb" "\xed\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\x7f" "\x6f\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x95\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\xbf\x2a\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\xdd\x0c\x5e\xff\xbf\x9d\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xdd\xf5\x5b\xff\x3f\xe6\xfe\xf7\x87\x99" "\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x5f\x1d\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\xf5\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff" "\xaf\xff\x4f\xb5\x7e\xeb\xff\xc7\xdc\xff\xc1\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x18\x66\x92" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd" "\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb" "\xb7\xfe\x7f\xcc\xfd\x9b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x5f\x13\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x6d\x98\x49\x26\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1" "\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7" "\x5f\x17\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x7d\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x87\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\xb7\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41" "\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xfa\xad\xff\x1f\x73\xff\x0d\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x9f\xba\xf3\x9c" "\xf7\x88\xb9\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2" "\xfa\xf5\xff\xf5\xff\xa9\xd6\x6f\xfd\xff\x98\xfb\x6f\x0e\x33\xc9\x24" "\xff\x03\x00\x00\x40\x0e\x62\xee\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x2a" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff" "\xa9\xd6\x6f\xfd\xff\x98\xfb\xa7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x0b" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x1e\x66\x92\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff" "\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb\xb7\xfe\x7f" "\xcc\xfd\x3b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x77\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x1a\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\x7f\x5b\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff" "\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7\xef\x0a\x33" "\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x48\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\x1f\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd" "\x7f\xfd\x7f\xaa\xf5\x5b\xff\x3f\xe6\xfe\xdd\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\xdf\x19\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x27\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa" "\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9\xd6" "\x6f\xfd\xff\x98\xfb\xef\x0a\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62" "\xee\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xc7\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x11\x66\x92\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e" "\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb\xb7\xfe\x7f\xcc" "\xfd\x77\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f\x32\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x57\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xef\x09\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x37\x7d\xd5\xff\xdf" "\xa0\xff\xaf\xff\x5f\xcb\xfe\xff\xf8\x72\xfb\xeb\xff\x73\x31\xf4\x5b" "\xff\x3f\xe6\xfe\x5f\x0b\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x53\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xbf\x1e\x66\x92\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e\xfa" "\xaa\xff\xef\xdf\xff\xd7\xff\xaf\x67\xff\x7f\x59\xfa\xff\x5c\x0c\xfd" "\xd6\xff\x8f\xb9\xff\x37\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xb7\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xef\x0b\x33\xc9\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xe7\xde\xff\x5f\xa5\xff\xaf\xff\xdf\x53\xfa\xff\xfa" "\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9\xd6\x6f\xfd" "\xff\x98\xfb\x7f\x3b\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\xfe\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x4f\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\x7f\x26\xcc\x24\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\x9f\x7b\xff\xdf\xbf\xff\xaf\xff\xdf\x5b\xfa\xff\xfa\xff\xdd" "\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9\xd6\x6f\xfd\xff\x98" "\xfb\x1f\x08\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x6c\x98" "\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xef\x84\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xff\x6e\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff" "\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7\x7f\x2e\xcc" "\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xf7\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\x7f\x3f\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\xc1\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7" "\xff\xd7\xff\xa7\x5a\xbf\xf5\xff\x63\xee\xff\x7c\x98\x49\x26\xf9\x1f" "\x00\x00\x00\x72\x10\x73\xff\x1f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b" "\x31\xf7\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x28\xcc" "\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b" "\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9" "\xd6\x6f\xfd\xff\x98\xfb\xf7\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\x7f\x21\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x7f\x98" "\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x81\x30\x93\x4c\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77" "\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5a\xbf\xf5\xff\x63" "\xee\x9f\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x3f\x18\x66" "\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x28\xcc\x44\xfe\x07\x00\x00" "\x80\xda\x88\xb9\xff\xe1\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\x1f\xf6\xff\xc7\xf4\xff\xf5\xff\x57\x4a\xff\x5f\xff\xbf\xd0" "\xff\x7f\xdb\xde\xe9\xfe\xfc\xa0\xaf\x5f\xff\x5f\xff\x9f\x6a\xfd\xd6" "\xff\x8f\xb9\xff\x70\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x17\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xbf\x14\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x24\xcc\x24\x93\xfc\x7f\x7e\xfd\xff" "\x11\xfd\xff\x40\xff\x7f\xe9\xf5\xeb\xff\xeb\xff\xfb\xf7\xff\xf5\xff" "\xf5\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53" "\xad\xdf\xfa\xff\x31\xf7\x1f\x0d\x33\xc9\x24\xff\x03\x00\x00\x40\x0e" "\x62\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x3c\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x44\x98\x49\x26\xf9\xdf\xbf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9\xd6\x6f\xfd\xff" "\x98\xfb\xff\x30\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x64" "\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x6c\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\x5c\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff" "\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7\x9f\x0a\x33" "\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x24\xcc\x44\xfe\x07\x00" "\x00\x80\xda\x88\xb9\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\xc7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff" "\x5f\xff\x9f\x6a\xfd\xd6\xff\x8f\xb9\xff\xf1\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\x27\xc2\x4c\xfe\x9f\xbd\xbb\x66\x12\x63\x3b" "\xe2\x38\xba\x81\x03\x27\xfe\xc4\xa6\x67\x66\xc6\x67\x99\x99\x99\x51" "\x66\x66\x66\x66\x96\x19\x02\x97\xfc\xba\xbb\x14\xcd\x68\x55\x9a\xda" "\x3b\xdd\xe7\x24\x9d\xde\xd2\x6e\x49\xfa\x07\xbf\x1a\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\xff\xc0\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f" "\x28\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f" "\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6" "\xad\xd6\xff\xe7\xee\x7f\x70\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9" "\xfb\x1f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x87\xc6\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\x9e\xb8\x65\xc8\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe" "\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\x61\x71\xcb" "\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x78\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x1f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x47" "\xc6\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47" "\xd2\xff\xeb\xff\xb7\x5c\xb6\xff\xbf\x47\xff\xaf\xff\x5f\xe8\xfd\xfa" "\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\x3f\x2a\x6e\x19\xb2\xff\x01\x00" "\x00\x60\x82\xdc\xfd\x8f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x63\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd8\xb8\x65\xc8\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff" "\x16\xdf\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73" "\xf7\x3f\x2e\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x8f\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x13\xe2\x16\xfb\x1f\x00\x00\x00" "\xda\xc8\xdd\xff\xc4\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7" "\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\x49\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\x7f\x72\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\x9f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xa7\xc6\x2d\x43\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff" "\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc" "\xfd\x4f\x8b\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\xd3\xe3\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\x8c\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\x3f\x33\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5" "\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\x7f\x56\xdc\x32\x64\xff\x03\x00" "\x00\xc0\x04\xb9\xfb\x9f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe" "\xe7\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb9\x71\xcb\x90\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x63\xfb\xff\xfb\x67\x63\x79" "\xcb\x9f\xaa\xfe\xff\xee\xd1\xff\xeb\xff\x2f\xf4\xff\x77\xec\xaa\xfb" "\xf9\xb3\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe\x7b\xe3\x96" "\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xbc\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\x5f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xf3" "\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbe\xff\x7f" "\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec" "\x5b\xad\xff\xcf\xdd\xff\x82\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72" "\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x2f\x8a\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x8b\xe3\x96\x21\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff\x5b\xc6\xf6\xff" "\x37\xff\xdd\xd7\xff\x9f\xfe\xfd\x43\xfb\xff\xfc\x6f\x98\xfe\x9f\xdb" "\xb2\x5a\xff\x9f\xbb\xff\x25\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4" "\xee\x7f\x69\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x16\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x97\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\x8c\xed\xff" "\x7d\xff\xbf\xc5\xfb\x87\xf6\xff\x45\xff\xcf\xed\x58\xad\xff\xcf\xdd" "\xff\x8a\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x32\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\xab\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x23\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff" "\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe\xd7\xc4\x2d\x43\xf6\x3f\x00\x00" "\x00\x4c\x90\xbb\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f" "\x5d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x1f\xb7\x0c\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf" "\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7" "\xbf\x21\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x6f\x8c\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\xda" "\xc8\xdd\xff\xe6\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff" "\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\x2d\x71\xcb\x90\xfd\x0f\x00\x00" "\x00\x13\xe4\xee\x7f\x6b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xdf" "\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xb7\xc7\x2d\x43\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7" "\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd" "\xef\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x3b\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\xbf\x3b\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff" "\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\x7f\x4f\xdc\x32\x64\xff\x03\x00\x00" "\xc0\x04\xb9\xfb\xdf\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xf7" "\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xfd\x71\xcb\x90\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d" "\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff\xb3\x6f\xb5\xfe\x3f\x77\xff" "\x07\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xc1\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\x7f\x28\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\xd7\xe3\x96\x21\xfb\x5f\xff\xaf\xff\x3f\x77\xff\x7f\xbf\x0b" "\xfd\xbf\xfe\x5f\xff\xbf\x36\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff\x7f\xe6" "\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xe1\xb8\x65\xc8\xfe" "\x07\x00\x00\x80\x09\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xc7\xe2\x96" "\x21\xfb\x5f\xff\xaf\xff\x3f\x77\xff\xef\xfb\xff\xfa\x7f\xfd\xff\xea" "\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff\xb3\x6f" "\xb5\xfe\x3f\x77\xff\xc7\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd" "\xff\x89\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x32\x6e\xb1\xff" "\x01\x00\x00\xa0\x8d\xdc\xfd\x9f\x8a\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff" "\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\x87\xf4\xff\xb7\xfc\xc5\x7e\xd9\xfe" "\x3f\x77\xff\xa7\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\x99" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x36\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\x9f\x8b\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc" "\x7e\xfd\xbf\xfe\x9f\x7d\x87\xf4\xff\xb7\xb8\x6c\xff\x9f\xbb\xff\xf3" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x42\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\xbf\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x2f\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff" "\xcf\xbe\xd5\xfa\xff\xdc\xfd\x5f\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98" "\x20\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd5\xb8" "\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x2d\x6e\x19\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff" "\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xff\x7a" "\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x11\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb" "\xff\x5b\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff" "\xb3\x6f\xb5\xfe\x3f\x77\xff\xb7\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26" "\xc8\xdd\xff\x9d\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x37\x6e" "\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xdf\x8b\x5b\x86\xec\x7f\xfd\xff" "\xd5\xf7\xff\x0f\xb8\x57\xff\xaf\xff\xbf\x8f\xfe\x3f\x7e\xae\xfa\x7f" "\xfd\xff\x25\xe8\xff\xf5\xff\x17\xfa\xff\x3b\x76\xd5\xfd\xfc\xd9\xdf" "\xaf\xff\xd7\xff\xb3\x6f\xb5\xfe\x3f\x77\xff\xf7\xe3\x96\x21\xfb\x1f" "\x00\x00\x00\x26\xc8\xdd\xff\x83\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\xff\x30\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x3f\x8a\x5b\x86" "\xec\x7f\xfd\xff\xd5\xf7\xff\xbe\xff\xaf\xff\x4f\xfa\xff\xf8\xb9\xea" "\xff\xf5\xff\x97\xa0\xff\xd7\xff\x5f\xe8\xff\xef\xd8\x55\xf7\xf3\x67" "\x7f\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x3f\x8e\x5b\x86\xec" "\x7f\x00\x00\x00\x98\x20\x77\xff\x4f\xe2\x16\xfb\x1f\x00\x00\x00\xda" "\xc8\xdd\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x2c\x6e" "\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xfa\x8d\x6b\xff\xff\x0d" "\xd4\xff\xeb\xff\x8f\xa0\xff\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e" "\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\x7f\x1e\xb7\x0c\xd9\xff\x00" "\x00\x00\x30\x41\xee\xfe\x5f\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb" "\xff\x97\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x55\xdc\x32\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\x8f\xa4\xff\xd7" "\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff" "\xb9\xfb\x7f\x1d\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xdf\xc4" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00" "\x00\x6d\xe4\xee\xff\x5d\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff\x7f\xe6\xf7" "\x37\xeb\xff\x6f\xfe\x7a\xe9\xff\xb9\xeb\x56\xeb\xff\x73\xf7\xff\x3e" "\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x7f\x88\x5b\xec\x7f\x00" "\x00\x00\x68\x23\x77\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xa7\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\x6f\xd6\xff\xfb" "\xfe\x3f\x87\x58\xad\xff\xcf\xdd\xff\xe7\xb8\x65\xc8\xfe\x07\x00\x00" "\x80\x09\x72\xf7\xdf\x88\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x5f" "\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd7\xb8\x65\xc8\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16" "\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff" "\x6f\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x7b\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\xff\x11\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\x7f\xc6\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f" "\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\xff\x8a\x5b\x86\xec\x7f\x00\x00\x00" "\x98\x20\x77\xff\xbf\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\x9f" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x37\x6e\x19\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45" "\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xff" "\x5f\x00\x00\x00\xff\xff\x19\x6e\x3c\xfa", 23946)); NONFAILING(syz_mount_image(0x20005d00, 0x20005d40, 0, 0x200000c0, 1, 0x5d8a, 0x2000bb40)); break; case 1: NONFAILING(memcpy((void*)0x20000080, "/proc/self/exe\000", 15)); res = syscall(__NR_openat, -1, 0x20000080ul, 0ul, 0ul); if (res != -1) r[0] = res; break; case 2: syscall(__NR_mmap, 0x20000000ul, 0x800000ul, 0x1000004ul, 0x13ul, r[0], 0ul); break; case 3: NONFAILING(memcpy((void*)0x20000500, "./file0/file0\000", 14)); NONFAILING(syz_mount_image(0, 0x20000500, 0, 0, 0, 0, 0)); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_802154(); install_segv_handler(); loop(); return 0; }