// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // 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_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 void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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 < 2; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } 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: NONFAILING(memcpy((void*)0x200003c0, "jfs\000", 4)); NONFAILING(memcpy((void*)0x20000540, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x2000c200, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x97\x10\xc7" "\xca\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0" "\x82\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0" "\x44\xb3\x61\xc1\x43\x80\x90\x58\x02\x62\xc9\x8a\x07\xc8\x82\x2d\x3b" "\x1e\x00\x4b\x36\x12\x28\xab\x14\xaa\x99\x73\xc6\x35\x9d\x6e\xf7\xd8" "\xce\x74\xf5\xcc\xf9\xfd\xa4\x71\xd5\xd7\xa7\x6a\xfa\x94\xff\x5d\x7d" "\x99\xaa\xea\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\xfc\xf0\x07\x3f\x3e\x5b\x45\xc4\xe5\x5f\xa5\x1b\x8e\x47\x7c" "\x2e\xfa\x11\xbd\x88\x95\xa6\x5e\x8b\x88\x95\xb5\xe3\x79\xf9\x41\x44" "\x3c\x1f\xdb\xcd\xf1\x5c\x44\x0c\x97\x22\xaa\xdc\xf8\x4c\xc4\x6b\x11" "\xf1\xd1\xb1\x88\x7b\xf7\x6f\xaf\x37\x37\x9d\xdb\x67\x3f\xbe\xff\x97" "\x7f\xfe\xe1\x27\x4f\xfd\xe8\x1f\x7f\x1a\x9e\xfe\xdf\x5f\x6f\xf6\x5f" "\x9f\xb6\xdc\xad\x5b\xbf\xfd\xef\xdf\xee\x3c\xfe\xf6\x02\x00\x00\x40" "\x89\xea\xba\xae\xab\xf4\x31\xff\x44\xfa\x7c\xdf\xeb\xba\x53\x00\xc0" "\x5c\xe4\xd7\xff\x3a\xc9\xb7\xab\x17\xae\xde\x5c\xb0\xfe\xa8\xd5\x6a" "\xb5\xfa\x10\xd6\x6d\xf5\x64\x77\xda\x45\x44\x6c\xb6\xd7\x69\xde\x33" "\x38\x1c\x0f\x00\x87\xcc\x66\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\xa7\xba\xee\x04\xb0\xd0\xaa\xae\x3b\xc0\x81\xb8\x77\xff\xf6\x7a" "\x95\xf2\xad\xda\xaf\x07\x6b\x3b\xed\xf9\x5c\x90\x3d\xf9\x6f\x56\xbb" "\xd7\x77\x4c\x9b\xce\x32\x7e\x8e\xc9\xbc\x1e\x5f\x5b\xd1\x8f\x67\xa7" "\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff\xde\x78\xfe\x97\x77\xda\x47\x69" "\xb9\x83\xce\x7f\x5e\xa6\xe5\x3f\xda\xb9\xf4\xa9\x38\x39\xff\xfe\x78" "\xfe\x63\x8e\x4e\xfe\xbd\x89\xf9\x97\x2a\xe7\x3f\x78\xa4\xfc\xfb\xf2" "\x07\x00\x00\x00\x00\x80\x05\x96\xff\xfe\x7f\xbc\xe3\xe3\xbf\x4b\x4f" "\xbe\x29\xfb\xf2\xb0\xe3\xbf\x6b\x73\xea\x03\x00\x00\x00\x00\x00\x00" "\x00\x7c\xd6\x9e\x74\xfc\xbf\x5d\x95\xf1\xff\x00\x00\x00\x60\x51\x35" "\x9f\xd5\x1b\xbf\x3b\xf6\xe0\xb6\x69\xdf\xc5\xd6\xdc\x7e\xa9\x8a\x78" "\x7a\x6c\x79\xa0\x30\xe9\x62\x99\xd5\xae\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x25\x19\xec\x9c\xc3\x7b\xa9\x8a\x18\x46\xc4\xd3" "\xab\xab\x75\x5d\x37\x3f\x6d\xe3\xf5\xa3\x7a\xd2\xf5\x0f\xbb\xd2\xb7" "\x1f\x4a\xd6\xf5\x93\x3c\x00\x00\xec\xf8\xe8\xd8\xd8\xb5\xfc\x55\xc4" "\x72\x44\x5c\x4a\xdf\xf5\x37\x5c\x5d\x5d\xad\xeb\xe5\x95\xd5\x7a\xb5" "\x5e\x59\xca\xef\x67\x47\x4b\xcb\xf5\x4a\xeb\x73\x6d\x9e\x36\xb7\x2d" "\x8d\xf6\xf1\x86\x78\x30\xaa\x9b\x5f\xb6\xdc\x5a\xaf\x6d\xd6\xe7\xe5" "\x59\xed\xe3\xbf\xaf\xb9\xaf\x51\xdd\xdf\x47\xc7\xe6\xa3\xc3\xc0\x01" "\x20\x22\x76\x5e\x8d\xee\x79\x45\x3a\x62\xea\xfa\x99\xe8\xfa\x5d\x0e" "\x87\x83\xfd\xff\xe8\xb1\xff\xb3\x1f\x5d\x3f\x4e\x01\x00\x00\x80\x83" "\x57\xd7\x75\x5d\xa5\xaf\xf3\x3e\x91\x8e\xf9\xf7\xba\xee\x14\x00\x30" "\x17\xf9\xf5\x7f\xfc\xb8\x80\x5a\xad\x56\xab\xd5\xea\xa3\x57\xb7\xd5" "\x93\xdd\x69\x17\x11\xb1\xd9\x5e\xa7\x79\xcf\x60\x38\x7e\x00\x38\x64" "\x36\xe3\xe3\xae\xbb\x40\x87\xe4\x5f\xb4\x41\x44\x3c\xdf\x75\x27\x80" "\x85\x56\x75\xdd\x01\x0e\xc4\xbd\xfb\xb7\xd7\xab\x94\x6f\xd5\x7e\x3d" "\x48\xe3\xbb\xe7\x73\x41\xf6\xe4\xbf\x59\x6d\xaf\x97\xd7\x9f\x34\x9d" "\x65\xfc\x1c\x93\x79\x3d\xbe\xb6\xa2\x1f\xcf\x4e\xe9\xcf\x73\x73\xea" "\xc3\x22\xc9\xf9\xf7\xc6\xf3\xbf\xbc\xd3\x3e\x4a\xcb\x1d\x74\xfe\xf3" "\x32\x2d\xff\x66\x3b\x8f\x77\xd0\x9f\xae\xe5\xfc\xfb\xe3\xf9\x8f\x39" "\x3a\xf9\xf7\x26\xe6\x5f\xaa\x9c\xff\xe0\x91\xf2\xef\xcb\x1f\x00\x00" "\x00\x00\x00\x16\x58\xfe\xfb\xff\xf1\x85\x3a\xfe\x3b\x7a\xdc\xcd\x99" "\xe9\x61\xc7\x7f\xd7\x0e\xec\x5e\x01\x00\x00\x00\x00\x00\x00\xe0\x60" "\xdd\xbb\x7f\x7b\x3d\x5f\xf7\x9a\x8f\xff\x7f\x61\xc2\x72\xae\xff\x3c" "\x9a\x72\xfe\x95\xfc\x8b\x94\xf3\xef\x8d\xe5\xff\xd5\xb1\xe5\xfa\xad" "\xf9\xbb\x6f\x3d\xc8\xff\x3f\xf7\x6f\xaf\xff\xf1\xe6\xbf\x3f\x9f\xa7" "\xfb\xcd\x7f\x29\xcf\x54\xe9\x91\x55\xa5\x47\x44\x95\xee\xa9\x1a\xa4" "\xe9\x93\x6c\xdd\xa7\x6d\x0d\xfb\xa3\xe6\x9e\x86\x55\xaf\x3f\x48\xe7" "\xfc\xd4\xc3\x77\xe2\x6a\x5c\x8b\x8d\x38\xb3\x67\xd9\x5e\xfa\xff\x78" "\xd0\x7e\x76\x4f\x7b\xd3\xd3\xe1\x76\x7b\xdd\xdf\x69\x3f\xb7\xa7\x7d" "\xb0\xdb\x9e\xd7\x3f\xbf\xa7\x7d\x98\xce\x74\xaa\x57\x72\xfb\xa9\x58" "\x8f\x9f\xc7\xb5\x78\x7b\xbb\xbd\x69\x5b\x9a\xb1\xfd\xcb\x33\xda\xeb" "\x19\xed\x39\xff\xbe\xfd\xbf\x48\x39\xff\x41\xeb\xa7\xc9\x7f\x35\xb5" "\x57\x63\xd3\xc6\xdd\x0f\x7b\x9f\xda\xef\xdb\xd3\x49\xf7\xf3\xe6\xd5" "\x2f\xfe\xe6\xcc\xc1\x6f\xce\x4c\x5b\xd1\xdf\xdd\xb6\xb6\x66\xfb\x5e" "\xec\xa0\x3f\xdb\xff\x27\x4f\x8d\xe2\x97\x37\x36\xae\x9f\xba\x75\xe5" "\xe6\xcd\xeb\x67\x23\x4d\xf6\xdc\x7a\x2e\xd2\xe4\x33\x96\xf3\x1f\xa6" "\x9f\xdd\xe7\xff\x97\x76\xda\xf3\xf3\x7e\x7b\x7f\xbd\xfb\xe1\xe8\x91" "\xf3\x5f\x14\x5b\x31\x98\x9a\xff\x4b\xad\xf9\x66\x7b\x5f\x9e\x73\xdf" "\xba\x90\xf3\x1f\xa5\x9f\x9c\xff\xdb\xa9\x7d\xf2\xfe\x7f\x98\xf3\x9f" "\xbe\xff\xbf\xd2\x41\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x61\xea\xba\xde\xbe\x44\xf4\xcd\x88\xb8\x90\xae\xff\xe9\xea" "\xda\x4c\x00\x60\xbe\xf2\xeb\x7f\x9d\xe4\xdb\xe7\x55\xf7\x1f\x77\xfd" "\x3f\xef\xdd\x8e\xae\xfa\xaf\x56\xcf\xb9\xae\x16\xac\x3f\x73\xad\x3f" "\xa9\x17\xab\x3f\x6a\xf5\x61\xac\xdb\xea\xc9\xde\x68\x17\x11\xf1\xf7" "\xf6\x3a\xcd\x7b\x86\x5f\x4f\xfa\x65\x00\xc0\x22\xfb\x24\x22\xfe\xd5" "\x75\x27\xe8\x8c\xfc\x0b\x96\xbf\xef\xaf\x99\x9e\xec\xba\x33\xc0\x5c" "\xdd\x78\xff\x83\x9f\x5e\xb9\x76\x6d\xe3\xfa\x8d\xae\x7b\x02\x00\x00" "\x00\x00\x00\x00\x00\x3c\xae\x3c\xfe\xe7\x5a\x6b\xfc\xe7\x93\x75\x5d" "\xdf\x19\x5b\x6e\xcf\xf8\xaf\x6f\xc5\xda\x93\x8e\xff\x39\xc8\x33\xbb" "\x03\x8c\x4e\x19\xa8\xba\xff\xe8\xdb\xf4\x30\x5b\xbd\x51\xbf\xd7\x1a" "\x6e\xfc\x85\x98\x36\xfe\xf7\x70\x77\xee\x61\xe3\x7f\x0f\x66\xdc\xdf" "\x70\x46\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x19\xed\x13\x2f\xf4\x68\xc9" "\xf9\xbf\xd0\x1a\xef\xfc\x64\x44\x9c\x18\x1b\x7e\xbd\x84\xf1\x5f\xc7" "\xc7\xbc\x2f\x41\xce\xff\xc5\xd6\xe3\xb9\xc9\xff\x2b\x63\xcb\xb5\xf3" "\xaf\x7f\x7f\x98\xf3\xef\xed\xc9\xff\xf4\xcd\xf7\x7e\x71\xfa\xc6\xfb" "\x1f\xbc\x7a\xf5\xbd\x2b\xef\x6e\xbc\xbb\xf1\xb3\xf3\x67\xcf\x9e\x39" "\x7f\xe1\xc2\xc5\x8b\x17\x4f\xbf\x73\xf5\xda\xc6\x99\x9d\x7f\x3b\xec" "\xf1\xc1\xca\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65" "\xc9\xf9\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe" "\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\xcb\xa9" "\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\x7f\x25\xd5\xf2\x2f" "\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xaf\xa6\x5a\xfe\x65\xc9\xf9" "\x9f\x4a\xb5\xfc\xcb\x92\xf3\x3f\x9d\xea\x7d\xe6\xbf\x72\xd0\xfd\x62" "\x3e\x72\xfe\xf9\x08\x97\xfd\xbf\x2c\x39\xff\x7c\x66\x83\xfc\xcb\x92" "\xf3\x3f\x97\x6a\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xb5" "\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\xf5" "\x54\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe\x65\xc9\xf9\x7f\x37\xd5\xf2" "\x2f\x4b\xce\xff\x7b\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\x79" "\xf0\xfd\xff\x66\xcc\x98\x31\x93\x67\xba\x7e\x66\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc6\xcd\xe3\x74\xe2\xae\xb7\x11\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00" "\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x61\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\x7b\x77\x17\x23\xd7\x59\xdf\x0f\xfc\xcc\xbe\x79\xed\x40\x62\x20" "\xe4\xef\xe4\x6f\xc2\xda\x31\xc6\x38\x9b\xec\xfa\x25\x7e\xa1\x75\x31" "\xe1\xb5\xe1\xad\x24\x84\x42\x5f\xb0\x5d\xef\xda\x2c\xf8\x0d\xaf\x5d" "\x02\x8d\x6a\x47\x81\x12\x09\xa3\xa2\x8a\xb6\xe1\xa2\x2d\xa0\xa8\xcd" "\x4d\x85\x55\xe5\x82\x56\x01\xe5\x02\xb5\xaa\x54\x89\xb4\x17\xf4\x06" "\x51\xa1\x72\x11\x55\x01\x05\x2a\x24\x5a\x41\xb6\x9a\x73\x9e\xe7\xd9" "\x99\xd9\xd9\x99\xb5\x77\xec\xcc\x9c\xf3\xf9\x48\xe4\xe7\x9d\x39\x33" "\xe7\xcc\x99\x67\x66\xf7\x6b\xf3\xdd\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\x68\xb4\xe9\x2d\xb3\x9f\xab\x65" "\x59\x56\xab\xd5\x8a\x0b\xd6\x67\xd9\xcb\xea\x73\xed\xc4\xfa\xfc\x92" "\x37\xbe\xb4\xc7\x07\x00\x00\x00\xac\xde\x2f\xf3\xff\xbe\x70\x53\xba" "\xe0\xe0\x0a\x6e\xd4\xb0\xcd\x3f\xdd\xfe\x9d\xa7\x16\x16\x16\x16\xb2" "\x0f\x0d\xff\xe9\xe8\x97\x16\x16\xd2\x15\x13\x59\x36\xba\x26\xcb\xf2" "\xeb\xa2\xcb\x3f\xf8\x70\xad\x71\x9b\xe0\xd1\x6c\xbc\x36\xd4\xf0\xf5" "\x50\x97\xdd\x0f\x77\xb9\x7e\xa4\xcb\xf5\xa3\x5d\xae\x1f\xeb\x72\xfd" "\x9a\x2e\xd7\x8f\x77\xb9\x7e\xc9\x09\x58\x62\x6d\x56\x4b\x77\xb6\x25" "\xff\xe3\xfa\xe2\x94\x66\x37\x67\xa3\xf9\x75\x5b\xda\xdc\xea\xd1\xda" "\x9a\xa1\xfa\xb9\x4b\xb7\xcd\x6a\xf9\x6d\x16\x46\x8f\x65\x73\xd9\x89" "\x6c\x36\x9b\x6e\xda\xbe\xd8\xb6\x96\x6f\xff\xf4\xa6\xfa\xbe\xde\x99" "\xc5\x7d\x0d\x35\xec\x6b\x63\x7d\x85\xfc\xe4\xe1\xa3\xf1\x18\x6a\xe1" "\x1c\x6f\x69\xda\xd7\xe2\x7d\x46\x3f\x7a\x73\x36\xf1\xd3\x9f\x3c\x7c" "\xf4\xaf\xcf\x3d\x7f\x6b\xbb\xd9\xf5\x34\x34\xdd\x5f\x71\x9c\xdb\x36" "\xd7\x8f\xf3\x33\xe1\x92\xe2\x58\x6b\xd9\x9a\x74\x4e\xe2\x71\x0e\x35" "\x1c\xe7\xc6\x36\xcf\xc9\x70\xd3\x71\xd6\xf2\xdb\xd5\xff\xdc\x7a\x9c" "\x2f\xac\xf0\x38\x87\x17\x0f\xf3\xba\x6a\x7d\xce\xc7\xb3\xa1\xfc\xcf" "\xcf\xe6\xe7\x69\xa4\x96\xb5\x39\x4f\x1b\xc3\x65\x3f\xbf\x23\xcb\xb2" "\x8b\x8b\x87\xdd\xba\xcd\x92\x7d\x65\x43\xd9\xba\xa6\x4b\x86\x16\x9f" "\x9f\xf1\x62\x45\xd6\xef\xa3\xbe\x94\x5e\x99\x8d\x5c\xd1\x3a\xdd\xb4" "\x82\x75\x5a\x9f\x33\x5b\x9a\xd7\x69\xeb\x6b\x22\x3e\xff\x9b\xc2\xed" "\x46\x96\x39\x86\xc6\xa7\xe9\x47\x8f\x8c\x35\x3c\xef\xbf\x58\xb8\x9a" "\x75\x1a\xd5\x1f\xf5\x72\xaf\x95\xd6\x35\xd8\xeb\xd7\x4a\xbf\xac\xc1" "\xb8\x2e\x9e\xcd\x1f\xf4\x63\x6d\xd7\xe0\x96\xf0\xf8\x1f\xde\xba\xfc" "\x1a\x6c\xbb\x76\xda\xac\xc1\xf4\xb8\x1b\xd6\xe0\xe6\x6e\x6b\x70\x68" "\x6c\x38\x3f\xe6\xf4\x24\xd4\xf2\xdb\x2c\xae\xc1\x1d\x4d\xdb\x0f\xe7" "\x7b\xaa\xe5\xf3\xb9\xad\x9d\xd7\xe0\xd4\xb9\x93\x67\xa6\xe6\x3f\xf5" "\xe9\xbb\xe6\x4e\x1e\x39\x3e\x7b\x7c\xf6\xd4\xae\x1d\x3b\xa6\x77\xed" "\xd9\xb3\x6f\xdf\xbe\xa9\x63\x73\x27\x66\xa7\x8b\xff\x5e\xe5\xd9\xee" "\x7f\xeb\xb2\xa1\xf4\x1a\xd8\x1c\xce\x5d\x7c\x0d\xbc\xbe\x65\xdb\xc6" "\xa5\xba\xf0\xd5\xb1\x25\xef\xbf\x57\xfb\x3a\x1c\xef\xf0\x3a\x5c\xdf" "\xb2\x6d\xaf\x5f\x87\x23\xad\x0f\xae\x76\x7d\x5e\x90\x4b\xd7\x74\xf1" "\xda\xf8\x40\xfd\xa4\x8f\x5f\x1a\xca\x96\x79\x8d\xe5\xcf\xcf\xf6\xd5" "\xbf\x0e\xd3\xe3\x6e\x78\x1d\x8e\x34\xbc\x0e\xdb\x7e\x4f\x69\xf3\x3a" "\x1c\x59\xc1\xeb\xb0\xbe\xcd\x99\xed\x2b\xfb\x99\x65\xa4\xe1\x7f\xed" "\x8e\x61\xf9\xef\x05\xab\x5b\x83\xeb\x1b\xd6\x60\xeb\xcf\x23\xad\x6b" "\xb0\xd7\x3f\x8f\xf4\xcb\x1a\x1c\x0f\xeb\xe2\x7b\xdb\x97\xff\x5e\xb0" "\x31\x1c\xef\x63\x93\x57\xfa\xf3\xc8\xf0\x92\x35\x98\x1e\x6e\x78\xef" "\xa9\x5f\x92\x7e\xde\x1f\xdf\x97\x8f\x76\xeb\xf2\xb6\xfa\x15\x37\x8c" "\x65\xe7\xe7\x67\xcf\xde\xfd\xd0\x91\x73\xe7\xce\xee\xc8\xc2\xb8\x2e" "\x5e\xd5\xb0\x56\x5a\xd7\xeb\xba\x86\xc7\x94\x2d\x59\xaf\x43\x57\xbc" "\x5e\x0f\xce\xdd\xfe\xd8\x6d\x6d\x2e\x5f\x1f\xce\xd5\xf8\x5d\xf5\xff" "\x8c\x2f\xfb\x5c\xd5\xb7\xd9\x7d\x77\xe7\xe7\x2a\xff\xee\xd6\xfe\x7c" "\x36\x5d\xba\x33\x0b\xa3\xc7\xae\xf7\xf9\x6c\xf7\xdd\xbc\x7e\x3e\xc7" "\xb2\xec\xcb\xdf\x7e\xe4\xfe\x6f\x3e\xfc\xe5\xb7\x2c\x7b\x3e\xeb\x79" "\xf3\x33\x53\xab\xff\x59\x3c\xe5\xd2\x86\xf7\xdf\xd1\x65\xde\x7f\x63" "\xee\x7f\xb1\xd8\x5f\xba\xab\x47\x87\x47\x47\x8a\xd7\xef\x70\x3a\x3b" "\xa3\x4d\xef\xc7\xcd\x4f\xd5\x48\xfe\xde\x55\xcb\xf7\xfd\xc2\xd4\xca" "\xde\x8f\x47\xc3\xff\xae\xf7\xfb\xf1\xcd\x1d\xde\x8f\x37\xb4\x6c\xdb" "\xeb\xf7\xe3\xd1\xd6\x07\x17\xdf\x8f\x6b\xdd\xfe\xb6\x63\x75\x5a\x9f" "\xcf\xf1\xb0\x4e\x4e\x4c\x77\x7e\x3f\xae\x6f\xb3\x61\xe7\x95\xae\xc9" "\x91\x8e\xef\xc7\x77\x84\x59\x0b\xe7\xff\x0d\x21\x29\xa4\x5c\xd4\xb0" "\x76\x96\x5b\xb7\x69\x5f\x23\x23\xa3\xe1\x71\x8d\xc4\x3d\x34\xaf\xd3" "\x5d\x4d\xdb\xc7\xf5\x56\xdf\xd7\x93\x3b\xaf\x6e\x9d\x6e\xbb\xa3\xb8" "\xaf\xe1\xf4\xe8\x16\x5d\xaf\x75\x3a\xd1\xb2\x6d\xaf\xd7\x69\xfa\xbb" "\xaf\xe5\xd6\x69\xad\xdb\xdf\xbe\x5d\x9d\xd6\xe7\x73\x3c\xac\x8b\x9b" "\x77\x75\x5e\xa7\xf5\x6d\x9e\xd9\xbd\xfa\xf7\xce\xb5\xf1\x8f\x0d\xef" "\x9d\x63\xdd\xd6\xe0\xe8\xf0\x58\xfd\x98\x47\xd3\x22\xcc\xdf\xef\xb3" "\x85\xb5\x71\x0d\xde\x9d\x1d\xcd\x4e\x67\x27\xb2\x99\xfc\xda\xb1\x7c" "\x3d\xd5\xf2\x7d\x4d\xde\xb3\xb2\x35\x38\x16\xfe\x77\xbd\xdf\x2b\x37" "\x74\x58\x83\xdb\x5a\xb6\xed\xf5\x1a\x4c\xdf\xc7\x96\x5b\x7b\xb5\x91" "\xa5\x0f\xbe\x07\x5a\x9f\xcf\xf1\xb0\x2e\x1e\xbf\xa7\xf3\x1a\xac\x6f" "\xf3\xd6\xbd\xbd\xfd\xd9\x75\x5b\xb8\x24\x6d\xd3\xf0\xb3\x6b\xeb\xdf" "\xaf\x2d\xf7\x77\x5e\xb7\xb5\x9c\xa6\x6b\xb5\x56\x46\xc2\x71\x7e\x7b" "\x6f\xe7\xbf\x9b\xad\x6f\x73\x62\xdf\x95\xe6\xcc\xce\xe7\xe9\xce\x70" "\xc9\x0d\x6d\xce\x53\xeb\xeb\x77\xb9\xd7\xd4\x4c\x76\x7d\xce\xd3\x86" "\x70\x9c\xcf\xef\x5b\xfe\x3c\xd5\x8f\xa7\xbe\xcd\x97\xf6\xaf\x70\x3d" "\x1d\xcc\xb2\xec\xc2\x27\xee\xcd\xff\xbe\x37\xfc\xfb\xca\xdf\x9d\xff" "\xee\x53\x4d\xff\xee\xd2\xee\xdf\x74\x2e\x7c\xe2\xde\x1f\xbf\xfc\xd8" "\x3f\x5e\xc9\xf1\x03\x30\xf8\x5e\x2c\xc6\xba\xe2\x7b\x5d\xc3\xbf\x4c" "\xad\xe4\xdf\xff\x01\x00\x00\x80\x81\x10\x73\xff\x50\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\x7f\xfc\x7f\x85\x27\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x23\x61\x26\x15\xc9\xff\x1b\xde\xfa\xfc\xdc\x8b\x17\xb2" "\xd4\xcc\x5f\x08\xe2\xf5\xe9\x34\xdc\x57\x6c\x17\x3b\xae\xd3\xe1\xeb" "\x89\x85\x45\xf5\xcb\xef\x7d\x62\xf6\x67\xff\x70\x61\x65\xfb\x1e\xca" "\xb2\xec\x17\xf7\xfd\x41\xdb\xed\x37\xdc\x17\x8f\xab\x30\x11\x8e\xf3" "\xf2\xdb\x9a\x2f\x5f\xe2\xa9\xbb\x56\xb4\xef\xc3\x0f\x5e\x48\xfb\x6d" "\xec\xaf\x7f\x25\xdc\x7f\x7c\x3c\x2b\x5d\x06\xed\x2a\xb8\xd3\x59\x96" "\x3d\x7d\xd3\x17\xf2\xfd\x4c\x7c\xf8\x52\x3e\x9f\xb9\xef\x70\x3e\xef" "\xbf\xf8\xd8\xa3\xf5\x6d\x5e\xd8\x5f\x7c\x1d\x6f\xff\xdc\xab\x8a\xed" "\xff\x22\x94\x7f\x0f\x1e\x3b\xd2\x74\xfb\xe7\xc2\x79\xf8\x61\x98\xd3" "\xef\x6a\x7f\x3e\xe2\xed\xbe\x7e\xe9\x0d\x1b\xf7\x7e\x70\x71\x7f\xf1" "\x76\xb5\xcd\x37\xe6\x0f\xfb\xf1\x8f\x14\xf7\x1b\x7f\x4f\xce\x17\x1f" "\x2d\xb6\x8f\xe7\x79\xb9\xe3\xff\xe6\xe7\x9f\xfc\x7a\x7d\xfb\x87\x5e" "\xd7\xfe\xf8\x2f\x0c\xb5\x3f\xfe\x27\xc3\xfd\x3e\x11\xe6\xff\xbc\xa6" "\xd8\xbe\xf1\x39\xa8\x7f\x1d\x6f\xf7\xd9\x70\xfc\x71\x7f\xf1\x76\x77" "\x7f\xed\x5b\x6d\x8f\xff\xf2\xe7\x8a\xed\xcf\xbc\xbd\xd8\xee\x70\x98" "\x71\xff\xdb\xc2\xd7\x5b\xde\xfe\xfc\x5c\xe3\xf9\x7a\xa8\x76\xa4\xe9" "\x71\x65\xef\x28\xb6\x8b\xfb\x9f\xfe\xee\x1f\xe7\xd7\xc7\xfb\x8b\xf7" "\xdf\x7a\xfc\xe3\x87\x2e\x35\x9d\x8f\xd6\xf5\xf1\xcc\xbf\x15\xf7\x33" "\xd5\xb2\x7d\xbc\x3c\xee\x27\xfa\xfb\x96\xfd\xd7\xef\xa7\x71\x7d\xc6" "\xfd\x3f\xf9\x47\x87\x9b\xce\x73\xb7\xfd\x5f\xbe\xff\xb9\xd7\xd4\xef" "\xb7\x75\xff\x77\xb6\x6c\x77\xe6\x13\xdb\xf3\xfd\x2f\xde\x5f\xf3\x6f" "\x6c\xfa\xcb\xcf\x7e\xa1\xed\xfe\xe2\xf1\x1c\xfc\xdb\x33\x4d\x8f\xe7" "\xe0\xfb\xc3\xeb\x38\xec\xff\xf1\x8f\x84\xf5\x18\xae\xff\xdf\xcb\xc5" "\xfd\xb5\xfe\x76\x85\xc3\xef\x6f\x7e\xff\x89\xdb\x7f\x65\xfd\x85\xa6" "\xc7\x13\xbd\xf3\xa7\xc5\xfe\x2f\xbf\xe9\x78\x3e\xd7\x8c\xaf\x5d\x77" "\xc3\xcb\x5e\x7e\xe3\xc5\xd7\xd6\xcf\x5d\x96\x3d\xbb\xa6\xb8\xbf\x6e" "\xfb\x3f\xfe\x57\xa7\x9b\x8e\xff\xab\xb7\x14\xe7\x23\x5e\x1f\x3b\xfa" "\xad\xfb\x5f\x4e\xdc\xff\xd9\x4f\x4e\x9e\x3a\x3d\x7f\x7e\x6e\x26\x9d" "\xd5\x87\x6f\xca\x7f\x77\xce\xbb\x8b\xe3\x89\xc7\x7b\x53\x78\x6f\x6d" "\xfd\xfa\xd0\xe9\x73\x1f\x9d\x3d\x3b\x31\x3d\x31\x9d\x65\x13\xe5\xfd" "\x15\x7a\x57\xed\x6b\x61\xfe\xb8\x18\x17\x3b\x6f\xbd\xb0\xe4\x1d\x74" "\xfb\x83\xe1\xf9\xbc\xed\xcf\x9f\x5e\xb7\xf5\x5f\x3f\x1f\x2f\xff\xf7" "\x0f\x14\x97\x5f\x7a\x57\xf1\x7d\xeb\xf5\x61\xbb\x2f\x86\xcb\xd7\x87" "\xe7\xef\xca\xf6\xbf\xd4\xe3\x9b\x6e\xc9\x5f\xdf\xb5\x67\xc2\x11\x2e" "\x2c\xfd\x7d\xc1\xab\xb1\x71\xcb\x7f\xed\x5b\xd1\x86\xe1\xf1\xb7\xfe" "\x5c\x10\xd7\xfb\x99\x57\x7f\x34\x3f\x0f\xf5\xeb\xf2\xef\x1b\xf1\x75" "\xbd\xca\xe3\xff\xfe\x4c\x71\x3f\xdf\x08\xe7\x75\x21\xfc\x66\xe6\xcd" "\xb7\x2c\xee\xaf\x71\xfb\xf8\xbb\x11\x2e\x3d\x50\xbc\xde\x57\x7d\xfe" "\xc2\xdb\x5c\x7c\x5e\xff\x26\x3c\xdf\xef\xf9\x61\x71\xff\xf1\xb8\xe2" "\xe3\xfd\x7e\xf8\x39\xe6\x5b\x1b\x9a\xdf\xef\xe2\xfa\xf8\xc6\x85\xa1" "\xd6\xfb\xcf\x7f\x8b\xc7\xc5\xf0\x7e\x92\x5d\x2c\xae\x8f\x5b\xc5\xf3" "\x7d\xe9\x85\x5b\xda\x1e\x5e\xfc\x3d\x24\xd9\xc5\x5b\xf3\xaf\xff\x24" "\xdd\xcf\xad\x57\xf4\x30\x97\x33\xff\xa9\xf9\xa9\x13\x73\xa7\xce\x3f" "\x34\x75\x6e\x76\xfe\xdc\xd4\xfc\xa7\x3e\x7d\xe8\xe4\xe9\xf3\xa7\xce" "\x1d\xca\x7f\x97\xe7\xa1\x8f\x75\xbb\xfd\xe2\xfb\xd3\xba\xfc\xfd\x69" "\x66\x76\xcf\xee\x2c\x7f\xb7\x3a\x5d\x8c\x6b\xec\xa5\x3e\xfe\x33\x0f" "\x1e\x9d\xd9\x3b\xbd\x75\x66\xf6\xd8\x91\xf3\xc7\xce\x3d\x78\x66\xf6" "\xec\xf1\xa3\xf3\xf3\x47\x67\x67\xe6\xb7\x1e\x39\x76\x6c\xf6\x93\xdd" "\x6e\x3f\x37\x73\x60\xc7\xce\xfd\xbb\xf6\xee\x9c\x3c\x3e\x37\x73\x60" "\xdf\xfe\xfd\xbb\xf6\x4f\xce\x9d\x3a\x5d\x3f\x8c\xe2\xa0\xba\xd8\x33" "\xfd\xf1\xc9\x53\x67\x0f\xe5\x37\x99\x3f\xb0\x7b\xff\x8e\x7b\xee\xd9" "\x3d\x3d\x79\xf2\xf4\xcc\xec\x81\xbd\xd3\xd3\x93\xe7\xbb\xdd\x3e\xff" "\xde\x34\x59\xbf\xf5\xef\x4f\x9e\x9d\x3d\x71\xe4\xdc\xdc\xc9\xd9\xc9" "\xf9\xb9\x4f\xcf\x1e\xd8\xb1\x7f\xcf\x9e\x9d\x5d\x7f\x1b\xe0\xc9\x33" "\xc7\xe6\x27\xa6\xce\x9e\x3f\x35\x75\x7e\x7e\xf6\xec\x54\xf1\x58\x26" "\xce\xe5\x17\xd7\xbf\xf7\x75\xbb\x3d\xe5\x34\xff\x1f\xc5\xcf\xb3\xad" "\x6a\xc5\x2f\xe2\xcb\xde\x77\xe7\x9e\xf4\xfb\x59\xeb\x9e\x78\x64\xd9" "\xbb\x2a\x36\x69\xf9\x05\xa2\xcf\x87\xdf\x45\xf3\xcf\xaf\x38\xb3\x6f" "\x25\x5f\xc7\xdc\x3f\x1a\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x9a\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf1\x30\x93\x8a\xe4\xff\xd2\xf5\xff" "\x37\x5c\x58\xd1\xfe\xf5\xff\xf5\xff\x1b\xcf\x97\xfe\x7f\xc5\xfa\xff" "\x0f\xf4\x5b\xff\xbf\x78\xbf\xd0\xff\xef\x8d\xd5\xf6\xef\xf5\xff\x03" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xa0\xdf\xfa\xff\x31\xf7" "\xaf\xcd\xb2\x4a\xe6\x7f\x00\x00\x00\xa8\x82\x98\xfb\xd7\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xff\xb2\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\x0e\xfd\xff\x9f\x35\xbf\x25\xe8\xff\xeb\xff\xf7\x3f\xfd\xff\xce" "\xf4\xff\xbb\xd0\xff\x9f\xca\xaa\xd5\xff\xbf\xd8\xcb\xe3\xd7\xff\xd7" "\xff\x67\xa9\x7e\xeb\xff\xc7\xdc\xff\xf2\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x7d\x98\x49\x45" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\x6f\xbf\x7f\xfd\xff" "\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x9f" "\x9e\xea\xb7\xfe\x7f\xcc\xfd\xaf\x08\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\xf4\x9f\x91\xab\xbb" "\x59\xcc\xfd\xaf\x0a\x33\x59\x92\xff\xaf\x72\x07\x00\x00\x00\xc0\x4b" "\x2e\xe6\xfe\x9b\xb3\x96\x22\x78\x45\xfe\xfd\x5f\xff\x5f\xff\xbf\xff" "\xfb\xff\x6b\xd2\x75\xfa\xff\xfa\xff\x59\x5f\xf6\xff\x87\x33\xfd\xff" "\xfe\xa1\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4" "\x54\xbf\xf5\xff\xf3\xdc\x9f\x8d\x67\xaf\x0e\x33\xa9\x48\xfe\x07\x00" "\x00\x80\x2a\x88\xb9\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xff\x17\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x21\xcc\xa4" "\x22\xf9\x5f\xff\x5f\xff\xbf\xff\xfb\xff\x3e\xff\x5f\xff\xbf\xdf\xfb" "\xff\x3e\xff\xbf\x9f\xe8\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x6f\x0d\x33\xa9\x48\xfe\x07" "\x00\x00\x80\x2a\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\xff\x1f\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x31\xcc" "\xa4\x22\xf9\x5f\xff\xbf\xcf\xfb\xff\xb1\x39\xaa\xff\xdf\xa5\xff\x3f" "\x96\xdf\x56\xff\x5f\xff\x3f\xd3\xff\xaf\x3c\xfd\xff\xce\xf4\xff\xbb" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x6b" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x3d\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\xb5\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x13\x61\x26\x15\xc9\xff\xfa\xff\x7d\xde\xff\x2f\x7a\xf0" "\x63\x3e\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x8c\xfe\x7f\x67" "\xfa\xff\x5d\xe8\xff\xeb\xff\xf7\xa4\xff\xbf\x70\x41\xff\x5f\xff\x9f" "\x42\xbf\xf5\xff\x63\xee\xdf\x14\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x3b\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xb7\x84\x99\x54\x24\xff\xeb" "\xff\x0f\x44\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x19" "\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xf7\xf9\xff\xfa\xff\xf4\x54" "\xbf\xf5\xff\x63\xee\x7f\x5d\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x5f\x1f\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2d\xcc\xa4\x22\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f" "\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff" "\x8f\xb9\xff\x0d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x6f" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x33\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\x7f\x32\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f\x67\xfa\xff" "\x5d\xe8\xff\xf7\xaa\x3f\x3f\xac\xff\xaf\xff\xaf\xff\x4f\xd6\x87\xfd" "\xff\x98\xfb\xef\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff" "\xee\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xa9\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xe9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\xff" "\x55\xf7\xff\x1b\x1e\xbc\xfe\x7f\x05\xfa\xff\xaf\x5d\xbc\x5f\xfd\xff" "\x82\xfe\x7f\x7f\xd1\xff\xef\x4c\xff\xbf\x8b\xde\xf5\xff\x47\xb2\x6a" "\xf7\xff\x7d\xfe\xff\x55\xf7\xff\x47\xf5\xff\x29\x95\x7e\xeb\xff\xc7" "\xdc\xbf\x23\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x9d\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x77\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xfb\xfc" "\x7f\xfd\x7f\x9f\xff\xdf\x7e\xff\xfa\xff\x83\x49\xff\xbf\xb3\xde\xf7" "\xff\xe3\x43\xd4\xff\xf7\xf9\xff\xfa\xff\x3e\xff\x5f\xff\x9f\xa5\xfa" "\xad\xff\x1f\x73\xff\x3d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x1b\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2f\xcc\xa4\x22\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f\x67" "\x55\xff\xfc\xff\xf5\xdd\x0e\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x55" "\x7a\xe0\x0f\x1b\xbf\xea\xb7\xfe\x7f\xcc\xfd\xfb\xc3\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xaf\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x6a" "\x98\x49\x59\xf2\x7f\x97\xe6\xa1\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\xfb\xfd\xeb\xff\x0f\x26\xfd\xff\xce\xaa\xde\xff\xef\x4a\xff\x5f" "\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x07\xc2\x4c\xca" "\x92\xff\x01\x00\x00\x80\x94\xfb\x7f\x2d\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x4d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x07" "\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xdb\xef" "\xff\x7a\xf7\xff\xc7\xe2\xfd\xea\xff\xaf\x8a\xfe\x7f\x67\xfa\xff\x5d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xcd" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x1b\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xb7\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xb7\xdf\xbf\xcf\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff" "\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\xb7\x85\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xf6\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xbf\x33\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f\x67\xfa\xff\x5d\xf4\xb2\xff\x3f" "\xde\xf6\xfe\xf5\xff\xaf\xa1\x97\xfa\xf8\xf5\xff\xf5\xff\x59\xaa\xdf" "\xfa\xff\x31\xf7\xff\x7a\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x2b\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xdd\x61\x26\x15\xc9\xff\xfa\xff" "\xd9\xda\xc6\xcb\xf5\xff\xf5\xff\xf3\x0b\xf4\xff\xf5\xff\xf5\xff\x07" "\x96\xfe\x7f\x67\x03\xd6\xff\xff\xe5\x8d\xe1\xf2\x81\xec\xff\xfb\xfc" "\x7f\xfd\xff\x2e\xfd\xff\x91\x96\xaf\xaf\x49\xff\xff\x07\xcb\xf5\xff" "\x17\xd6\xb4\xde\x5e\xff\x9f\x6b\xa1\xdf\xfa\xff\x31\xf7\xbf\x27\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf7\x86\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\x37\xc2\x4c\x2a\x92\xff\xf5\xff\xeb\xc7\xb1\xd8\x5e\xd6\xff" "\x2f\x6b\xff\x7f\x48\xff\x5f\xff\x5f\xff\xbf\x22\xf4\xff\x3b\x1b\xb0" "\xfe\xff\x60\x7f\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff\xa7\xef\xfa" "\xff\x31\xf7\xbf\x3f\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe" "\xfb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xff\x40\x98\x49\x45\xf2\xbf\xfe\x7f\x73" "\xf7\x5c\xff\xbf\xac\xfd\x7f\x9f\xff\x9f\xe9\xff\xeb\xff\x57\x84\xfe" "\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xf7\x5b\xff\xff\x3f\xf5\xff\x19" "\x6c\xfd\xd6\xff\x8f\xb9\xff\xc1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8" "\x82\x98\xfb\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x9b" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0a\x33\xa9\x48\xfe" "\xd7\xff\x1f\x94\xfe\xff\xc4\x80\xf6\xff\x1f\xd1\xff\xbf\x86\xfd\xff" "\xdb\x6f\x2c\xb6\xd3\xff\xd7\xff\x67\x91\xfe\x7f\x67\xfa\xff\x5d\xe8" "\xff\xeb\xff\xf7\x5b\xff\xdf\xe7\xff\x33\xe0\xfa\xad\xff\x1f\x73\xff" "\x87\xc3\x4c\x56\x9e\xff\xc7\x57\xbc\x25\x00\x00\x00\xf0\x92\x88\xb9" "\xff\xb7\xc2\x4c\x2a\xf2\xef\xff\x00\x00\x00\x50\x05\x31\xf7\xff\x76" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xef\x84\x99\x54\x24\xff" "\xeb\xff\x5f\x93\xfe\x7f\xfe\xa5\xcf\xff\xf7\xf9\xff\xad\xeb\xc3\xe7" "\xff\xeb\xff\xeb\xff\x5f\x7b\xd7\xaf\xff\x1f\xdf\x79\xf4\xff\xf5\xff" "\xf5\xff\x23\xfd\xff\x32\xf4\xff\xff\x7b\x6d\x96\xe9\xff\xd3\x3b\xfd" "\xd6\xff\x8f\xb9\xff\x77\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62" "\xee\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\x03\xa1\xdd\x67\xb2\xb5\x8a" "\xb9\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe1\x30\x93" "\x8a\xe4\x7f\xfd\xff\x41\xf9\xfc\x7f\xfd\xff\xac\x6a\xfd\xff\x3f\xdb" "\xfc\x2f\xdf\xfb\xce\x7b\x0f\xef\xd0\xff\xd7\xff\xd7\xff\xbf\x22\xd7" "\xf5\xf3\xff\xeb\x2f\x7e\x9f\xff\xaf\xff\xaf\xff\x9f\xe8\xff\x97\xa1" "\xff\xef\xf3\xff\xe9\xad\x7e\xeb\xff\xc7\xdc\x7f\x24\xcc\xa4\x22\xf9" "\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdf\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x3f\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x13" "\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xdf\xa7\xfd\xff\x01\xfe\xfc" "\xff\x78\x3e\xf4\xff\x9b\xf5\xac\xff\x1f\xdf\x74\xf5\xff\xdb\x2a\xfa" "\xf7\x69\x15\x5d\xdb\xfe\xff\x07\x17\x7b\xe2\xfa\xff\x57\xda\xff\x1f" "\x6b\x7b\xa9\xfe\xbf\xfe\xff\x20\x1f\xbf\xfe\xbf\xfe\x3f\x4b\xf5\x5b" "\xff\x3f\xe6\xfe\xd9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x90\xfb" "\x87\x8e\x15\x73\xf1\x0a\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xe3\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0d\x33\xa9\x48\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xed\xf7\xdf\xa9\xff\x5f\x1b" "\xf1\xf9\xff\xfd\x2a\xf5\xef\x7f\x9e\xbf\x50\xf4\xff\x5b\xf4\x4f\xff" "\xbf\x3d\xfd\x7f\xfd\xff\x41\x3e\x7e\xfd\x7f\xfd\x7f\x96\xea\xb7\xfe" "\x7f\xcc\xfd\x73\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x7f" "\x2c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xe3\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x27\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xdb\xef\xbf\x6f\x3f\xff\x5f\xff\xbf\xa3\xd5" "\xf6\xef\xf5\xff\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xa0" "\xdf\xfa\xff\x31\xf7\x9f\x0c\x33\xa9\x48\xfe\x07\x00\x00\x80\xff\x63" "\xef\xce\x9e\x2c\xad\xef\x3a\x8e\x3f\x8d\x33\x35\x3d\x85\x17\xde\x59" "\xa5\x37\x56\x79\xe9\x9f\xc0\x85\x5c\xeb\x1f\xe0\x85\x17\x7a\x21\x55" "\x96\x17\xa0\xa2\xe2\xce\xe0\xbe\xa2\x28\xb8\x2b\x82\xbb\x09\x59\x20" "\x10\x42\x12\xc8\xbe\x40\x36\x08\x59\x81\x24\x24\x21\xfb\x4a\x36\x42" "\x42\x4d\x6a\xba\xbf\xdf\xef\x4c\x9f\x3e\xfd\x9c\xee\x9e\xd3\xdd\xcf" "\xf3\xfb\xbd\x5e\x17\xf3\x95\x0e\x3d\xe7\x98\x6a\x07\x3e\xd3\xf3\xf6" "\xe9\x41\xee\xfe\x6b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xba" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xc5\xb8\xa5\x93\xfd\xaf" "\xff\x9f\x61\xff\x7f\x85\xfe\x7f\x5f\xfd\xff\x8f\xeb\xff\xf7\x7a\x7d" "\xfd\xbf\xfe\xbf\x65\xfa\xff\x71\xfa\xff\x15\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xb5\x9a\x5a\xff\x9f\xbb\xff\x97\xe2\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x2f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xf5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x2b\x71\x4b\x27\xfb" "\x7f\xa1\xff\xdf\x18\xfa\xec\xff\x33\xe3\x9d\x47\xff\xef\xf9\xff\x9e" "\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x2f\x73\xbc\xfd\xff\x4d\x17\x7e\xe5" "\xd3\xff\xeb\xff\xf5\xff\x41\xff\xbf\xaf\xfe\xff\xcc\x5e\x9f\xaf\xff" "\xa7\x45\x53\xeb\xff\x73\xf7\xff\x6a\xdc\xb2\xdf\xe1\xf7\xc4\xad\xcf" "\xac\xfc\xc5\x04\x00\x00\x00\x38\x51\xb9\xfb\x7f\x2d\x6e\xe9\xe4\xfb" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xaf\xc7\x2d\x9d\xec\xff\xf5\x3d\xff\xff\xec\xd6\xc7\x67" "\xda\xff\x17\xfd\xbf\xfe\x7f\xeb\x03\xfa\x7f\xfd\xbf\xfe\x7f\xb6\x3c" "\xff\x7f\x5c\x4f\xfd\xff\xf5\x8f\x5f\x79\xed\xb3\xf7\xfd\xf0\xfd\x07" "\x79\x7d\xfd\xbf\xfe\xdf\xf3\xff\xf5\xff\xac\xd7\xd4\xfa\xff\xdc\xfd" "\xbf\x11\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x33\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x2b\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x7f\x3b\x6e\xe9\x64\xff\xaf\xaf\xff\x9f\xf5\xf3\xff\x8b" "\xfe\x5f\xff\xbf\xf5\x01\xfd\xbf\xfe\x5f\xff\x3f\x5b\xfa\xff\x71\x3d" "\xf5\xff\x87\x79\x7d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xbd\xa6\xd6\xff" "\xe7\xee\xff\x9d\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xbb" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x63\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\x9f\x8b\x5b\x3a\xd9\xff\xfa\xff\xa3\xef\xff\x5f" "\xd0\xff\xeb\xff\xe3\xea\xff\xf5\xff\xfa\xff\xa3\xa7\xff\x1f\xa7\xff" "\x5f\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\x6f" "\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x17\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x7f\x10\xb7\x74\xb2\xff\xf5\xff\x9e\xff\xaf\xff\xd7\xff\xeb" "\xff\x97\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x2b\xe8\xff\x2f\xb7" "\x9f\x3f\xad\xff\xd7\xff\xeb\xff\xb9\xd4\x01\xfb\xff\xe7\x47\x7e\xd9" "\x5e\x4b\xff\x9f\xbb\xff\x0f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x1f\xc7\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9f\xc4\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x3f\x74\xff\xbf\xfb\x4b\x6f\x8b\xfe\x7f\x39\xfd" "\xff\xf1\xd0\xff\x8f\x9b\x4c\xff\xbf\x71\x6a\xe9\x87\xbb\xed\xff\x9f" "\xdb\x7e\xa3\x0d\xf4\xff\x9e\xff\xaf\xff\xd7\xff\xb3\xc3\xd4\x9e\xff" "\x9f\xbb\xff\x4f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x9f" "\xc5\x2d\x23\xfb\xff\xc0\xbf\x99\x0f\x00\x00\x00\x9c\xa8\xdc\xfd\x7f" "\x1e\xb7\xf8\xfe\x3f\x00\x00\x00\xcc\x5e\x56\x67\xb9\xfb\xff\x22\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\x2f\x7f\xfd\xb1" "\xfe\xff\xfe\x4b\xde\x9f\xfe\x7f\x5a\xf4\xff\xe3\x26\xd3\xff\xef\xa1" "\xdb\xfe\x7f\xb8\xf8\x7e\xf5\xff\xf3\x7d\xff\xfa\x7f\xfd\x3f\xbb\x4d" "\xad\xff\xcf\xdd\xff\x97\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xab\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\xeb\xb8\xa5\x93\xfd\xbf\xbc\xff\xbf" "\xf8\x9f\xeb\xff\xf7\x47\xff\xbf\xf3\xfd\xeb\xff\x97\x7f\x7d\xac\xab" "\xff\xcf\x9f\x51\xff\x3f\xda\xff\x5f\xed\xf9\xff\x7d\xea\xa5\xff\xff" "\xa1\x83\xfe\xc4\xe1\xf8\xfb\xff\x33\xfa\xff\x9d\x3f\xbf\xfe\xff\x08" "\x9d\xf4\xfb\x6f\xbc\xff\x3f\xbb\xea\xf3\xf5\xff\x2c\x33\xb5\xfe\x3f" "\x77\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6f\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6f\xe3\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xd6\xb8\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd\xff" "\xfc\xfa\xff\xc5\xe7\xff\x27\xfd\xff\xb6\xe3\x78\xfe\xff\x70\xec\xfd" "\xff\x29\xfd\xff\x3e\xf5\xd2\xff\x1f\x96\xe7\xff\xaf\xa0\xff\xef\xb2" "\xff\x3f\xb5\xa6\xf7\xdf\x78\xff\xef\xf9\xff\x1c\xca\xd4\xfa\xff\xdc" "\xfd\xb7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\xc1\x6d\xcf\x0d\x5b\xbb" "\xff\xef\x86\xc1\xfe\x07\x00\x00\x80\x39\xba\xf4\xcf\x0e\x2c\xfe\x81" "\xd2\x90\xbb\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f" "\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xbf\xc6\xfe\xff\xca\x7c\x7d\xfd\xff" "\xf2\xaf\x8f\xa3\xea\xff\x3d\xff\xbf\x87\xfe\xdf\xf3\xff\xf7\x4b\xff" "\x3f\x4e\xff\xbf\x82\xfe\xff\x28\xfa\xff\x53\x53\xef\xff\x57\xbc\xff" "\xc5\xfe\xff\xf6\xbd\x3e\x7f\x0a\xfd\xff\x8d\xfa\x7f\x26\x66\x47\xff" "\xff\xe0\xc5\x8f\x9f\x54\xff\x9f\xbb\xff\x1f\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x3f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xc4\x2d\x9d" "\xec\xff\x23\xef\xff\xcf\xee\xfd\xda\xfa\xff\xe6\xfa\x7f\xcf\xff\xd7" "\xff\x6f\xd1\xff\x2f\xa7\xff\x3f\x1e\xfa\xff\x71\x07\xe8\xff\x2f\x7c" "\xa9\xeb\xff\xf5\xff\x5d\x3c\xff\x7f\x5d\xef\x7f\x0a\xfd\xbf\xe7\xff" "\x33\x35\x3b\xfa\xff\x4b\x9c\x54\xff\x9f\xbb\xff\x5f\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xbf\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xed\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xef\x71" "\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9\xeb\xeb" "\xff\xe7\x49\xff\x3f\xce\xf3\xff\x57\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\xd6\x6a\x6a\xfd\x7f\xee\xfe\x3b\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x1f\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9f\x71\x4b\x27\xfb\x5f\xff" "\x7f\xb4\xfd\x7f\x7e\x5c\xff\xaf\xff\x1f\xf4\xff\xfa\x7f\xfd\xff\xb1" "\xe8\xb6\xff\xdf\x58\xf6\x4f\xa2\xdd\xf6\xe8\xff\x1f\xf9\xf9\x73\x3f" "\xb9\xf3\x23\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x0d\x26\xd1\xff" "\x9f\xbf\xf8\x6f\x97\xb9\xfb\xff\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\xff\x77\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x4f" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x6f\xdc\x72\xc0\xfd\xff" "\x03\x6b\x7d\x57\xc7\x47\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9" "\xeb\xeb\xff\xe7\x69\x76\xfd\xff\xe9\x9d\x7f\xe9\xf9\xff\xfa\x7f\xfd" "\xff\x7c\xdf\xbf\xfe\x5f\xff\xcf\x6e\x93\xe8\xff\x2f\xf9\xeb\xdc\xfd" "\xff\x17\xb7\xf8\xfe\x3f\x00\x00\x00\x34\x23\x77\xff\xff\xc7\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x8b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xc5\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xcb\x5f\xff\xb0\xfd\xff\xe6\xb0\x9c\xfe\xff\x78\xcc\xae\xff\x5f" "\xa0\xff\xd7\xff\xeb\xff\xe7\xfb\xfe\x5b\xeb\xff\x4f\xeb\xff\x59\x83" "\xa9\xf5\xff\xb9\xfb\xef\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x2f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x97\xc6\x2d\xfb" "\xdc\xff\x67\x8e\xe4\x5d\x01\x00\x00\x00\xeb\x94\xbb\xff\x65\x71\x4b" "\x27\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf2\xd7\xf7\xfc" "\xff\x79\xd2\xff\x8f\xd3\xff\x0f\xc3\x70\xf7\xc8\x1b\x58\xd6\xff\x9f" "\x3f\xa3\xff\xd7\xff\x77\xd9\xff\x7b\xfe\x3f\xeb\x30\xb5\xfe\x3f\x77" "\xff\xcb\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xdd\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x4f\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x22\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\xf9\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf\x82\xe7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xd6\x6a\x6a\xfd\x7f\xee\xfe\x7b\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x7d\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x3f\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xe7\xf4\xff" "\x8b\xf4\xff\xc7\xe3\xe8\xfa\xff\x41\xff\xaf\xff\xd7\xff\xaf\xa0\xff" "\xd7\xff\xeb\xff\x59\x74\x5c\xfd\xff\xf3\xf1\xeb\xfd\xaa\xfe\x3f\x77" "\xff\xab\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x03\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xea\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x4d\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xcb\xec\xff\xcf\x7a\xfe\xbf\xfe\x7f\x4a\x3c\xff\x7f\xdc\xda\xfa\xff" "\x6b\x06\xfd\xbf\xfe\x7f\x17\xfd\xbf\xfe\x5f\xff\xcf\xa2\xe3\xea\xff" "\xf7\xea\xfd\x17\xff\x3a\x77\xff\x6b\xe3\x96\x4e\xf6\x3f\x00\x00\x00" "\x34\xe0\x8a\x55\x7f\x43\xee\xfe\x07\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5d\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\x77\xf6\xff\xc3\xa0\xff\xd7\xff\xaf\xe5" "\xf9\xff\xfa\xff\x5d\x96\xf4\xff\x9b\x83\xfe\x7f\xed\xf4\xff\xe3\x3c" "\xff\x7f\x05\xfd\x7f\x9b\xfd\xff\x15\x43\x43\xfd\xff\xd9\x3d\x3f\x5f" "\xff\xcf\x14\x4d\xad\xff\xcf\xdd\xff\xfa\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\x86\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x63\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x29\x6e\x69\x69\xff" "\xbf\xb0\x77\xfa\x36\xff\xfe\xff\xcc\xc2\x27\xea\xff\x87\x61\x78\xf2" "\x06\xcf\xff\xd7\xff\x8f\xbc\xbe\xfe\x7f\x32\xfd\x7f\xfd\xb7\xaa\xff" "\x5f\x1f\xfd\xff\x38\xfd\xff\x0a\xfa\xff\x36\xfb\x7f\xcf\xff\xd7\xff" "\x73\x62\xa6\xd6\xff\xe7\xee\x7f\x73\xdc\xd2\xd2\xfe\x07\x00\x00\x80" "\xce\xe5\xee\x7f\x4b\xdc\x62\xff\x03\x00\x00\xc0\xcc\xfd\x4c\xfd\x61" "\xac\xdc\xfd\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xb7\xc5" "\x2d\x9d\xec\xff\xf9\xf7\xff\x8b\x9f\xa8\xff\x1f\x2e\xeb\xf9\xff\xfa" "\xff\xad\x0f\xe8\xff\xf5\xff\xfa\xff\xd9\xba\xdc\xfe\xfe\x8e\xcd\xf8" "\x67\x9a\xfe\x7f\xa6\xfd\xff\xf6\xff\x65\xea\xff\x0f\x67\x3f\xfd\xfc" "\xc6\x1e\xff\xde\x33\xe8\xff\xd7\xdc\xff\xe7\x57\x85\xfe\x9f\x79\x9b" "\x5a\xff\x9f\xbb\xff\xed\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x24\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x11\xb7\x74\xb2\xff\xf7\xe8\xff\xeb" "\x3f\xd7\xff\xef\x8f\xfe\x7f\xe7\xfb\xd7\xff\x2f\xff\xfa\x58\x67\xff" "\xbf\xa9\xff\xef\xb6\xff\x3f\xa3\xff\x1f\x35\x95\xe7\xff\x5f\x75\xd5" "\x4f\x3c\xaa\xff\xf7\xfc\xff\x16\xfb\xff\x31\xfa\x7f\xcf\xff\xd7\xff" "\xb3\x68\x6a\xfd\x7f\xee\xfe\x77\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbb\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3d\x71\x4b\x27\xfb\x7f\x77" "\xff\x7f\x7a\xd8\x2e\x54\xb7\x2d\xeb\xff\xa3\x51\x6b\xa0\xff\xdf\xdc" "\xf5\x71\xfd\xbf\xfe\x7f\xeb\x03\x33\xe8\xff\x07\xfd\x7f\xb7\xfd\xbf" "\xe7\xff\x8f\x9b\x4a\xff\xef\xf9\xff\x87\x7b\xff\xfa\x7f\xfd\xff\x9c" "\xdf\xff\x81\xfa\xff\x1f\xd9\xfd\xf9\xfa\x7f\x5a\x34\xb5\xfe\x3f\x77" "\xff\xa3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb1\xad\xdf" "\x7a\xb5\xff\x01\x00\x00\xa0\x45\x8f\x6d\xfd\xb8\x39\xbc\x37\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x8f\x5b\x3a\xd9\xff\x7b\x3c\xff" "\x7f\xb4\xff\x1f\x3c\xff\x7f\x17\xfd\xff\xce\xf7\xaf\xff\x5f\xfe\xf5" "\xa1\xff\xd7\xff\xeb\xff\x8f\x9e\xfe\x7f\x9c\xfe\x7f\x05\xfd\xbf\xfe" "\xdf\xf3\xff\xaf\xfb\xb9\xef\xd3\xff\xb3\x3e\x53\xeb\xff\x73\xf7\xbf" "\x2f\x6e\xd9\x1a\x7e\x3f\xfa\xfd\x87\xfc\x5f\x13\x00\x00\x00\x98\x90" "\xdc\xfd\xef\x8f\x5b\x3a\xf9\xfe\x3f\x00\x00\x00\xf4\x20\x77\xff\x07" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x83\x71\x4b\x27\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xcb\x5f\x5f\xff\x3f\x4f\xfa\xff" "\x71\xfa\xff\x15\xfa\xe9\xff\x37\x97\x7d\xf0\xa4\xfb\xf9\xcb\x75\xd2" "\xef\xbf\x99\xfe\xdf\xf3\xff\x59\xa3\xa9\xf5\xff\xb9\xfb\x3f\x14\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x1c\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x93\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x6f\xbf\xff\xff\x59\xfd\xff\xc2" "\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\xe7\x3f\xd1\x97\xd3\xff\xaf\xd0\x4f" "\xff\xbf\xd4\x49\xf7\xf3\x73\x7f\xff\xfa\x7f\xfd\x3f\xbb\x4d\xad\xff" "\xcf\xdd\xff\x54\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x48" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x34\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x3f\x16\xb7\x74\xb2\xff\xf5\xff\x7d\xf5\xff\x1b" "\x43\x8f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\x3d\x99\x4f\xff\x7f\xe7\xa9" "\x65\x1f\xf5\xfc\x7f\xfd\xbf\xfe\x7f\xbe\xef\x5f\xff\xaf\xff\x67\xb7" "\xa9\xf5\xff\xb9\xfb\x9f\xde\x38\xd5\xe5\xfe\x07\x00\x00\x80\xb9\xfa" "\xa9\x1f\xfb\x85\xa7\xf6\xfb\xf7\x3e\xbd\xf5\xe3\xe6\xf0\xf1\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x44\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x32\x6e\xe9\x64\xff\xeb\xff\xfb\xea\xff\x57\x3d\xff" "\xff\xb4\xfe\x5f\xff\xaf\xff\xd7\xff\xcf\xdc\x7c\xfa\xff\xe5\xf4\xff" "\xfa\x7f\xfd\xff\x7c\xdf\xbf\xfe\x5f\xff\xcf\x6e\x53\xeb\xff\x73\xf7" "\x3f\x13\xb7\x5c\x32\xfc\x96\xfe\x3f\xe8\x01\x00\x00\x00\x66\x23\x77" "\xff\xa7\xe2\x96\x4e\xbe\xff\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe9\xb8" "\x65\xd7\xfe\x3f\xbf\xcf\x3f\xd5\x0e\x00\x00\x00\x4c\x4d\xee\xfe\xcf" "\xc4\x2d\x9d\x7c\xff\x5f\xff\x3f\xf1\xfe\x7f\x38\xa2\xfe\x3f\xfe\x3e" "\xcf\xff\xdf\xa6\xff\x5f\xd9\xff\xc7\x4f\xa1\xff\xd7\xff\x4f\x9f\xfe" "\x7f\xdc\x65\xf6\xff\xe7\x37\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe" "\x9f\x45\x53\xeb\xff\x73\xf7\x3f\x70\xef\xd0\xe5\xfe\x07\x00\x00\x80" "\x46\xed\xf8\x1d\x85\xcf\x6e\xfd\xb8\x39\x7c\x2e\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x3f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x5f\x88\x5b\x3a\xd9\xff\xfa\xff\x89\xf7\xff\x87\x7a\xfe\xff\xd9\xfa" "\x9f\x0e\xfa\xfc\x7f\xfd\x7f\x63\xfd\xff\xcd\x9b\x4b\x5f\xdf\xf3\xff" "\xf5\xff\x2d\xd3\xff\x8f\xf3\xfc\xff\x15\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\xb5\x3a\x40\xff\xbf\x35\x48\x8f\xba\xff\xcf\xdd\xff\xc5\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa5\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x72\xdc\x72\xf5\x30\xdc\xb8\xf0\x67\xde\x00\x00" "\x00\x80\x79\xca\xdd\xff\x95\xb8\xa5\x93\xef\xff\xeb\xff\x4f\xa0\xff" "\xbf\xe5\xcc\x30\x1c\x69\xff\xbf\x8f\xe7\xff\xeb\xff\xfb\xe8\xff\xf7" "\x78\xfd\x76\xfa\xff\x1f\xbc\xf2\xdc\xc3\x3f\x7d\xcd\x3d\x77\xe9\xff" "\xb9\xe8\x38\xfb\xff\xfc\x5a\xd0\xff\xeb\xff\xf5\xff\xdb\xf4\xff\x9d" "\xf7\xff\x17\x7e\xd0\xff\xb3\x60\x6a\xcf\xff\xcf\xdd\xff\xd5\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x6c\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x7f\x2d\x6e\xb9\xb0\xff\x1f\x3a\xa9\x77\x05\x00\x00" "\x00\xac\x53\xee\xfe\xaf\xc7\x2d\x9d\x7c\xff\x5f\xff\xdf\xe2\xf3\xff" "\xe7\xd9\xff\xe7\x7f\xd7\x27\xd0\xff\x9f\x9b\x5f\xff\x9f\x4d\x71\xef" "\xfd\xbf\xe7\xff\xeb\xff\x77\xf3\xfc\xff\x71\xfa\xff\x15\xf4\xff\xfa" "\x7f\xfd\xbf\xe7\xff\xb3\x56\x53\xeb\xff\x73\xf7\x7f\x23\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x33\x6e\xc9\xfd\xbf\x71\xe0\xdf" "\xba\x07\x00\x00\x00\x26\x26\x77\xff\xb7\xe2\x16\xdf\xff\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x2e\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x53\xe9\xff" "\x93\xe7\xff\x5f\xfc\x3c\xcf\xff\xdf\xa6\xff\xd7\xff\x1f\x84\xfe\x7f" "\x9c\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xad\xa6\xd6\xff\xe7" "\xee\xff\x76\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x3e\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xdf\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x5f\xfe\xfa\xfa\xff\x79\xd2\xff\x8f\xd3\xff\xaf\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\xac\xd5\xd4\xfa\xff\xdc\xfd\xdf\x0b\x00\x00\xff" "\xff\x72\x17\x75\xd6", 25233)); NONFAILING(syz_mount_image( /*fs=*/0x200003c0, /*dir=*/0x20000540, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x20000840, /*chdir=*/1, /*size=*/0x6291, /*img=*/0x2000c200)); break; case 1: NONFAILING(memcpy((void*)0x20000000, "./file1\000", 8)); syscall(__NR_truncate, /*file=*/0x20000000ul, /*len=*/0x5e02ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }