// https://syzkaller.appspot.com/bug?id=d7e13e816d5ba729b5232cfa81816187e468d7eb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_fspick #define __NR_fspick 433 #endif #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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; 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_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); 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, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 6; 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) + (call == 2 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2000000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x6241 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6241) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000180, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000580, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x20000000ea80, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x34\xb5" "\x72\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f" "\x70\xe0\xd2\x03\x8a\xb8\xa1\x44\xae\x5b\x45\xa4\x80\x92\x80\xd2\xca" "\x22\xae\x2c\x24\x0e\x9c\xf8\x0b\x40\x48\x1c\x11\xe2\x88\x38\xf0\x07" "\xf4\xc0\x95\x1b\x27\x4e\x44\xb2\x91\x40\x3d\x31\x68\xec\xe7\x89\x67" "\x37\xbb\x5d\xbb\xb6\x77\xd6\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\xae\x9f" "\xf1\x77\x67\x5f\x32\x33\xfb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x10\xdf\xfd\xce\xf7\x56\x5a\x11\x71\xf3\x67\x69" "\xc1\x52\xc4\xa7\xa2\x13\xd1\x8e\x58\x28\xeb\xe5\x88\x58\x58\x5e\xca" "\xeb\x77\x23\xe2\xd9\xd8\x69\x8e\x67\x22\xa2\x37\x17\x51\xde\x7e\xe7" "\x9f\xa7\x23\x5e\x89\x88\x0f\xcf\x46\x6c\x6d\xaf\xaf\x96\x8b\xaf\xec" "\xb3\x1f\xdf\xfe\xe3\xdf\x7f\xf7\x83\x33\x6f\xfe\xed\x0f\xbd\x4b\xff" "\xfd\xd3\xfd\xce\xab\xe3\xd6\x7b\xf0\xe0\x57\xff\xf9\xf3\xc3\xc3\x6d" "\x33\x00\x00\x00\x34\x4d\x51\x14\x45\x2b\x7d\xcc\x3f\x9f\x3e\xdf\xb7" "\xeb\xee\x14\x00\x30\x15\xf9\xf5\xbf\x48\xf2\xf2\x53\x5f\xff\xfa\x9f" "\x6f\xfe\x65\x96\xfa\xa3\x56\xab\xd5\x6a\xf5\x14\xea\xaa\x62\xb4\x87" "\xd5\x22\x22\x36\xaa\xb7\x29\xdf\x33\x38\x1c\x0f\x00\x27\xcc\x46\x7c" "\x54\x77\x17\xa8\x91\xfc\x1b\xad\x1b\x11\x67\xea\xee\x04\x30\xd3\x5a" "\x75\x77\x80\x63\xb1\xb5\xbd\xbe\xda\x4a\xf9\xb6\xaa\xaf\x07\xcb\xbb" "\xed\xf9\x5c\x90\x81\xfc\x37\x5a\x8f\xaf\xef\x18\x37\x9d\x64\xf8\x1c" "\x93\x69\x3d\xbe\x36\xa3\x13\xe7\xc6\xf4\x67\x61\x4a\x7d\x98\x25\x39" "\xff\xf6\x70\xfe\x37\x77\xdb\xfb\x69\xbd\xe3\xce\x7f\x5a\xc6\xe5\xdf" "\xdf\xbd\xf4\xa9\x71\x72\xfe\x9d\xe1\xfc\x87\x9c\x9e\xfc\xdb\x23\xf3" "\x6f\xaa\x9c\x7f\xf7\x40\xf9\x77\xe4\x0f\x00\x00\x00\x00\x00\x33\x2c" "\xff\xff\xff\x52\xcd\xc7\x7f\xe7\x0e\xbf\x29\xfb\xf2\x71\xc7\x7f\x97" "\xa7\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x38\x6a\x87\x1d\xff\xef\x31" "\xe3\xff\x01\x00\x00\xc0\xcc\x2a\x3f\xab\x97\x7e\x73\x76\x6f\xd9\xb8" "\xef\x62\x2b\x97\xdf\x68\x45\x3c\x35\xb4\x3e\xd0\x30\xe9\x62\x99\xc5" "\xba\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\xd2\xdd\x3d" "\x87\xf7\x46\x2b\xa2\x17\x11\x4f\x2d\x2e\x16\x45\x51\xfe\x54\x0d\xd7" "\x07\x75\xd8\xdb\x9f\x74\x4d\xdf\x7e\x68\xb2\xba\x9f\xe4\x01\x00\x60" "\xd7\x87\x67\xf3\xb5\xfc\xbd\xdd\x05\xad\x88\xf9\x88\xb8\x91\xbe\xeb" "\xaf\xb7\xb8\xb8\x58\x14\xf3\x0b\x8b\xc5\x62\xb1\x30\x97\xdf\xcf\xf6" "\xe7\xe6\x8b\x85\xca\xe7\xda\x3c\x2d\x97\xcd\xf5\xf7\xf1\x86\xb8\xdb" "\x2f\xca\x3b\x9b\xaf\xdc\xae\x6a\xd2\xe7\xe5\x49\xed\xc3\xf7\x57\xfe" "\xae\x7e\xd1\xd9\x47\xc7\x8e\x48\xfa\x63\xc6\x98\xe6\x1a\x03\x07\x80" "\xf4\x02\x15\xb1\xe5\x15\xe9\x94\x29\x8a\xa7\xc7\xbd\xf9\x80\x01\xf6" "\xff\x53\x68\x29\x96\xea\x7e\x5c\x31\xfb\xea\x7e\x98\x02\x00\x00\x00" "\xc7\xaf\x28\x8a\xa2\x95\xbe\xce\xfb\x7c\x3a\xe6\xdf\xae\xbb\x53\x00" "\xc0\x54\xe4\xd7\xff\xe1\xe3\x02\x87\xaa\xdb\x63\xda\x23\x8e\xe6\xfe" "\xd5\x6a\xb5\x5a\xad\x56\x7f\xa2\xba\xaa\x18\xed\x61\xb5\x88\x88\x8d" "\xea\x6d\xca\xf7\x0c\x86\xe3\x07\x80\x13\x66\x23\x3e\xaa\xbb\x0b\xd4" "\x48\xfe\x8d\xd6\x8d\x88\x67\xeb\xee\x04\x30\xd3\x5a\x75\x77\x80\x63" "\xb1\xb5\xbd\xbe\xda\x4a\xf9\xb6\xaa\xaf\x07\x69\x7c\xf7\x7c\x2e\xc8" "\x40\xfe\x1b\xad\x9d\xdb\xe5\xdb\x8f\x9a\x4e\x32\x7c\x8e\xc9\xb4\x1e" "\x5f\x9b\xd1\x89\x73\x63\xfa\xf3\xcc\x94\xfa\x30\x4b\x72\xfe\xed\xe1" "\xfc\x6f\xee\xb6\xf7\xd3\x7a\xc7\x9d\xff\xb4\x8c\xcb\xbf\xbf\x73\xc9" "\x5c\xf3\xe4\xfc\x3b\xc3\xf9\x0f\x39\x3d\xf9\xb7\x47\xe6\xdf\x54\x39" "\xff\xee\x81\xf2\xef\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xff\xff" "\x25\xc7\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\x89\xb3\xb5\xbd" "\xbe\x9a\xaf\x7b\xcd\xc7\xff\x3f\x33\x62\x3d\xd7\x7f\x9e\x4e\x39\xff" "\xd6\x41\xf3\x5f\x48\xf3\xf2\x3f\xd1\x72\xfe\xed\xa1\xfc\xbf\x38\xb4" "\x5e\xa7\x32\xff\xe8\x8d\xbd\xfd\xff\xdf\xdb\xeb\xab\xbf\xbf\xff\xaf" "\x4f\xe7\xe9\x7e\xf3\x9f\xcb\x33\xad\xf4\xc8\x6a\xa5\x47\x44\x2b\xfd" "\xa6\x56\x37\x4d\x0f\xb3\x75\x4f\xda\xec\x75\xfa\xe5\x6f\xea\xb5\xda" "\x9d\x6e\x3a\xe7\xa7\xe8\xbd\x1d\xb7\xe3\x4e\xac\xc5\xe5\x81\x75\xdb" "\xe9\xef\xb1\xd7\xbe\x32\xd0\x5e\xf6\xb4\x37\xd0\x7e\x65\xa0\xbd\xfb" "\x44\xfb\xd5\x81\xf6\x5e\xfa\xde\x81\x62\x21\xb7\x5f\x8c\xd5\xf8\x71" "\xdc\x89\xb7\x76\xda\xcb\xb6\xb9\x09\xdb\x3f\x3f\xa1\xbd\x98\xd0\x9e" "\xf3\xef\x78\xfe\x6f\xa4\x9c\x7f\xf7\xf1\xcf\xb9\xef\x97\xf9\x2f\xa6" "\xf6\xd6\xd0\xb4\xf4\xe8\x83\xf6\x13\xfb\x7d\x75\x3a\xea\xf7\xbc\x7e" "\xfb\xb3\xbf\xbc\x7c\xfc\x9b\x33\xd1\x66\x74\x1e\x6f\x5b\x55\xb9\x7d" "\x17\x6a\xe8\xcf\xce\xdf\xe4\x4c\x3f\x7e\x7a\x6f\xed\xee\xc5\x07\xb7" "\xee\xdf\xbf\xbb\x12\x69\x32\xb0\xf4\x4a\xa4\xc9\x11\xcb\xf9\xf7\x76" "\x7e\xe6\xf6\x9e\xff\x9f\xdf\x6d\xcf\xcf\xfb\xd5\xfd\xf5\xd1\x07\xfd" "\x03\xe7\x3f\x2b\x36\xa3\x3b\x36\xff\xe7\x2b\xf3\xe5\xf6\xbe\x38\xe5" "\xbe\xd5\x21\xe7\xdf\x4f\x3f\x39\xff\xb7\x52\xfb\xe8\xfd\xff\x24\xe7" "\x3f\x7e\xff\x7f\xa9\x86\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\xc7\x29\x8a\x62\xe7\x12\xd1\xd7\x23\xe2\x5a\xba\xfe\xa7" "\xae\x6b\x33\x01\x80\xe9\xca\xaf\xff\x45\x92\x97\xab\xd5\x6a\xb5\x5a" "\xad\x3e\x7d\x75\x55\x31\xda\x6b\xd5\x22\x22\xfe\x5a\xbd\x4d\xf9\x9e" "\xe1\xe7\xa3\xee\x0c\x00\x98\x65\xff\x8b\x88\x7f\xd4\xdd\x09\x6a\x23" "\xff\x06\xcb\xdf\xf7\x57\x4e\x5f\xa8\xbb\x33\xc0\x54\xdd\x7b\xef\xfd" "\x1f\xde\xba\x73\x67\xed\xee\xbd\xba\x7b\x02\x00\x00\x00\x00\x00\x00" "\x00\x7c\x52\x79\xfc\xcf\xe5\xca\xf8\xcf\x2f\x44\xc4\xd2\xd0\x7a\x03" "\xe3\xbf\xbe\x11\xcb\x87\x1d\xff\xb3\x9b\x67\x1e\x0f\x30\x7a\xc4\x03" "\x7d\x8f\xb1\xd9\xee\x77\xda\x95\xe1\xc6\x9f\x8b\x9d\xf1\xb9\x2f\x8e" "\x1b\xff\xfb\x42\x3c\x39\xfe\x77\x1e\x13\xb7\x53\xdd\x8e\x31\x7a\x13" "\xda\xfb\x13\xda\xe7\x26\xb4\xcf\x8f\x5c\xba\x97\xd6\xc8\x0b\x3d\x2a" "\x72\xfe\xcf\x55\xc6\x3b\x2f\xf3\x3f\x3f\x34\xfc\x7a\x13\xc6\x7f\x1d" "\x1e\xf3\xbe\x09\x72\xfe\x17\x2a\x8f\xe7\x32\xff\x2f\x0c\xad\x57\xcd" "\xbf\xf8\xed\xcc\xe5\xbf\xb1\xdf\x15\x37\xa3\x3d\x90\xff\xa5\xfb\xef" "\xfe\xe4\xd2\xbd\xf7\xde\x7f\xf9\xf6\xbb\xb7\xde\x59\x7b\x67\xed\x47" "\x57\x57\x56\x2e\x5f\xbd\x76\xed\xfa\xf5\xeb\x97\xde\xbe\x7d\x67\xed" "\xf2\xee\xbf\xc7\xd3\xeb\x19\x90\xf3\xcf\x63\x5f\x3b\x0f\xb4\x59\x72" "\xfe\x39\x73\xf9\x37\x4b\xce\xff\x73\xa9\x96\x7f\xb3\xe4\xfc\x3f\x9f" "\x6a\xf9\x37\x4b\xce\x3f\xbf\xdf\x93\x7f\xb3\xe4\xfc\xf3\x67\x1f\xf9" "\x37\x4b\xce\xff\xc5\x54\xcb\xbf\x59\x72\xfe\x5f\x4a\xb5\xfc\x9b\x65" "\x6b\x7b\x7d\xae\xcc\xff\xa5\x54\xcb\xbf\x59\xf2\xfe\xff\xe5\x54\xcb" "\xbf\x59\x72\xfe\x2f\xa7\x5a\xfe\xcd\x92\xf3\xbf\x98\x6a\xf9\x37\x4b" "\xce\xff\x52\xaa\xf7\x91\xbf\xaf\x87\x3f\x45\x72\xfe\xf9\x08\x97\xfd" "\xbf\x59\x72\xfe\x2b\xa9\x96\x7f\xb3\xe4\xfc\xaf\xa4\x5a\xfe\xcd\x92" "\xf3\xbf\x9a\x6a\xf9\x37\x4b\xce\xff\x95\x54\xcb\xbf\x59\x72\xfe\x5f" "\x49\xb5\xfc\x9b\x25\xe7\x7f\x2d\xd5\xf2\x6f\x96\x9c\xff\x57\x53\x2d" "\xff\x66\xc9\xf9\x5f\x4f\xb5\xfc\x9b\x25\xe7\xff\xb5\x54\xcb\xbf\x59" "\x72\xfe\x5f\x4f\xb5\xfc\x9b\x25\xe7\xff\x6a\xaa\xe5\xdf\x2c\x39\xff" "\x6f\xa4\x5a\xfe\xcd\x92\xf3\xff\x66\xaa\xe5\xdf\x2c\x39\xff\x6f\xa5" "\x5a\xfe\xcd\x92\xf3\x7f\x2d\xd5\xf2\x6f\x96\xbd\xef\xff\x37\x63\x66" "\x16\x66\x7e\x71\xb4\x77\xd8\x89\x19\xd9\xae\x93\x36\x53\xf7\x33\x13" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x6c\x1a\xa7\x13\xd7\xbd" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x67\x07\x0e\x04" "\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\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\xbb\xd7\x18\xb9\xce\xfa\x7e\xe0\x67\xf6\xe6\xb5\x43\x88" "\x81\x10\x9c\xfc\x0d\x6c\x12\x63\x8c\xb3\x64\xd7\x97\xf8\xc2\x1f\x17" "\x13\xae\x0d\x50\x6e\x09\x85\x5e\xb0\x5d\xef\xda\x2c\xf8\x86\xd7\x2e" "\x81\x22\xd9\x34\x50\x22\x61\x54\x54\x81\x9a\xbe\x68\x0b\x08\xb5\x91" "\xaa\x0a\xab\xe2\x05\xad\x28\xcd\x8b\xaa\x97\x57\xa5\x7d\x41\xdf\x54" "\x54\x95\x90\x1a\x55\x21\x0a\xa8\x48\x6d\x45\xb3\xd5\xcc\x79\x9e\xc7" "\x33\xb3\xb3\x33\xbb\xde\xf1\x7a\xf6\x3c\x9f\x8f\x64\xff\x76\x67\xce" "\xcc\x39\x73\xe6\xcc\xec\x7e\xd7\xfe\xee\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68\x76\xf7\x9b" "\x66\x3f\x5f\x2b\x8a\xa2\xfe\xa7\xf1\xd7\xe6\xa2\x78\x41\xfd\xe3\x8d" "\x13\x9b\x1b\x97\xbd\xee\x66\x6f\x21\x00\x00\x00\xb0\x5a\xff\xdb\xf8" "\xfb\xb9\xdb\xd2\x05\x87\x97\x71\xa3\xa6\x65\xfe\xf6\x15\xff\xf0\xad" "\x85\x85\x85\x85\xe2\x83\xc3\x5f\x19\xfd\xf2\xc2\x42\xba\x62\xa2\x28" "\x46\x37\x14\x45\xe3\xba\xe8\xea\xbf\x7d\xa8\xd6\xbc\x4c\xf0\x58\x31" "\x5e\x1b\x6a\xfa\x7c\xa8\xc7\xea\x87\x7b\x5c\x3f\xd2\xe3\xfa\xd1\x1e" "\xd7\x8f\xf5\xb8\x7e\x43\x8f\xeb\xc7\x7b\x5c\xbf\x68\x07\x2c\xb2\xb1" "\xfc\x79\x4c\xe3\xce\xb6\x35\x3e\xdc\x5c\xee\xd2\xe2\xf6\x62\xb4\x71" "\xdd\xb6\x0e\xb7\x7a\xac\xb6\x61\x68\x28\xfe\x2c\xa7\xa1\xd6\xb8\xcd" "\xc2\xe8\x89\x62\xae\x38\x55\xcc\x16\xd3\x2d\xcb\x97\xcb\xd6\x1a\xcb" "\x7f\xe7\xee\xfa\xba\xde\x5e\xc4\x75\x0d\x35\xad\x6b\x6b\xfd\x08\xf9" "\xf1\xa7\x8f\xc7\x6d\xa8\x85\x7d\xbc\xad\x65\x5d\xd7\xee\x33\xfa\xd1" "\x1b\x8b\x89\x9f\xfc\xf8\xd3\xc7\xff\xe8\xc2\x33\x77\x76\x9a\x3d\x77" "\x43\xcb\xfd\x95\xdb\xb9\xe3\x9e\xfa\x76\x7e\x36\x5c\x52\x6e\x6b\xad" "\xd8\x90\xf6\x49\xdc\xce\xa1\xa6\xed\xdc\xda\xe1\x39\x19\x6e\xd9\xce" "\x5a\xe3\x76\xf5\x8f\xdb\xb7\xf3\xb9\x65\x6e\xe7\xf0\xb5\xcd\x5c\x53" "\xed\xcf\xf9\x78\x31\xd4\xf8\xf8\x7b\x8d\xfd\x34\xd2\xfc\x63\xbd\xb4" "\x9f\xb6\x86\xcb\xfe\xeb\xde\xa2\x28\x2e\x5f\xdb\xec\xf6\x65\x16\xad" "\xab\x18\x2a\x36\xb5\x5c\x32\x74\xed\xf9\x19\x2f\x8f\xc8\xfa\x7d\xd4" "\x0f\xa5\x17\x17\x23\x2b\x3a\x4e\xef\x5e\xc6\x71\x5a\x9f\x33\xdb\x5a" "\x8f\xd3\xf6\xd7\x44\x7c\xfe\xef\x0e\xb7\x1b\x59\x62\x1b\x9a\x9f\xa6" "\x1f\x7d\x66\x6c\xd1\xf3\xbe\xd2\xe3\x34\xaa\x3f\xea\xa5\x5e\x2b\xed" "\xc7\x60\xbf\x5f\x2b\x83\x72\x0c\xc6\xe3\xe2\x7b\x8d\x07\xfd\x78\xc7" "\x63\x70\x5b\x78\xfc\x9f\xde\xbe\xf4\x31\xd8\xf1\xd8\xe9\x70\x0c\xa6" "\xc7\xdd\x74\x0c\xde\xd3\xeb\x18\x1c\x1a\x1b\x6e\x6c\x73\x7a\x12\x6a" "\x8d\xdb\x5c\x3b\x06\x77\xb5\x2c\x3f\xdc\x58\x53\xad\x31\x9f\xde\xde" "\xfd\x18\x9c\xba\x70\xfa\xdc\xd4\xfc\x27\x3f\xf5\xda\xb9\xd3\xc7\x4e" "\xce\x9e\x9c\x3d\xb3\x67\xd7\xae\xe9\x3d\xfb\xf6\x1d\x38\x70\x60\xea" "\xc4\xdc\xa9\xd9\xe9\xf2\xef\xeb\xdc\xdb\x83\x6f\x53\x31\x94\x5e\x03" "\xf7\x84\x7d\x17\x5f\x03\xaf\x6e\x5b\xb6\xf9\x50\x5d\xf8\x5a\xff\x5e" "\x87\xe3\x5d\x5e\x87\x9b\xdb\x96\xed\xf7\xeb\x70\xa4\xfd\xc1\xd5\xd6" "\xe6\x05\xb9\xf8\x98\x2e\x5f\x1b\x0f\xd7\x77\xfa\xf8\x95\xa1\x62\x89" "\xd7\x58\xe3\xf9\xd9\xb9\xfa\xd7\x61\x7a\xdc\x4d\xaf\xc3\x91\xa6\xd7" "\x61\xc7\xaf\x29\x1d\x5e\x87\x23\xcb\x78\x1d\xd6\x97\x39\xb7\x73\x79" "\xdf\xb3\x8c\x34\xfd\xe9\xb4\x0d\x37\xea\x6b\xc1\xe6\xa6\x63\xb0\xfd" "\xfb\x91\xf6\x63\xb0\xdf\xdf\x8f\x0c\xca\x31\x38\x1e\x8e\x8b\x7f\xd9" "\xb9\xf4\xd7\x82\xad\x61\x7b\x1f\x9f\x5c\xe9\xf7\x23\xc3\x8b\x8e\xc1" "\xf4\x70\xc3\x7b\x4f\xfd\x92\xf4\xfd\xfe\xf8\x81\xc6\xe8\x74\x5c\xde" "\x55\xbf\xe2\x96\xb1\xe2\xe2\xfc\xec\xf9\xfb\x1f\x3d\x76\xe1\xc2\xf9" "\x5d\x45\x18\x6b\xe2\x25\x4d\xc7\x4a\xfb\xf1\xba\xa9\xe9\x31\x15\x8b" "\x8e\xd7\xa1\x15\x1f\xaf\x87\xe7\x5e\xf1\xf8\x5d\x1d\x2e\xdf\x1c\xf6" "\xd5\xf8\x6b\xeb\x7f\x8d\x2f\xf9\x5c\xd5\x97\xd9\x7b\x7f\xf7\xe7\xaa" "\xf1\xd5\xad\xf3\xfe\x6c\xb9\x74\x77\x11\x46\x9f\xad\xf5\xfe\xec\xf4" "\xd5\xbc\xbe\x3f\x53\x96\xec\xb2\x3f\xeb\xcb\x7c\x76\x6a\xf5\xdf\x8b" "\xa7\x5c\xda\xf4\xfe\x3b\xba\xc4\xfb\x6f\xcc\xfd\xcf\x97\xeb\x4b\x77" "\xf5\xd8\xf0\xe8\x48\xf9\xfa\x1d\x4e\x7b\x67\xb4\xe5\xfd\xb8\xf5\xa9" "\x1a\x69\xbc\x77\xd5\x1a\xeb\x7e\x6e\x6a\x79\xef\xc7\xa3\xe1\xcf\x5a" "\xbf\x1f\xdf\xde\xe5\xfd\x78\x4b\xdb\xb2\xfd\x7e\x3f\x1e\x6d\x7f\x70" "\xf1\xfd\xb8\xd6\xeb\xa7\x1d\xab\xd3\xfe\x7c\x8e\x87\xe3\xe4\xd4\x74" "\xf7\xf7\xe3\xfa\x32\x5b\x76\xaf\xf4\x98\x1c\xe9\xfa\x7e\x7c\x6f\x98" "\xb5\xb0\xff\x5f\x13\x92\x42\xca\x45\x4d\xc7\xce\x52\xc7\x6d\x5a\xd7" "\xc8\xc8\x68\x78\x5c\x23\x71\x0d\xad\xc7\xe9\x9e\x96\xe5\x47\x43\x36" "\xab\xaf\xeb\xc9\xdd\xd7\x77\x9c\xee\xb8\xb7\xbc\xaf\xe1\xf4\xe8\xae" "\x59\xab\xe3\x74\xa2\x6d\xd9\x7e\x1f\xa7\xe9\xfd\x6a\xa9\xe3\xb4\xd6" "\xeb\xa7\x6f\xd7\xa7\xfd\xf9\x1c\x0f\xc7\xc5\xed\x7b\xba\x1f\xa7\xf5" "\x65\x9e\xda\xbb\xfa\xf7\xce\x8d\xf1\xc3\xa6\xf7\xce\xb1\x5e\xc7\xe0" "\xe8\xf0\x58\x7d\x9b\x47\xd3\x41\x58\xbe\xdf\x2f\x6c\x8c\xc7\xe0\xfd" "\xc5\xf1\xe2\x6c\x71\xaa\x98\x69\x5c\x3b\xd6\x38\x9e\x6a\x8d\x75\x4d" "\x3e\xb0\xbc\x63\x70\x2c\xfc\x59\xeb\xf7\xca\x2d\x5d\x8e\xc1\x1d\x6d" "\xcb\xf6\xfb\x18\x4c\x5f\xc7\x96\x3a\xf6\x6a\x23\x8b\x1f\x7c\x1f\xb4" "\x3f\x9f\xe3\xe1\xb8\x78\xe2\x81\xee\xc7\x60\x7d\x99\x37\xef\xef\xef" "\xf7\xae\x3b\xc2\x25\x69\x99\xa6\xef\x5d\xdb\x7f\xbe\xb6\xd4\xcf\xbc" "\xee\x6a\xdb\x4d\x37\xf2\x67\x5e\xf5\xed\xfc\xeb\xfd\xdd\x7f\x36\x5b" "\x5f\xe6\xd4\x81\x95\xe6\xcc\xee\xfb\xe9\xbe\x70\xc9\x2d\x1d\xf6\x53" "\xfb\xeb\x77\xa9\xd7\xd4\x4c\xb1\x36\xfb\x69\x4b\xd8\xce\x67\x0e\x2c" "\xbd\x9f\xea\xdb\x53\x5f\xe6\xcb\x07\x97\x79\x3c\x1d\x2e\x8a\xe2\xd2" "\xc7\x1f\x6c\xfc\xbc\x37\xfc\xfb\xca\x9f\x5d\xfc\xfe\xb7\x5a\xfe\xdd" "\xa5\xd3\xbf\xe9\x5c\xfa\xf8\x83\xcf\xde\x7a\xe2\x6f\x56\xb2\xfd\x00" "\xac\x7f\xcf\x97\x63\x53\xf9\xb5\xae\xe9\x5f\xa6\x96\xf3\xef\xff\x00" "\x00\x00\xc0\xba\x10\x73\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\x7f\xfc\x5f\xe1\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x48\x98" "\x49\x26\xf9\x7f\xcb\x9b\x9f\x99\x7b\xfe\x52\x91\x9a\xf9\x0b\x41\xbc" "\x3e\xed\x86\x87\xca\xe5\x62\xc7\x75\x3a\x7c\x3e\xb1\x70\x4d\xfd\xf2" "\x07\xbf\x31\xfb\xd3\xbf\xb8\xb4\xbc\x75\x0f\x15\x45\xf1\xb3\x87\x7e" "\xa3\xe3\xf2\x5b\x1e\x8a\xdb\x55\x9a\x08\xdb\x79\xf5\x2d\xad\x97\x2f" "\xbe\xe1\xa5\x65\xad\xff\xe8\x23\xd7\x96\x6b\xee\xaf\x7f\x35\xdc\x7f" "\x7c\x3c\xcb\x3d\x0c\x3a\x55\x70\xa7\x8b\xa2\xf8\xce\x6d\x5f\x6c\xac" "\x67\xe2\x43\x57\x1a\xf3\xa9\x87\x8e\x36\xe6\xfb\x2e\x3f\xfe\x58\x7d" "\x99\xe7\x0e\x96\x9f\xc7\xdb\x3f\xfd\x92\x72\xf9\xdf\x0f\xe5\xdf\xc3" "\x27\x8e\xb5\xdc\xfe\xe9\xb0\x1f\x7e\x18\xe6\xf4\x3b\x3a\xef\x8f\x78" "\xbb\x6f\x5e\x79\xcd\xd6\xfd\x1f\xb8\xb6\xbe\x78\xbb\xda\x3d\x2f\x6c" "\x3c\xec\x27\x3e\x5c\xde\x6f\xfc\x3d\x39\x5f\x7a\xac\x5c\x3e\xee\xe7" "\xa5\xb6\xff\x2f\xbf\xf0\xe4\x37\xeb\xcb\x3f\xfa\xaa\xce\xdb\x7f\x69" "\xa8\xf3\xf6\x3f\x19\xee\xf7\x1b\x61\xfe\xf7\xcb\xcb\xe5\x9b\x9f\x83" "\xfa\xe7\xf1\x76\x9f\x0b\xdb\x1f\xd7\x17\x6f\x77\xff\xd7\xbf\xdb\x71" "\xfb\xaf\x7e\xbe\x5c\xfe\xdc\x5b\xcb\xe5\x8e\x86\x19\xd7\xbf\x23\x7c" "\xbe\xed\xad\xcf\xcc\x35\xef\xaf\x47\x6b\xc7\x5a\x1e\x57\xf1\xb6\x72" "\xb9\xb8\xfe\xe9\xef\xff\x76\xe3\xfa\x78\x7f\xf1\xfe\xdb\xb7\x7f\xfc" "\xc8\x95\x96\xfd\xd1\x7e\x7c\x3c\xf5\x4f\xe5\xfd\x4c\xb5\x2d\x1f\x2f" "\x8f\xeb\x89\xfe\xbc\x6d\xfd\xf5\xfb\x69\x3e\x3e\xe3\xfa\x9f\xfc\xad" "\xa3\x2d\xfb\xb9\xd7\xfa\xaf\xbe\xef\xe9\x97\xd7\xef\xb7\x7d\xfd\xf7" "\xb5\x2d\x37\xdc\x76\xfb\xf6\xdf\xd8\xf4\x07\x9f\xfb\x62\xc7\xf5\xc5" "\xed\x39\xfc\xa7\xe7\x5a\x1e\xcf\xe1\xf7\x86\xd7\x71\x58\xff\x13\x1f" "\x0e\xc7\x63\xb8\xfe\x7f\xae\x7e\xb1\x65\xbd\xd1\xd1\xf7\xb6\xbe\xff" "\xc4\xe5\xbf\xba\xf9\x52\xcb\xe3\x89\xde\xfe\x93\x72\xfd\x57\xdf\x70" "\xb2\x31\xff\x7d\xe2\xa7\xbf\x77\xcb\x0b\x6e\x7d\xe1\xe5\x57\xd6\xf7" "\x5d\x51\x7c\xef\xfd\xe5\xfd\xf5\x5a\xff\xc9\x3f\x3c\xdb\xb2\xfd\x5f" "\xbb\x63\x67\xe3\xf9\x88\xd7\xc7\x8e\x7e\xfb\xfa\x97\x12\xd7\x7f\xfe" "\x13\x93\x67\xce\xce\x5f\x9c\x9b\x69\xda\xab\x8d\xdf\x9d\xf3\xce\x72" "\x7b\x36\x8c\x6f\xdc\x54\xdf\xde\xdb\xc2\x7b\x6b\xfb\xe7\x47\xce\x5e" "\xf8\xc8\xec\xf9\x89\xe9\x89\xe9\xa2\x98\xa8\xee\xaf\xd0\xbb\x6e\x5f" "\x0f\xf3\xd9\x72\x5c\x5e\xe9\xed\x77\x3e\x12\x9e\xcf\xbb\x7e\xf7\x3b" "\x9b\xb6\xff\xe3\x17\xe2\xe5\xff\xfc\x70\x79\xf9\x95\x77\x94\x5f\xb7" "\x5e\x1d\x96\xfb\x52\xb8\x7c\x73\xf9\xfc\x2d\xd4\x56\xb9\xfe\x27\xee" "\xbe\xa3\xf1\xfa\xae\x3d\x55\x7e\xde\xd2\x63\xef\x83\xad\xdb\xfe\xe3" "\xc0\xb2\x16\x0c\x8f\xbf\xfd\xfb\x82\x78\xbc\x9f\x7b\xe9\x47\x1a\xfb" "\xa1\x7e\x5d\xe3\xeb\x46\x7c\x5d\xaf\x72\xfb\x7f\x30\x53\xde\xcf\xb7" "\xc3\x7e\x5d\x08\xbf\x99\xf9\x9e\x3b\xae\xad\xaf\x79\xf9\xf8\xbb\x11" "\xae\xbc\xbf\x7c\xbd\xaf\x7a\xff\x85\xb7\xb9\xf8\xbc\xfe\x71\x78\xbe" "\xdf\xf5\xc3\xf2\xfe\xe3\x76\xc5\xc7\xfb\x83\xf0\x7d\xcc\x77\xb7\xb4" "\xbe\xdf\xc5\xe3\xe3\xdb\x97\x86\xda\xef\xbf\xf1\x5b\x3c\x2e\x87\xf7" "\x93\xe2\x72\x79\x7d\x5c\x2a\xee\xef\x2b\xcf\xdd\xd1\x71\xf3\xe2\xef" "\x21\x29\x2e\xdf\xd9\xf8\xfc\x77\xd2\xfd\xdc\xb9\xa2\x87\xb9\x94\xf9" "\x4f\xce\x4f\x9d\x9a\x3b\x73\xf1\xd1\xa9\x0b\xb3\xf3\x17\xa6\xe6\x3f" "\xf9\xa9\x23\xa7\xcf\x5e\x3c\x73\xe1\x48\xe3\x77\x79\x1e\xf9\x68\xaf" "\xdb\x5f\x7b\x7f\xda\xd4\x78\x7f\x9a\x99\xdd\xb7\xb7\x98\xde\x58\x14" "\xc5\xd9\x62\x7a\x0d\xde\xb0\x6e\xcc\xf6\xd7\x3f\x5a\xde\xf6\x9f\x7b" "\xe4\xf8\xcc\xfe\xe9\xed\x33\xb3\x27\x8e\x5d\x3c\x71\xe1\x91\x73\xb3" "\xe7\x4f\x1e\x9f\x9f\x3f\x3e\x3b\x33\xbf\xfd\xd8\x89\x13\xb3\x9f\xe8" "\x75\xfb\xb9\x99\x43\xbb\x76\x1f\xdc\xb3\x7f\xf7\xe4\xc9\xb9\x99\x43" "\x07\x0e\x1e\xdc\x73\x70\x72\xee\xcc\xd9\xfa\x66\x94\x1b\xd5\xc3\xbe" "\xe9\x8f\x4d\x9e\x39\x7f\xa4\x71\x93\xf9\x43\x7b\x0f\xee\x7a\xe0\x81" "\xbd\xd3\x93\xa7\xcf\xce\xcc\x1e\xda\x3f\x3d\x3d\x79\xb1\xd7\xed\x1b" "\x5f\x9b\x26\xeb\xb7\xfe\xf5\xc9\xf3\xb3\xa7\x8e\x5d\x98\x3b\x3d\x3b" "\x39\x3f\xf7\xa9\xd9\x43\xbb\x0e\xee\xdb\xb7\xbb\xe7\x6f\x03\x3c\x7d" "\xee\xc4\xfc\xc4\xd4\xf9\x8b\x67\xa6\x2e\xce\xcf\x9e\x9f\x2a\x1f\xcb" "\xc4\x85\xc6\xc5\xf5\xaf\x7d\xbd\x6e\x4f\x35\xcd\xff\x6b\xf9\xfd\x6c" "\xbb\x5a\xf9\x8b\xf8\x8a\x77\xdf\xb7\x2f\xfd\x7e\xd6\xba\x6f\x7c\x66" "\xc9\xbb\x2a\x17\x69\xfb\x05\xa2\xcf\x84\xdf\x45\xf3\xf7\x2f\x3a\x77" "\x60\x39\x9f\xc7\xdc\x3f\x1a\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x21\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x3c\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xbf\xbc\xfe\x7f\x79\xbd\xfe\x7f\x5e\xfd\xff\x73\x1f\x2f\x7b\xa5" "\xeb\xbd\xff\x1f\xfb\xf3\xfa\xff\x79\xb8\xc9\xfd\xff\x55\xaf\x5f\xff" "\x5f\xff\xbf\x7a\xfd\xff\xe5\xf7\xe7\xd7\xfb\xf6\xeb\xff\xeb\xff\xb3" "\xd8\xa0\xf5\xff\x63\xee\xdf\x58\x14\x59\xe6\x7f\x00\x00\x00\xc8\x41" "\xcc\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x09\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x41\x98\x49\x26\xf9\x3f\x87" "\xfe\xff\x7b\x3a\x2c\xb6\xc2\xfe\xff\xee\x5e\x85\xab\xea\xf7\xff\xd7" "\xcd\xf9\xff\x37\x16\xfa\xff\xfa\xff\xcd\xfd\xff\xf8\xe4\xe8\xff\x67" "\x63\xc5\xfd\xfb\x0f\x3c\xdc\xf2\xa9\xfe\x7f\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xcf\xaa\x8d\x2e\x79\xcd\xcd\xea\xff\xc7\xdc\x7f\x6b" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x0b\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xdf\x1c\x66\x92\x49\xfe\xcf\xa1\xff\xdf\x89\xf3\xff\x57\xb6" "\xff\xef\xfc\xff\xfa\xff\xfd\x3d\xff\x7f\xd3\xc6\xe8\xff\xaf\x0f\xce" "\xff\xdf\x5d\xe7\xfe\xff\xd8\x2d\x8b\x2e\xd2\xff\x5f\x61\xff\x7f\x5c" "\xff\x7f\x3d\xf6\xff\x47\xfb\xbb\xfd\x83\xdd\xff\xef\xb9\xf9\xfa\xff" "\xdc\x10\x83\x76\xfe\xff\x98\xfb\x5f\x14\x66\x92\x49\xfe\x07\x00\x00" "\x80\x1c\xc4\xdc\xff\xe2\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x97\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x1e\x66\x92\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\xfe\xde\xe7\xff" "\x2f\x3f\xd2\xff\x1f\x2c\xfa\xff\xdd\x39\xff\x7f\x0f\xce\xff\x9f\x57" "\xff\xbf\xcf\xdb\x3f\xd8\xfd\xff\x7e\x9f\xff\x7f\xf4\x2d\xed\xb7\xd7" "\xff\xa7\x93\x41\xeb\xff\xc7\xdc\xff\xd2\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x5f\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x25\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xfd\xbd\xfb\xff" "\x25\xfd\xff\xc1\xa2\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff" "\xcb\xeb\xff\x77\xf8\xe6\x57\xff\x9f\x4e\x7a\xf5\xff\x1f\x7c\x7d\xf9" "\x3e\xbd\x56\xfd\xff\x98\xfb\xef\x0c\x33\xc9\x24\xff\x03\x00\x00\x40" "\x0e\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xff" "\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x0d\x33\xc9\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xe7\xd5\xff\xbf\x6f\x4c\xff\x5f\xff\xbf\xda" "\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x7f\x99\xe7\xff\x5f" "\x6c\x25\xfd\xff\x0d\xbd\xee\x8c\xca\xe8\xd5\xff\x7f\xf7\x7d\xfb\x1a" "\x6f\x81\xed\xfd\xff\x0e\xf9\xaa\x2f\xfd\xff\x98\xfb\x5f\x1e\x66\x92" "\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x8a\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x57\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x4f\x84\x99\x64\x92\xff\xf5\xff\xab\xd5\xff\xff\x93\xbf\x7a\xe2\x95" "\x85\xfe\xbf\xfe\x7f\x8f\xf5\x57\xb4\xff\x1f\x0f\x03\xfd\xff\xcc\xe9" "\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xff\x9a\xf4\xff\xc9\xc7" "\xf5\xf6\xff\x3b\xe8\x4b\xff\x3f\xe6\xfe\xbb\xc3\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x5b\x98\x49" "\x26\xf9\x5f\xff\xbf\x5a\xfd\xff\x48\xff\x5f\xff\xbf\xdb\xfa\x2b\xda" "\xff\x4f\xf4\xff\xf3\xa6\xff\xdf\x41\xd3\x8b\x54\xff\xbf\x07\xfd\x7f" "\xfd\xff\xec\xfb\xff\xf1\xbb\x5f\xfd\x7f\xfa\x63\xd0\xfa\xff\x31\xf7" "\xbf\x2a\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f\x7b\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xab\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x77\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x7d\xd2\xff\xef\x6e\xa5\xfd\xff\x31" "\xfd\x7f\xfd\x7f\xfd\xff\xcc\xfa\xff\xce\xff\x4f\x7f\x0d\x5a\xff\x3f" "\xe6\xfe\xd7\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xef\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x32\xe2\xff\xdf\x2c\xff\xdf\xab\xfc\x0f" "\x00\x00\x00\x55\x14\x73\xff\x64\x98\x49\x26\xf9\x5f\xff\x5f\xff\x3f" "\xa7\xfe\x7f\x4d\xff\x5f\xff\x5f\xff\xbf\xf2\xf4\xff\xbb\x73\xfe\xff" "\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\xff" "\xda\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xfb\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xa7\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x39\xf5\xff\x9d" "\xff\x5f\xff\x5f\xff\xbf\xfa\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff" "\xbf\x6a\xfd\xff\xa2\xd0\xff\xe7\xa6\x1a\xb4\xfe\x7f\xcc\xfd\xbb\xc2" "\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x77\x87\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xdf\x1b\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xef\xbc\x7e\xfd\xff\xf5\xa9\x5b\xff\xfe\x2b\xcb\xb8\xbd\xfe\x7f\xa0" "\xff\xaf\xff\xaf\xff\x5f\x8d\xfe\xbf\xf3\xff\x73\x93\x0d\x5a\xff\x3f" "\xe6\xfe\x07\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xf7\x85" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\x09\xf9\xbf\xd3" "\xff\xeb\x06\x00\x00\x00\xd6\x97\x98\xfb\x0f\x84\x99\x64\xf2\xef\xff" "\xfa\xff\x15\xe9\xff\xff\xe6\xdf\xb5\xac\x5b\xff\x5f\xff\xbf\xdb\xfa" "\xfb\xd3\xff\xdf\xa8\xff\x1f\xa6\xfe\xff\x60\xa9\xe8\xf9\xff\xdb\x5f" "\x16\xd7\x6d\x7d\xf6\xff\x9f\x4f\x8f\x5f\xff\x5f\xff\x7f\x90\xb7\x5f" "\xff\x5f\xff\x9f\xc5\x06\xad\xff\x1f\x73\xff\xc1\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xff\xff\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd7\x87" "\x99\x64\x92\xff\xf5\xff\x2b\xd2\xff\x6f\xa3\xff\xaf\xff\xdf\x6d\xfd" "\xce\xff\xaf\xff\x5f\x65\x15\xed\xff\xf7\xcd\xfa\xec\xff\x2f\x71\xfe" "\xff\x21\xfd\x7f\xfd\xff\xd5\x6f\xff\x58\x1f\xb7\x5f\xff\x7f\x39\xfd" "\xff\x0d\xbd\xee\x86\x8a\xb9\xf1\xfd\xff\xf8\xd1\xf2\xfa\xff\x31\xf7" "\x1f\x0a\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\xb9\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x37\x84\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\x1f\x0e\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xdf\x98\xfe\xff\x1b\x8a\x76\x83\xd8\xff\xaf\x1f\x3c\xfa\xff\xd5" "\xa2\xff\xdf\x5d\xa5\xfa\xff\xce\xff\xaf\xff\x3f\x60\xdb\xaf\xff\xef" "\xfc\xff\x2c\x36\x68\xe7\xff\x8f\xb9\xff\x8d\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xcd\x61\x26" "\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xe7\xff\xef\xbc\x7e\xfd" "\xff\xf5\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xab\x9b\xd7\xff\xdf\xd0\xf1\xfa\x98\xfb\xdf\x12\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x3d" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\x5f\xcd\xfe\xff\x86\x2e\xeb" "\xd7\xff\xd7\xff\xaf\x32\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7" "\xff\xd7\xff\xa7\xaf\x06\xed\xfc\xff\x31\xf7\xff\x7c\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x43\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x67" "\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x9a\xfd\xff\x6e\xeb\xd7" "\xff\xd7\xff\xaf\x32\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\xbb\xc2\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\x7f\x21\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xdd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x09\x33" "\xc9\x24\xff\xf7\xa7\xff\x5f\x2b\xca\x56\xab\xfe\x7f\x33\xfd\xff\xeb" "\xe9\xff\x2f\x5c\x6a\xbe\x9d\xfe\xbf\xfe\x7f\xd1\xaf\xfe\x7f\xfd\x46" "\xfa\xff\x59\xd0\xff\xef\x4e\xff\xbf\x87\x0e\xfd\xff\x0d\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x5c\xb7\x41\xeb\xff\xc7\xdc\xff\xde\x30\x93\x4c" "\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\xe1\x30\x93\x4c\xf2\xbf\xf3\xff\x67\xd9\xff\x4f\x0f\x79\xf0\xfa\xff" "\xce\xff\xaf\xff\xef\xfc\xff\xfa\xff\xab\xa3\xff\xdf\x9d\xfe\x7f\x0f" "\xce\xff\xaf\xff\xbf\x2e\xfb\xff\xa3\x61\x7e\x6c\x32\x7e\x6d\xd2\xff" "\x67\x50\x0c\x5a\xff\x3f\xe6\xfe\x47\xc2\x4c\x32\xc9\xff\x00\x00\x00" "\x90\x83\x98\xfb\x3f\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff" "\x8b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x1f\x0c\x33\xc9\x24" "\xff\xeb\xff\x67\xd9\xff\x1f\xe0\xf3\xff\x57\xad\xff\x3f\xd2\x72\x7c" "\xe4\xd4\xff\x1f\x6f\x7a\x3e\xd3\x71\xa9\xff\xaf\xff\xbf\x06\xf4\xff" "\xbb\xd3\xff\xef\x41\xff\x5f\xff\x7f\x90\xfb\xff\xe1\x68\xde\xb8\xc4" "\xed\x9d\xff\x9f\x41\x34\x68\xfd\xff\x98\xfb\x3f\x14\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\x4b\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xbf\x1c\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x2b" "\x61\x26\x99\xe4\xff\x2c\xfa\xff\x43\x8b\x17\xd3\xff\xd7\xff\x6f\xde" "\x5f\xce\xff\xef\xfc\xff\x9d\xd6\xaf\xff\xbf\x3e\xe9\xff\x77\xa7\xff" "\xdf\x83\xfe\x7f\x3e\xfd\xff\x91\xfe\x6f\xff\xcd\x3b\xff\x7f\x49\xff" "\x9f\x41\x34\x68\xfd\xff\x98\xfb\x7f\x35\xcc\x64\xc9\xe0\xf7\xec\x7f" "\x2e\xe3\x61\x02\x00\x00\x00\x03\x24\xe6\xfe\x0f\x87\x99\x64\xf2\xef" "\xff\x00\x00\x00\x90\x83\x98\xfb\x8f\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x1f\x0d\x33\xc9\x24\xff\x67\xd1\xff\xef\x60\xe9\xfe\x7f" "\x3c\xa3\xaa\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x7a\xd4\xbf\xfe" "\xff\xcb\x6e\x2d\x0a\xfd\x7f\xfd\x7f\xfd\xff\xca\xf6\xff\x6f\xc0\xf6" "\xeb\xff\xeb\xff\xb3\xd8\xa0\xf5\xff\x63\xee\x3f\x16\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x67\xc2" "\x4c\x32\xc9\xff\x6b\xdd\xff\x6f\xea\xf5\x8e\x0e\x66\xff\xdf\xf9\xff" "\xaf\xb7\xff\xff\x33\xfd\x7f\xfd\xff\x40\xff\xbf\x33\xfd\xff\xb5\xe1" "\xfc\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d" "\x5a\xff\x3f\xe6\xfe\xd9\x30\x93\x4c\xf2\x3f\x00\x00\x00\x54\x58\xfa" "\x71\x70\xcc\xfd\x27\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f" "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x24\xcc\x24\x93\xfc" "\xef\xfc\xff\xfa\xff\xce\xff\x7f\x33\xfa\xff\x23\x2d\xcb\xeb\xff\x97" "\xf4\xff\xf5\xff\xfb\x41\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5" "\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\x3f\x17\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x8f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x9f\x0a\x33" "\xc9\x24\xff\xeb\xff\xeb\xff\xe7\xde\xff\xaf\x15\xc5\x65\xe7\xff\xd7" "\xff\xef\xb4\x7e\xfd\xff\xf5\x49\xff\xbf\xbb\xff\x63\xef\x3e\x9a\xe4" "\x3a\xab\x3f\x8e\xb7\x6d\xa5\x59\xc1\x4b\x60\xcd\x8a\xa5\x59\xd9\x0b" "\x5e\x00\x5b\x76\x54\xb1\x36\xd1\xe4\x60\x99\x9c\xc1\x44\x93\xc1\x80" "\xc9\x39\x67\x93\x73\xce\xd9\xe4\x1c\x4d\x30\x86\xaa\xa1\x3c\x3e\xe7" "\x48\xa3\xee\xb9\x3d\xd2\x5c\x75\xdf\xfb\x3c\x9f\xcf\xe6\xfc\xa5\xbf" "\xc5\xb4\xf0\x60\xea\x87\xea\x5b\x8f\xfe\x7f\x0d\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\x54\x53\xeb\xff\x73\xf7\x5f\x15\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xef\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xf7\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xfb\xc7\x2d\x9d\xec" "\x7f\xfd\xbf\xfe\xbf\xf7\xfe\x7f\xb1\x95\xf7\xff\xf7\xff\xf5\xed\xf7" "\xff\x77\xfc\x1d\xd2\xff\xeb\xff\x37\x61\xa9\xbf\x3f\xb6\xfa\xaf\x3b" "\x28\x0a\x3f\xb0\xff\xbf\xdb\xe5\x57\xdf\x5b\xff\xaf\xff\xd7\xff\x0f" "\xd2\xff\xeb\xff\xf5\xff\x9c\x6b\x6a\xfd\x7f\xee\xfe\x07\xc4\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x07\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x83\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xea" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xfa\xff\x9b\xbc" "\xff\xaf\xff\x9f\x37\xef\xff\x0f\x9b\x47\xff\x7f\xf9\xee\xee\xae\xfe" "\x7f\x15\xfd\xff\xb4\x3f\xbf\xfe\x5f\xff\xcf\xb2\xa9\xf5\xff\xb9\xfb" "\x1f\x1c\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x12\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x8d\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x87\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x3f\x97\xfe" "\xff\xc4\x8c\xdf\xff\x8f\xef\x07\xfd\xbf\xfe\x7f\x03\xf4\xff\xc3\xe6" "\xd1\xff\x7b\xff\x5f\xff\x3f\xcf\xcf\xaf\xff\xd7\xff\xb3\xec\xfc\xfb" "\xff\x03\xff\xb1\x3d\x4a\xff\x9f\xbb\xff\xe1\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x11\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xc8\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x54\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\x73\xe9\xff\x37\xf4\xfe\xbf\xfe\x5f\xff" "\x3f\x73\x37\x2c\xce\xfc\x33\x41\xff\xbf\x4c\xff\xbf\xc6\x9a\xfe\x7f" "\xb1\xd0\xff\x0f\x39\x74\x3f\xbf\xfa\xb7\x37\x9f\xcf\x7f\x00\xfd\xbf" "\xfe\x9f\x65\xe7\xdf\xff\x1f\xf8\x2f\x35\x4a\xff\x9f\xbb\xff\xd1\x71" "\xcb\x95\x8b\xc5\x89\x0b\xfd\x4d\x02\x00\x00\x00\x93\x92\xbb\xff\x31" "\x71\x4b\x27\x7f\xfe\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x4d\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x9f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x5f\xfd\xf5\xf5\xff\xf3\xe4\xfd\xff\x61\x47\xef" "\xff\xef\x7a\xe7\xab\xee\xd3\x6f\xff\xef\xfd\xff\x61\xde\xff\x1f\xbb" "\xff\xbf\xfd\x3b\xa3\xc9\xfe\x5f\x66\xdd\x91\xa9\xf5\xff\xb9\xfb\xaf" "\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\x8d\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xe3\xe3\x96\x4e\xf6\xbf\xfe\x7f\x5a\xfd\x7f\xe6\x2e\x17\xde" "\xff\x5f\xb6\xef\xd7\x9d\xd5\xff\xef\xd5\x2e\xfa\xff\xb9\xf7\xff\xf7" "\xd0\xff\xeb\xff\xf5\xff\x6b\xe8\xff\x87\x79\xff\x7f\x8d\xbd\x7f\xcc" "\xed\xd4\x0f\xf5\xff\xfa\x7f\xef\xff\x7b\xff\x9f\xa3\x99\x5a\xff\x9f" "\xbb\xff\x09\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x89\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x72\xdc\xd2\xc9\xfe\xd7\xff\x4f\xab\xff\xf7\xfe" "\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\xd1\xe8\xff\x87\xe9\xff\xd7\x68" "\xe5\xfd\xff\x0b\xfc\xae\xd9\x76\x3f\x7f\x54\xdb\xfe\xfc\xfa\x7f\xfd" "\x3f\xcb\xa6\xd6\xff\xe7\xee\x7f\x4a\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\x7f\x6a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2d" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x1e\xb7\x74\xb2\xff\xf5" "\xff\xfa\xff\x79\xf4\xff\xf9\x15\xf4\xff\xfa\xff\x8b\xdf\xff\x27\xfd" "\xff\x3c\xe9\xff\x87\xe9\xff\xd7\x68\xa5\xff\xbf\x40\xdb\xee\xe7\xe7" "\xfe\xf9\xf5\xff\xfa\x7f\x96\x4d\xad\xff\xcf\xdd\xff\x8c\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x3b" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xf3\xe8\xff\xbd\xff\xaf\xff\xf7\xfe" "\xbf\xfe\xff\x70\xf4\xff\xc3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\xa3\x9a\x5a\xff\x9f\xbb\xff\xba\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\xff\x9c\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x6e" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2f\x6e\xe9\x64\xff\xeb" "\xff\x57\xf5\xff\xb7\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xa6\xf4" "\xff\xc3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa3\x9a\x50\xff" "\x7f\xd6\xaf\x3a\xb5\x78\x7e\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4" "\xee\x7f\x41\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x30\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xaf\x8f\x5b\x3a\xd9\xff\xfa\xff\xc9" "\xbc\xff\xbf\x97\xf3\xb5\xd5\xff\xef\x2c\x16\x0b\xfd\xff\xa2\xd3\xfe" "\x7f\xe7\xac\xbf\x9f\xf5\x7d\xa9\xff\xd7\xff\x6f\x80\xfe\x7f\x98\xfe" "\x7f\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x54\x13\xea\xff\xf7\x7e\x9c" "\xbb\xff\x45\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc5\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x92\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x69\xdc\xd2\xc9\xfe\xd7\xff\x4f\xa6\xff\xdf\xd3" "\x56\xff\xef\xfd\xff\x73\xbf\x3f\x7a\xea\xff\xbd\xff\xbf\x4c\xff\xbf" "\x19\xfa\xff\x61\xfa\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x51\x4d" "\xad\xff\xcf\xdd\xff\xb2\xb8\xe9\xc4\xf1\x0b\xfe\x2d\x02\x00\x00\x00" "\x13\x93\xbb\xff\xe5\x71\x4b\x27\x7f\xfe\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x99\xba\x6e\xe9\x67\x72\xf7\xbf" "\x32\x6e\xe9\x64\xff\xeb\xff\xc7\xed\xff\x4f\x9c\xf5\x73\xfa\x7f\xfd" "\xff\xb9\xdf\x1f\xfa\x7f\xfd\xbf\xfe\xff\xe2\xd3\xff\x0f\xd3\xff\xaf" "\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x8c\x6a\x6a\xfd\x7f\xee\xfe\x57\xc5" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x9a\xb8\xa5\x93\xfd\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\x5f" "\xfd\xf5\xf5\xff\xf3\xa4\xff\x1f\xa6\xff\x5f\x43\xff\x7f\x60\x3f\x7f" "\x98\xa7\xb1\xf5\xff\x47\xee\xff\x4f\x9e\xf9\x3f\xf5\xff\xb4\xe1\x3c" "\xfa\xff\xdd\xdd\xdd\x6b\x2e\x7a\xff\x9f\xbb\xff\xb5\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3e\x6e" "\xe9\x64\xff\xeb\xff\x3b\xed\xff\xf3\x5b\x7d\x5e\xfd\xff\xe9\xc5\x62" "\x92\xfd\xff\xa5\xfa\xff\xfd\xf4\xff\xab\xe9\xff\x37\x43\xff\x3f\x4c" "\xff\xbf\x86\xfe\xdf\xfb\xff\xde\xff\xd7\xff\x33\xaa\xa9\xbd\xff\x9f" "\xbb\xff\x0d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x8d\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa6\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x73\xdc\xd2\xc9\xfe\xd7\xff\x77\xda\xff\x7b\xff" "\xdf\xfb\xff\xfa\xff\x4d\xf7\xff\xb7\x2d\xf4\xff\x1b\x31\x8b\xfe\x7f" "\xe7\xe0\xaf\x3f\xf5\xfe\xff\x5a\xfd\xbf\xfe\x7f\x40\x77\xfd\xff\x3d" "\xef\xbe\xef\x87\xfa\x7f\xfd\x3f\xcb\xa6\xd6\xff\xe7\xee\x7f\x4b\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6b\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xbf\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\xdf\x1e\x37\x1d\xeb\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xf5\xd7\xdf\xf0\xfb\xff\x27\x16\x8b\x85\xfe\x7f\x04\xb3\xe8\xff\x07" "\x4c\xbd\xff\x1f\xe7\xfd\xff\x73\xff\x53\x7e\x86\xfe\x5f\xff\x3f\xe7" "\xcf\xaf\xff\xd7\xff\xb3\x6c\x6a\xfd\x7f\xee\xfe\x77\xc4\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xbb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xdd\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x9b\xef\xff\xaf\x9d\x45" "\xff\xef\xfd\xff\x91\xe8\xff\x87\x4d\xa3\xff\x3f\x98\xfe\x5f\xff\x3f" "\xe7\xcf\xaf\xff\xd7\xff\x73\x78\xdb\xea\xff\x73\xf7\xbf\x27\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef" "\x8f\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\xf9\xf4\xff\xf9\x39\xf5\xff\x6d" "\xf5\xff\x27\x27\xd7\xff\x9f\xda\xf7\xaf\xd7\xc9\xfb\xff\xfa\xff\x91" "\xe8\xff\x87\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xd7\xe9\xff\x19\xd3" "\xd4\xde\xff\xcf\xdd\xff\x81\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xc1\xb8\xf5\x3f\xdd\xda\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f" "\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc7\x2d\x9d\xec\x7f" "\xfd\xbf\xfe\xdf\xfb\xff\xfa\xff\xe6\xdf\xff\xd7\xff\x77\x45\xff\x3f" "\x4c\xff\xbf\x86\xfe\x5f\xff\xaf\xff\xf7\xfe\x3f\xa3\x9a\x5a\xff\x9f" "\xbb\xff\x23\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xa3\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb1\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xbf\x29\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\xff\x8e\xbf\x87\xfa\xff\x36\xe8\xff\x87\x6d\xa6\xff\xdf\xd1" "\xff\xeb\xff\xab\x9f\xbf\x24\xfe\x53\xa0\xff\xd7\xff\xaf\xfb\xf5\xb4" "\x69\x6a\xfd\x7f\xee\xfe\x8f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\x68\xcd" "\xf1\x15\x3f\x97\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x59\x3a\xb6\xe2\xe7\x72\xf7\x7f" "\x2a\x6e\x99\xe5\xfe\x5f\x55\xa1\x0f\xd3\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\xea\xaf\xaf\xff\x9f\xa7\xad\xf4\xff\xf9\x4d\xa1\xff\xf7\xfe" "\x7f\xe8\xa7\xff\xbf\xcb\xbe\x1f\xcd\xed\xfd\xff\x73\xff\xfb\xeb\xb2" "\x85\xfe\x5f\xff\xcf\xd8\xa6\xd6\xff\xe7\xee\xff\x74\xdc\x32\xcb\xfd" "\x0f\x00\x00\x00\xac\x92\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5c\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xaf\xaf\xff" "\x9f\xa7\xd1\xfa\xff\x93\x0b\xef\xff\xeb\xff\xf5\xff\x1b\x7e\x3f\x7f" "\xee\x9f\x5f\xff\xaf\xff\x67\xd9\xd4\xfa\xff\xdc\xfd\x9f\x8f\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x88\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x63\x6f\xf7\x67" "\x5c\xd6\xe1\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xaf\xaf" "\xff\x9f\xa7\xad\xbc\xff\xaf\xff\xd7\xff\xeb\xff\xf7\xe8\xff\xf5\xff" "\xfa\x7f\xce\x35\xb5\xfe\xff\x4b\x7b\xbf\xea\xd4\xe2\xcb\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x2b\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xd5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5a" "\xdc\xd2\xc9\xfe\xd7\xff\xef\x6b\xcf\x4f\xeb\xff\xa7\xda\xff\xef\xee" "\xee\x5e\xa3\xff\xbf\x64\x71\x95\xfe\x7f\x65\xff\x7f\xf3\x8c\xfb\xff" "\xeb\xf5\xff\x23\xd3\xff\x0f\xeb\xb8\xff\x3f\x76\xa8\x0f\xa0\xff\xd7" "\xff\x4f\xbe\xff\x3f\xf7\xbf\x25\xcf\xd0\xff\x33\x45\x53\xeb\xff\x73" "\xf7\x7f\x3d\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x23\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x19\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xdf\x8a\x5b\x3a\xd9\xff\xfa\xff\x09\xbc\xff\x7f\x4a" "\xff\xef\xfd\x7f\xef\xff\x2f\xbc\xff\xaf\xff\x1f\x89\xfe\x7f\x58\xc7" "\xfd\xff\xe1\xb4\xd8\xff\x9f\x3a\xfc\x6f\x7f\xdb\xfd\xfc\x51\x6d\xfb" "\xf3\x7b\xff\x5f\xff\xcf\xb2\xa9\xf5\xff\xb9\xfb\xbf\x1d\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc5" "\x2d\x9d\xec\x7f\xfd\xff\xe6\xfa\xff\xdb\xff\xbd\xeb\xe5\xfd\xff\x9d" "\xc5\xea\xcf\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x17\x9b\xfe\x7f\x98\xfe" "\x7f\x8d\x16\xfb\xff\xf3\xb0\xed\x7e\x7e\xee\x9f\x5f\xff\xaf\xff\x67" "\xd9\xd4\xfa\xff\xdc\xfd\xdf\x8f\x5b\xf6\x0f\xbf\xe3\xe7\xf7\xbb\x04" "\x00\x00\x00\xa6\x24\x77\xff\x0f\xe2\x96\x4e\xfe\xfc\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa3" "\xb8\xa5\x93\xfd\xaf\xff\x9f\xc0\xfb\xff\x0d\xf6\xff\xde\xff\x5f\xfd" "\xfd\xa1\xff\x9f\x74\xff\x7f\xa9\xfe\xbf\x0d\xfa\xff\x61\xfa\xff\x35" "\xf4\xff\xfa\x7f\xfd\xff\x48\xfd\x7f\x7e\x37\xeb\xff\x7b\x37\xb5\xfe" "\x3f\x77\xff\x8f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4f" "\xe2\x96\x2b\x77\xb6\xf5\x91\x00\x00\x00\x80\x91\xe5\xee\xff\x69\xdc" "\xe2\xcf\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8e\x5b\xce\xda\xff\xab" "\xda\xee\x56\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf5\xd7\xd7\xff" "\xcf\x93\xfe\x7f\xd8\x61\xfb\xff\x93\x8b\xa3\xf5\xff\x49\xff\xaf\xff" "\xd7\xff\xf7\xda\xff\x7b\xff\x9f\x3b\x6c\xb8\xff\x3f\xbd\xae\xff\xcf" "\xdd\xff\xb3\xb8\xc5\x9f\xff\x03\x00\x00\xc0\xec\x1c\x3f\xe0\xe7\x73" "\xf7\xff\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x11\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\x6e\xb9\x74\x5b\x1f\x69" "\xa3\xf4\xff\xfa\x7f\xfd\xff\x9a\xfe\xff\xd6\xf8\x06\xd7\xff\xeb\xff" "\xf5\xff\xb3\xa0\xff\x1f\xe6\xfd\xff\x35\xf4\xff\x63\xf4\xf3\x57\xe8" "\xff\xdb\xe8\xff\x17\x0b\xfd\x3f\x47\xb7\xe1\xfe\x7f\xed\x8f\x73\xf7" "\xff\x2a\x6e\xf1\xe7\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8e\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x6f\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f\xc4\xfe\x7f\x2f" "\xcd\x6c\xba\xff\xf7\xfe\xbf\xfe\x3f\xe8\xff\xe7\x41\xff\x3f\x6c\xfb" "\xfd\xff\x8d\x83\x5f\x56\xff\xdf\x44\xff\xef\xfd\xff\x46\xfa\x7f\xef" "\xff\x33\x86\x6d\xf4\xff\x3b\x03\xff\xff\xdc\xfd\xbf\x8b\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x3f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x1f\xe3" "\x96\x4e\xf6\xff\xd6\xfa\xff\xf8\xb7\x5a\xff\x3f\xfb\xfe\xbf\xfd\xf7" "\xff\x07\xfb\xff\xdd\x85\xfe\x5f\xff\xaf\xff\x9f\x16\xfd\xff\xb0\xed" "\xf7\xff\xc3\xf4\xff\xfa\xff\x39\x7f\x7e\xfd\xbf\xfe\x9f\x65\xdb\xe8" "\xff\x07\x7f\xbc\xf7\xab\x4e\x2d\xfe\x14\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\xff\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f" "\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xbf\xc6\x2d\x9d\xec\x7f" "\xef\xff\xeb\xff\xf5\xff\xde\xff\xd7\xff\xaf\xfe\xfa\xfa\xff\x79\xd2" "\xff\x0f\xd3\xff\xaf\x56\x7f\xa3\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x51" "\x4d\xad\xff\xcf\xdd\xff\xb7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xf7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x25\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x11\xb7\x34\xb1\xff\x8f\xad\xfd" "\x2b\xf4\xff\xb3\xec\xff\x2b\x8f\xd6\xff\xeb\xff\xf5\xff\xfa\x7f\xf6" "\xd3\xff\x0f\xdb\x66\xff\x7f\xaf\x3b\xad\xff\xb2\xde\xff\xdf\x7a\xff" "\x9f\x1f\x41\xff\xaf\xff\xd7\xff\x33\x8a\xa9\xf5\xff\xb9\xfb\xff\x19" "\xb7\x34\xb1\xff\x01\x00\x00\x80\xdb\xe5\xee\xff\x57\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xff\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x6f\x8d\x5b\x3a\xd9\xff\x6b\xfa\xff\x93\xf5\x17\xea\xff\x07\x79" "\xff\x7f\xff\xe7\xd7\xff\xaf\xfe\xfe\xd0\xff\xeb\xff\xf5\xff\x17\x9f" "\xfe\x7f\x98\xf7\xff\xd7\xd0\xff\x7b\xff\x5f\xff\xaf\xff\x67\x54\x53" "\xeb\xff\x73\xf7\xff\x27\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\xdf\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x8d\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xff\xc5\x2d\x9d\xec\x7f\xef\xff\xcf\xa9" "\xff\xbf\x42\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x6b\xe8\xff\x87\xe9" "\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x46\x35\xb5\xfe\x3f\x77\xff" "\xff\x03\x00\x00\xff\xff\xa9\xbb\x4d\x25", 25153)); NONFAILING(syz_mount_image(/*fs=*/0x200000000180, /*dir=*/0x200000000580, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x200000000140, /*chdir=*/0xfe, /*size=*/0x6241, /*img=*/0x20000000ea80)); break; case 1: // unlink arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // ] NONFAILING(memcpy((void*)0x200000000580, "./file1\000", 8)); syscall(__NR_unlink, /*path=*/0x200000000580ul); break; case 2: // syz_mount_image$msdos arguments: [ // fs: ptr[in, buffer] { // buffer: {6d 73 64 6f 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: mount_flags = 0x1a6a038 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xb (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000f40, "msdos\000", 6)); NONFAILING(memcpy((void*)0x200000000f00, ".\000", 2)); NONFAILING(syz_mount_image( /*fs=*/0x200000000f40, /*dir=*/0x200000000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_UNBINDABLE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|0x202028*/ 0x1a6a038, /*opts=*/0x200000002cc0, /*chdir=*/0xb, /*size=*/0, /*img=*/0x200000000000)); break; case 3: // fspick arguments: [ // dfd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: fspick_flags = 0x0 (8 bytes) // ] // returns fd_fscontext NONFAILING(memcpy((void*)0x200000000000, ".\000", 2)); syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x200000000000ul, /*flags=*/0ul); break; case 4: // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: nil // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=*/0x275a, /*mode=*/0); break; case 5: // mount$9p_fd arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x800401 (8 bytes) // opts: nil // ] NONFAILING(memcpy((void*)0x2000000001c0, ".\000", 2)); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000001c0ul, /*type=*/0ul, /*flags=MS_I_VERSION|MS_RDONLY|MS_NOATIME*/ 0x800401ul, /*opts=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_802154())) { fprintf(stderr, "reproducer setup failed: 802154 injection: %s\n", reason); exit(1); } install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }