// https://syzkaller.appspot.com/bug?id=781a4c1f2279253fbed103d86f99047ae1ae76ad // 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 #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 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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() { char mypid[32]; snprintf(mypid, sizeof(mypid), "%d", getpid()); 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", mypid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) exit(1); netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) exit(1); } } close(sock_route); close(sock_generic); } 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x20000080, "jfs\000", 4)); NONFAILING(memcpy((void*)0x20000280, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x91\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xa2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x01\x00\x00\x00\x00\x00\x00\x00\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\x08\x00" "\x00\x00\x00\x00\x00\x00\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282)); NONFAILING(memcpy( (void*)0x20003700, "\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\x8e\xd0\x4c\x15" "\x11\x0b\xd0\x0d\x33\x87\x77\xa6\xeb\x67\x26\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x60\xdc\x3c\x4e\x27\xee\x7a\x1b\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00" "\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31" "\x72\xdd\xf5\x1d\xc0\xcf\xec\xcd\x6b\x07\x12\x03\x21\x75\x52\x13\xd6\x8e" "\x31\xc6\xd9\x64\xd7\x97\xf8\x42\xeb\x62\xc2\xb5\xe1\x56\x12\x42\xa1\x17" "\x6c\xd7\xbb\x36\x0b\xbe\xe1\xb5\x4b\xa0\x51\xed\x28\x50\x22\x61\x54\x54" "\xd1\x36\x3c\xb4\x05\x84\xda\xbc\x54\x58\x15\x0f\xb4\x02\x94\x07\xd4\xaa" "\x52\x25\x68\x1f\xe8\x0b\xa2\x42\xe5\x21\xaa\x02\x0a\x48\x55\x69\x05\xd9" "\x6a\xe6\xfc\xff\xff\x9d\x99\x9d\x9d\xd9\xf5\x8e\x9d\x33\xe7\x7c\x3e\x52" "\xf2\xcb\xce\x9c\x99\x73\xe6\xcc\x7f\x66\xf7\x6b\xe7\xbb\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x6c\xcb\x1b\x66\x3f\x55\xcb\xb2" "\xac\x56\xab\xe5\x17\x6c\xcc\xb2\x17\xd5\xe7\xfa\x89\x8d\x8d\x4b\x5e\xfb" "\xc2\x1e\x1f\x00\x00\x00\xb0\x76\xbf\x68\xfc\xfb\xb9\x5b\xd2\x05\x87\x57" "\x70\xa3\xa6\x6d\xfe\xe9\xce\x6f\x7f\x75\x61\x61\x61\x21\x7b\xdf\xf0\x9f" "\x8e\x7e\x6e\x61\x21\x5d\x31\x91\x65\xa3\xeb\xb2\xac\x71\x5d\x74\xf5\x07" "\xef\xaf\x35\x6f\x13\x3c\x9e\x8d\xd7\x86\x9a\xbe\x1e\xea\xb1\xfb\xe1\x1e" "\xd7\x8f\xf4\xb8\x7e\xb4\xc7\xf5\x63\x3d\xae\x5f\xd7\xe3\xfa\xf1\x1e\xd7" "\x2f\x39\x01\x4b\xac\xcf\x6a\xe9\xce\xb6\x35\xfe\x73\x63\x7e\x4a\xb3\x5b" "\xb3\xd1\xc6\x75\xdb\x3a\xdc\xea\xf1\xda\xba\xa1\xfa\xb9\x4b\xb7\xcd\x6a" "\x8d\xdb\x2c\x8c\x9e\xc8\xe6\xb2\x53\xd9\x6c\x36\xdd\xb2\x7d\xbe\x6d\xad" "\xb1\xfd\xd7\xb7\xd4\xf7\xf5\xd6\x2c\xee\x6b\xa8\x69\x5f\x9b\xeb\x2b\xe4" "\x27\x8f\x1e\x8f\xc7\x50\x0b\xe7\x78\x5b\xcb\xbe\x16\xef\x33\xfa\xd1\xeb" "\xb3\x89\x9f\xfe\xe4\xd1\xe3\x7f\x7d\xe1\xd9\xdb\x3b\xcd\x9e\xa7\xa1\xe5" "\xfe\xf2\xe3\xdc\xb1\xb5\x7e\x9c\x9f\x08\x97\xe4\xc7\x5a\xcb\xd6\xa5\x73" "\x12\x8f\x73\xa8\xe9\x38\x37\x77\x78\x4e\x86\x5b\x8e\xb3\xd6\xb8\x5d\xfd" "\xbf\xdb\x8f\xf3\xb9\x15\x1e\xe7\xf0\xe2\x61\xde\x50\xed\xcf\xf9\x78\x36" "\xd4\xf8\xef\xef\x34\xce\xd3\x48\x2d\xeb\x70\x9e\x36\x87\xcb\x7e\x76\x57" "\x96\x65\x97\x17\x0f\xbb\x7d\x9b\x25\xfb\xca\x86\xb2\x0d\x2d\x97\x0c\x2d" "\x3e\x3f\xe3\xf9\x8a\xac\xdf\x47\x7d\x29\xbd\x34\x1b\x59\xd5\x3a\xdd\xb2" "\x82\x75\x5a\x9f\x33\xdb\x5a\xd7\x69\xfb\x6b\x22\x3e\xff\x5b\xc2\xed\x46" "\x96\x39\x86\xe6\xa7\xe9\x47\x8f\x8d\x35\x3d\xef\x3f\x5f\xb8\x96\x75\x1a" "\xd5\x1f\xf5\x72\xaf\x95\xf6\x35\xd8\xef\xd7\x4a\x51\xd6\x60\x5c\x17\xdf" "\x69\x3c\xe8\x27\x3a\xae\xc1\x6d\xe1\xf1\x3f\xba\x7d\xf9\x35\xd8\x71\xed" "\x74\x58\x83\xe9\x71\x37\xad\xc1\xad\xbd\xd6\xe0\xd0\xd8\x70\xe3\x98\xd3" "\x93\x50\x6b\xdc\x66\x71\x0d\xee\x6a\xd9\x7e\xb8\xb1\xa7\x5a\x63\x3e\xb3" "\xbd\xfb\x1a\x9c\xba\x70\xfa\xdc\xd4\xfc\xc7\x3e\x7e\xcf\xdc\xe9\x63\x27" "\x67\x4f\xce\x9e\xd9\xb3\x6b\xd7\xf4\x9e\x7d\xfb\x0e\x1c\x38\x30\x75\x62" "\xee\xd4\xec\x74\xfe\xef\x6b\x3c\xdb\xc5\xb7\x21\x1b\x4a\xaf\x81\xad\xe1" "\xdc\xc5\xd7\xc0\xab\xdb\xb6\x6d\x5e\xaa\x0b\x5f\x1c\x5b\xf2\xfe\x7b\xad" "\xaf\xc3\xf1\x2e\xaf\xc3\x8d\x6d\xdb\xf6\xfb\x75\x38\xd2\xfe\xe0\x6a\x37" "\xe6\x05\xb9\x74\x4d\xe7\xaf\x8d\xf7\xd4\x4f\xfa\xf8\x95\xa1\x6c\x99\xd7" "\x58\xe3\xf9\xd9\xb9\xf6\xd7\x61\x7a\xdc\x4d\xaf\xc3\x91\xa6\xd7\x61\xc7" "\xef\x29\x1d\x5e\x87\x23\x2b\x78\x1d\xd6\xb7\x39\xb7\x73\x65\x3f\xb3\x8c" "\x34\xfd\xd3\xe9\x18\x96\xff\x5e\xb0\xb6\x35\xb8\xb1\x69\x0d\xb6\xff\x3c" "\xd2\xbe\x06\xfb\xfd\xf3\x48\x51\xd6\xe0\x78\x58\x17\xdf\xdb\xb9\xfc\xf7" "\x82\xcd\xe1\x78\x9f\x98\x5c\xed\xcf\x23\xc3\x4b\xd6\x60\x7a\xb8\xe1\xbd" "\xa7\x7e\x49\xfa\x79\x7f\xfc\x40\x63\x74\x5a\x97\x77\xd4\xaf\xb8\x69\x2c" "\xbb\x38\x3f\x7b\xfe\xde\x47\x8e\x5d\xb8\x70\x7e\x57\x16\xc6\x0d\xf1\xb2" "\xa6\xb5\xd2\xbe\x5e\x37\x34\x3d\xa6\x6c\xc9\x7a\x1d\x5a\xf5\x7a\x3d\x3c" "\x77\xe7\x13\x77\x74\xb8\x7c\x63\x38\x57\xe3\xf7\xd4\xff\x35\xbe\xec\x73" "\x55\xdf\x66\xef\xbd\xdd\x9f\xab\xc6\x77\xb7\xce\xe7\xb3\xe5\xd2\xdd\x59" "\x18\x7d\x76\xa3\xcf\x67\xa7\xef\xe6\xf5\xf3\x39\x96\x65\x9f\xff\xd6\x63" "\x0f\x7e\xe3\xd1\xcf\xbf\x61\xd9\xf3\x59\xcf\x9b\x9f\x98\x5a\xfb\xcf\xe2" "\x29\x97\x36\xbd\xff\x8e\x2e\xf3\xfe\x1b\x73\xff\xf3\xf9\xfe\xd2\x5d\x3d" "\x3e\x3c\x3a\x92\xbf\x7e\x87\xd3\xd9\x19\x6d\x79\x3f\x6e\x7d\xaa\x46\x1a" "\xef\x5d\xb5\xc6\xbe\x9f\x9b\x5a\xd9\xfb\xf1\x68\xf8\xe7\x46\xbf\x1f\xdf" "\xda\xe5\xfd\x78\x53\xdb\xb6\xfd\x7e\x3f\x1e\x6d\x7f\x70\xf1\xfd\xb8\xd6" "\xeb\x4f\x3b\xd6\xa6\xfd\xf9\x1c\x0f\xeb\xe4\xd4\x74\xf7\xf7\xe3\xfa\x36" "\x9b\x76\xaf\x76\x4d\x8e\x74\x7d\x3f\xbe\x2b\xcc\x5a\x38\xff\xaf\x09\x49" "\x21\xe5\xa2\xa6\xb5\xb3\xdc\xba\x4d\xfb\x1a\x19\x19\x0d\x8f\x6b\x24\xee" "\xa1\x75\x9d\xee\x69\xd9\x7e\x34\x64\xb3\xfa\xbe\x9e\xda\x7d\x6d\xeb\x74" "\xc7\x5d\xf9\x7d\x0d\xa7\x47\xb7\xe8\x46\xad\xd3\x89\xb6\x6d\xfb\xbd\x4e" "\xd3\x9f\x7d\x2d\xb7\x4e\x6b\xbd\xfe\xf4\xed\xda\xb4\x3f\x9f\xe3\x61\x5d" "\xdc\xba\xa7\xfb\x3a\xad\x6f\xf3\xf4\xde\xb5\xbf\x77\xae\x8f\xff\xd9\xf4" "\xde\x39\xd6\x6b\x0d\x8e\x0e\x8f\xd5\x8f\x79\x34\x2d\xc2\xc6\xfb\x7d\xb6" "\xb0\x3e\xae\xc1\x7b\xb3\xe3\xd9\xd9\xec\x54\x36\xd3\xb8\x76\xac\xb1\x9e" "\x6a\x8d\x7d\x4d\xde\xb7\xb2\x35\x38\x16\xfe\xb9\xd1\xef\x95\x9b\xba\xac" "\xc1\x1d\x6d\xdb\xf6\x7b\x0d\xa6\xef\x63\xcb\xad\xbd\xda\xc8\xd2\x07\xdf" "\x07\xed\xcf\xe7\x78\x58\x17\x4f\xde\xd7\x7d\x0d\xd6\xb7\x79\xe3\xfe\xfe" "\xfe\xec\xba\x23\x5c\x92\xb6\x69\xfa\xd9\xb5\xfd\xcf\xd7\x96\xfb\x33\xaf" "\x3b\xda\x4e\xd3\xf5\x5a\x2b\x23\xe1\x38\xbf\xb5\xbf\xfb\x9f\xcd\xd6\xb7" "\x39\x75\x60\xb5\x39\xb3\xfb\x79\xba\x3b\x5c\x72\x53\x87\xf3\xd4\xfe\xfa" "\x5d\xee\x35\x35\x93\xdd\x98\xf3\xb4\x29\x1c\xe7\xb3\x07\x96\x3f\x4f\xf5" "\xe3\xa9\x6f\xf3\xb9\x83\x2b\x5c\x4f\x87\xb3\x2c\xbb\xf4\x91\xfb\x1b\x7f" "\xde\x1b\xfe\x7e\xe5\xef\x2e\x7e\xf7\xab\x2d\x7f\xef\xd2\xe9\xef\x74\x2e" "\x7d\xe4\xfe\x1f\xbf\xf8\xc4\x3f\xae\xe6\xf8\x01\x18\x7c\xcf\xe7\x63\x43" "\xfe\xbd\xae\xe9\x6f\xa6\x56\xf2\xf7\xff\x00\x00\x00\xc0\x40\x88\xb9\x7f" "\x28\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x3f\xfe\x5f\xe1\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x48\x98\x49\x45\xf2\xff\xa6\x37\x3e\x3b\xf7" "\xfc\xa5\x2c\x35\xf3\x17\x82\x78\x7d\x3a\x0d\x0f\xe4\xdb\xc5\x8e\xeb\x74" "\xf8\x7a\x62\x61\x51\xfd\xf2\xfb\xbf\x3c\xfb\xdf\xff\x70\x69\x65\xfb\x1e" "\xca\xb2\xec\xe7\x0f\xfc\x41\xc7\xed\x37\x3d\x10\x8f\x2b\x37\x11\x8e\xf3" "\xea\x9b\x5a\x2f\x5f\xe2\xab\xf7\xac\x68\xdf\x47\x1f\xbe\x94\xf6\xdb\xdc" "\x5f\xff\x42\xb8\xff\xf8\x78\x56\xba\x0c\x3a\x55\x70\xa7\xb3\x2c\xfb\xfa" "\x2d\x9f\x69\xec\x67\xe2\xfd\x57\x1a\xf3\xe9\x07\x8e\x36\xe6\x83\x97\x9f" "\x78\xbc\xbe\xcd\x73\x07\xf3\xaf\xe3\xed\x9f\x79\x59\xbe\xfd\x5f\x84\xf2" "\xef\xe1\x13\xc7\x5a\x6e\xff\x4c\x38\x0f\x3f\x0c\x73\xfa\x6d\x9d\xcf\x47" "\xbc\xdd\x57\xae\xbc\x66\xf3\xfe\xf7\x2e\xee\x2f\xde\xae\xb6\xf5\xe6\xc6" "\xc3\x7e\xf2\x03\xf9\xfd\xc6\xdf\x93\xf3\xd9\xc7\xf3\xed\xe3\x79\x5e\xee" "\xf8\xbf\xf1\xe9\xa7\xbe\x52\xdf\xfe\x91\x57\x75\x3e\xfe\x4b\x43\x9d\x8f" "\xff\xa9\x70\xbf\x5f\x0e\xf3\x7f\x5f\x91\x6f\xdf\xfc\x1c\xd4\xbf\x8e\xb7" "\xfb\x64\x38\xfe\xb8\xbf\x78\xbb\x7b\xbf\xf4\xcd\x8e\xc7\x7f\xf5\x53\xf9" "\xf6\xe7\xde\x9c\x6f\x77\x34\xcc\xb8\xff\x1d\xe1\xeb\x6d\x6f\x7e\x76\xae" "\xf9\x7c\x3d\x52\x3b\xd6\xf2\xb8\xb2\xb7\xe4\xdb\xc5\xfd\x4f\x7f\xf7\x8f" "\x1b\xd7\xc7\xfb\x8b\xf7\xdf\x7e\xfc\xe3\x47\xae\xb4\x9c\x8f\xf6\xf5\xf1" "\xf4\xbf\xe5\xf7\x33\xd5\xb6\x7d\xbc\x3c\xee\x27\xfa\xfb\xb6\xfd\xd7\xef" "\xa7\x79\x7d\xc6\xfd\x3f\xf5\x47\x47\x5b\xce\x73\xaf\xfd\x5f\x7d\xf0\x99" "\x57\xd4\xef\xb7\x7d\xff\x77\xb7\x6d\x77\xee\x23\x3b\x1b\xfb\x5f\xbc\xbf" "\xd6\xdf\xd8\xf4\x97\x9f\xfc\x4c\xc7\xfd\xc5\xe3\x39\xfc\xb7\xe7\x5a\x1e" "\xcf\xe1\x77\x87\xd7\x71\xd8\xff\x93\x1f\x08\xeb\x31\x5c\xff\x7f\x57\xf3" "\xfb\x6b\xff\xed\x0a\x47\xdf\xdd\xfa\xfe\x13\xb7\xff\xc2\xc6\x4b\x2d\x8f" "\x27\x7a\xeb\x4f\xf3\xfd\x5f\x7d\xdd\xc9\xc6\x5c\x37\xbe\x7e\xc3\x4d\x2f" "\x7a\xf1\xcd\x97\x5f\x59\x3f\x77\x59\xf6\x9d\x75\xf9\xfd\xf5\xda\xff\xc9" "\xbf\x3a\xdb\x72\xfc\x5f\xbc\x2d\x3f\x1f\xf1\xfa\xd8\xd1\x6f\xdf\xff\x72" "\xe2\xfe\xcf\x7f\x74\xf2\xcc\xd9\xf9\x8b\x73\x33\xe9\xac\x3e\x7a\x4b\xe3" "\x77\xe7\xbc\x3d\x3f\x9e\x78\xbc\xb7\x84\xf7\xd6\xf6\xaf\x8f\x9c\xbd\xf0" "\xc1\xd9\xf3\x13\xd3\x13\xd3\x59\x36\x51\xde\x5f\xa1\x77\xcd\xbe\x14\xe6" "\x8f\xf3\x71\xb9\xfb\xd6\x0b\x4b\xde\x41\x77\x3e\x1c\x9e\xcf\x3b\xfe\xfc" "\xeb\x1b\xb6\xff\xeb\xa7\xe3\xe5\xff\xfe\x9e\xfc\xf2\x2b\x6f\xcb\xbf\x6f" "\xbd\x3a\x6c\xf7\xd9\x70\xf9\xc6\xf0\xfc\xad\x6e\xff\x4b\x3d\xb9\xe5\xb6" "\xc6\xeb\xbb\xf6\x74\x38\xc2\x85\xa5\xbf\x2f\x78\x2d\x36\x6f\xfb\xaf\x03" "\x2b\xda\x30\x3c\xfe\xf6\x9f\x0b\xe2\x7a\x3f\xf7\xf2\x0f\x36\xce\x43\xfd" "\xba\xc6\xf7\x8d\xf8\xba\x5e\xe3\xf1\x7f\x7f\x26\xbf\x9f\xaf\x85\xf3\xba" "\x10\x7e\x33\xf3\xd6\xdb\x16\xf7\xd7\xbc\x7d\xfc\xdd\x08\x57\x1e\xca\x5f" "\xef\x6b\x3e\x7f\xe1\x6d\x2e\x3e\xaf\x7f\x13\x9e\xef\x77\xfc\x30\xbf\xff" "\x78\x5c\xf1\xf1\x7e\x3f\xfc\x1c\xf3\xcd\x4d\xad\xef\x77\x71\x7d\x7c\xed" "\xd2\x50\xfb\xfd\x37\x7e\x8b\xc7\xe5\xf0\x7e\x92\x5d\xce\xaf\x8f\x5b\xc5" "\xf3\x7d\xe5\xb9\xdb\x3a\x1e\x5e\xfc\x3d\x24\xd9\xe5\xdb\x1b\x5f\xff\x49" "\xba\x9f\xdb\x57\xf5\x30\x97\x33\xff\xb1\xf9\xa9\x53\x73\x67\x2e\x3e\x32" "\x75\x61\x76\xfe\xc2\xd4\xfc\xc7\x3e\x7e\xe4\xf4\xd9\x8b\x67\x2e\x1c\x69" "\xfc\x2e\xcf\x23\x1f\xea\x75\xfb\xc5\xf7\xa7\x0d\x8d\xf7\xa7\x99\xd9\x7d" "\x7b\xb3\xc6\xbb\xd5\xd9\x7c\x5c\x67\x2f\xf4\xf1\x9f\x7b\xf8\xf8\xcc\xfe" "\xe9\xed\x33\xb3\x27\x8e\x5d\x3c\x71\xe1\xe1\x73\xb3\xe7\x4f\x1e\x9f\x9f" "\x3f\x3e\x3b\x33\xbf\xfd\xd8\x89\x13\xb3\x1f\xed\x75\xfb\xb9\x99\x43\xbb" "\x76\x1f\xdc\xb3\x7f\xf7\xe4\xc9\xb9\x99\x43\x07\x0e\x1e\xdc\x73\x70\x72" "\xee\xcc\xd9\xfa\x61\xe4\x07\xd5\xc3\xbe\xe9\x0f\x4f\x9e\x39\x7f\xa4\x71" "\x93\xf9\x43\x7b\x0f\xee\xba\xef\xbe\xbd\xd3\x93\xa7\xcf\xce\xcc\x1e\xda" "\x3f\x3d\x3d\x79\xb1\xd7\xed\x1b\xdf\x9b\x26\xeb\xb7\xfe\xfd\xc9\xf3\xb3" "\xa7\x8e\x5d\x98\x3b\x3d\x3b\x39\x3f\xf7\xf1\xd9\x43\xbb\x0e\xee\xdb\xb7" "\xbb\xe7\x6f\x03\x3c\x7d\xee\xc4\xfc\xc4\xd4\xf9\x8b\x67\xa6\x2e\xce\xcf" "\x9e\x9f\xca\x1f\xcb\xc4\x85\xc6\xc5\xf5\xef\x7d\xbd\x6e\x4f\x39\xcd\xff" "\x47\xfe\xf3\x6c\xbb\x5a\xfe\x8b\xf8\xb2\x77\xdd\xbd\x2f\xfd\x7e\xd6\xba" "\x2f\x3f\xb6\xec\x5d\xe5\x9b\xb4\xfd\x02\xd1\x67\xc3\xef\xa2\xf9\xe7\x97" "\x9c\x3b\xb0\x92\xaf\x63\xee\x1f\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a" "\x88\xb9\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5d\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x78\x98\x49\x45\xf2\x7f\xe9\xfa\xff" "\x9b\x2e\xad\x68\xff\xfa\xff\xfa\xff\xcd\xe7\x4b\xff\xbf\x62\xfd\xff\x87" "\x8a\xd6\xff\xcf\xdf\x2f\xf4\xff\xfb\x63\xad\xfd\x7b\xfd\xff\x40\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x3e\x28\x5a\xff\x3f\xe6\xfe\xf5\x59\x56" "\xc9\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x86\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x5f\x14" "\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\xfa" "\xff\x83\xa9\xc2\xfd\xff\xd1\x95\x6c\xa4\xff\xdf\x83\xfe\xff\x54\x56\xad" "\xfe\xff\xe5\x7e\x1e\xbf\xfe\xbf\xfe\x3f\x4b\xf5\xa5\xff\xdf\xfc\x1d\x6e" "\x15\xfd\xff\xe1\xa7\x97\x5e\x1f\x73\xff\x8b\xc3\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x8d\x61\x26\x15\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xf7\xaf\xff\x3f\x98\x2a\xdc" "\xff\x5f\x11\xfd\xff\x1e\xf4\xff\x7d\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55\xb4" "\xcf\xff\x8f\xb9\xff\x25\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\xbf\x34\xcc\x44\xfe\x07\x00\x00\x80\xe2\x19\xb9\xb6\x9b\xc5\xdc\xff\xb2" "\x30\x93\x25\xf9\xff\x1a\x77\x00\x00\x00\x00\xbc\xe0\x62\xee\xbf\x35\x6b" "\x2b\x82\x57\xe4\xef\xff\xf5\xff\xf5\xff\x8b\xdf\xff\x5f\x97\xae\xd3\xff" "\xd7\xff\xcf\x0a\xd9\xff\x1f\xce\xf4\xff\x8b\x43\xff\xbf\x3b\xfd\xff\x1e" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\xa2\xf5\xff\x1b\xb9\x3f\x1b\xcf" "\x5e\x1e\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x6d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\xbf\x29\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\xbf\xf8\xfd\x7f\x9f\xff" "\xaf\xff\x5f\xf4\xfe\xbf\xcf\xff\x2f\x12\xfd\xff\xee\xf4\xff\x7b\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\xff\xf6\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x08\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\xff\xe5\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcd\x61" "\x26\x15\xc9\xff\xfa\xff\x05\xef\xff\xc7\xe6\xa8\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xff\x8a\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x3f\x7d\x55\xb4\xfe\x7f\xcc\xfd\xaf\x08\x33\xa9\x48\xfe\x07\x00\x00" "\x80\x2a\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x57" "\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x84\x99\x54\x24\xff\xeb" "\xff\x17\xbc\xff\x9f\xf7\xe0\xc7\x7c\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xff\xca\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\x7f\x5f\xfa\xff\x0b\x97" "\xf4\xff\xf5\xff\xc9\x15\xad\xff\x1f\x73\xff\x96\x30\x93\x8a\xe4\x7f\x00" "\x00\x00\xa8\x82\x98\xfb\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2d\xcc\xa4\x22\xf9" "\x5f\xff\x7f\x20\xfa\xff\x99\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\xca" "\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff\xa7\xaf\x8a" "\xd6\xff\x8f\xb9\xff\x55\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x75\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x8e\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xce\xfb\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\xf7\xa0" "\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x15\xad\xff\x1f\x73\xff\x6b\xc2\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x19\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x64" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xfd\xeb" "\xff\x0f\x26\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xaf\x8a\xd6\xff\x8f\xb9\xff\x9e\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0a\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\x5f\x55\xff\xff\x95\x8b\xf7\xab\xff\x9f\xd3\xff\x2f\x16" "\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\x7f\xc1\xfb\xff\xa3\xfa\xff\x94" "\x4a\xd1\xfa\xff\x31\xf7\xef\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x9e\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbd\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x3e\xff\xbf\xf3\xfe\xf5\xff\x07\x93\xfe\x7f\x77\xfd\xef" "\xff\xc7\x87\xa8\xff\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\x59\xaa\x68\xfd" "\xff\x98\xfb\xef\x0b\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x5f" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfe\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\x03\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x9d\xf7\xaf\xff\x3f\x98\xf4\xff\xbb\xf3\xf9\xff\x3d\xe8\xff" "\xeb\xff\xeb\xff\xeb\xff\xb3\x46\x0f\xfd\x61\xf3\x57\x45\xeb\xff\xc7\xdc" "\x7f\x30\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xd7\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x4a\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xaf\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\x77\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfa\xaa\x68\xfd\xff\x98\xfb\x0f\x85\x99\x54\x24\xff\x03" "\x00\x00\x40\x15\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\xaf\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x1c\x66\x52\x91" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\x37\xba\xff\x3f" "\x16\xef\x57\xff\x7f\x4d\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff" "\x5f\xff\x9f\xbe\x2a\x5a\xff\x3f\xe6\xfe\xd7\x87\x99\x54\x24\xff\x03\x00" "\x00\x40\x15\xc4\xdc\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x1b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x18\x66\x52\x91\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\x3e\xff\x7f\x30\xe9" "\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55\xb4\xfe" "\x7f\xcc\xfd\x6f\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xcd" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x7f\x6b\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\xe7\xfd\xeb\xff\x0f\x26\xfd\xff\xee\xf4\xff\x7b\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\xff\xd7\xc3\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x6d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6f\x0f" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f\xfd" "\xff\xc1\xa4\xff\xdf\xdd\x80\xf5\xff\x7f\x71\x73\xb8\x5c\xff\x3f\xa7\xff" "\x5f\xec\xe3\x5f\x6d\xff\x7f\xa4\xed\xeb\xeb\xd2\xff\xff\xc1\x72\xfd\xff" "\x85\x75\xed\xb7\xd7\xff\xe7\x7a\x28\x5a\xff\x3f\xe6\xfe\x77\x84\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xce\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x46" "\x98\x49\x45\xf2\xbf\xfe\x7f\xfd\x38\x16\xdb\xcb\xfa\xff\x65\xed\xff\x0f" "\xe9\xff\xeb\xff\xeb\xff\x57\x84\xfe\x7f\x77\x03\xd6\xff\xf7\xf9\xff\x6d" "\xf4\xff\x8b\x7d\xfc\x3e\xff\x5f\xff\x9f\xa5\x8a\xd6\xff\x8f\xb9\xff\xdd" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x3f\x18\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73" "\xff\x7b\xc2\x4c\x2a\x92\xff\xf5\xff\x7d\xfe\x7f\x35\xfa\xff\x3e\xff\x3f" "\xd3\xff\xd7\xff\xaf\x08\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\x2f\x5a" "\xff\xff\x3f\xf5\xff\x19\x6c\x45\xeb\xff\xc7\xdc\xff\x70\x98\x49\x45\xf2" "\x3f\x00\x00\x00\x54\x41\xcc\xfd\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x85\x99" "\x54\x24\xff\xeb\xff\x0f\x4a\xff\x7f\x62\x40\xfb\xff\x8f\xe9\xff\x5f\xc7" "\xfe\xff\x9d\x37\xe7\xdb\xe9\xff\xeb\xff\xb3\x48\xff\xbf\x3b\xfd\xff\x1e" "\xf4\xff\xf5\xff\x8b\xd6\xff\xf7\xf9\xff\x0c\xb8\xa2\xf5\xff\x63\xee\x7f" "\x7f\x98\xc9\xca\xf3\xff\xf8\x8a\xb7\x04\x00\x00\x00\x5e\x10\x31\xf7\xff" "\x56\x98\x49\x45\xfe\xfe\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdf\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x9d\x30\x93\x8a\xe4\x7f\xfd\xff\x41" "\xe9\xff\xfb\xfc\xff\x4c\xff\xdf\xe7\xff\xb7\x3d\x1e\xfd\x7f\xfd\xff\x4e" "\x6e\x5c\xff\x3f\xbe\xf3\xe8\xff\xeb\xff\xeb\xff\x47\xfa\xff\xfa\xff\xfa" "\xff\xb4\x2b\x5a\xff\x3f\xe6\xfe\xdf\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x0c\x84\x4e\xff\x4f\x76" "\xbb\x98\xfb\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0d\x33" "\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\x2f\x68\xff\xff\xcf\xb6\xfe\xcb\xf7" "\xbe\xfd\xce\xa3\xbb\xf4\xff\xf5\xff\xf5\xff\x57\xe5\x86\x7e\xfe\x7f\xfd" "\xc5\xef\xf3\xff\x97\xeb\xff\xff\x4f\xfd\x66\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xd5\x56\xb4\xfe\x7f\xcc\xfd\xc7\xc2\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xe3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x33\x61\x26\x15\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\x05\xed\xff\x0f\xf0\xe7\xff\xc7\xf3\xa1\xff\xdf" "\xaa\x6f\xfd\xff\xf8\xa6\xab\xff\xdf\x51\xde\xbf\x4f\xab\xe8\xfa\xf6\xff" "\xdf\xbb\xd8\x13\xd7\xff\x5f\xed\xe7\xff\x8f\x75\xbc\x54\xff\x5f\xff\x7f" "\x90\x8f\x5f\xff\x5f\xff\x9f\xa5\x8a\xd6\xff\x8f\xb9\x7f\x36\xcc\xa4\x22" "\xf9\x1f\x00\x00\x00\xaa\x20\xe4\xfe\xa1\x13\xf9\x5c\xbc\x42\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x07\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\x7f\xe7" "\xfd\x77\xeb\xff\xd7\x46\x7c\xfe\x7f\x51\xa5\xfe\xfd\xcf\x1a\x2f\x14\xfd" "\xff\x36\xc5\xe9\xff\x77\xa6\xff\xaf\xff\x3f\xc8\xc7\xaf\xff\xaf\xff\xcf" "\x52\x45\xeb\xff\xc7\xdc\x3f\x17\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10" "\x73\xff\x87\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1c\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x2a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\xf3\xfe\x0b\xfb\xf9\xff\xfa\xff\x5d\xad\xb5" "\x7f\xaf\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x07\x45\xeb" "\xff\xc7\xdc\x7f\x3a\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x33" "\x61\x26\xf2\x3f\x00\xff\xcf\xde\x9d\x3c\x59\x56\x96\x79\x1c\xbf\xd9\x5d" "\x74\x65\x05\xbd\xe8\x5d\x2f\x7a\xd3\x11\xbd\xec\x8d\x7b\x16\xba\xd6\x3f" "\xc0\x85\x1b\x17\x1a\x61\xb8\x10\x15\x15\x67\x0a\xe7\x11\x45\xc5\x59\x11" "\x9c\x07\x1c\x40\x10\x51\xc1\x79\x00\x27\x14\x67\x50\x71\x9e\x07\x9c\x10" "\x25\xca\x20\xeb\x79\x9e\xaa\xcc\x3c\x79\x6e\x66\xd5\xcd\xcc\x73\xde\xf7" "\xf3\x59\xf0\x48\x5a\xc9\xbd\x62\x59\xc5\xaf\xb2\xbe\x1e\x00\x00\x9a\x91" "\xbb\xff\xfc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x74\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\x9b\xed\xff\xef\xaf\xff\xdf\xe9\xf5\xf5\xff\xfa\xff" "\x96\xe9\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a" "\xfd\x7f\xee\xfe\xc7\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7" "\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x05\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xb8\xb8\xa5\x93\xfd\xbf\xa5\xff\x5f\x5b\xf4\xd9\xff" "\x67\xc6\xab\xff\x6f\xa9\xff\xf7\xfc\xff\x1d\x5f\x5f\xff\xaf\xff\x6f\xd9" "\xc1\xf6\xff\x17\xdf\xf7\x23\x9f\xfe\x5f\xff\xaf\xff\x0f\xfa\xff\x5d\xf5" "\xff\x47\x77\xfa\x7c\xfd\x3f\x2d\x9a\x5a\xff\x9f\xbb\xff\xf1\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x09\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\x7f\x61\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x31\x6e\xe9" "\x64\xff\xaf\xee\xf9\xff\xc7\x36\x3e\x3e\xd3\xfe\xbf\xe8\xff\xf5\xff\x1b" "\x1f\xd0\xff\xeb\xff\xf5\xff\xb3\xe5\xf9\xff\xe3\x7a\xea\xff\x2f\xb8\xed" "\xdc\x47\xdd\x75\xdd\xff\x5c\xbf\x97\xd7\xd7\xff\xeb\xff\x3d\xff\x5f\xff" "\xcf\x6a\x4d\xad\xff\xcf\xdd\xff\xa4\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d" "\xc8\xdd\xff\xe4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4a\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x35\x6e\xe9\x64\xff\xaf\xae\xff\x9f" "\xf5\xf3\xff\x8b\xfe\x5f\xff\xbf\xf1\x01\xfd\xbf\xfe\x5f\xff\x3f\x5b\xfa" "\xff\x71\x3d\xf5\xff\x67\xf2\xfa\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x6a\x4d" "\xad\xff\xcf\xdd\xff\xb4\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff" "\xf4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x28\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x8f\xc7\x2d\x9d\xec\x7f\xfd\xff\xfe\xf7\xff\xf7\xea" "\xff\xf5\xff\x71\xf5\xff\xfa\x7f\xfd\xff\xfe\xd3\xff\x8f\xd3\xff\x2f\xa1" "\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\x17\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x67\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x33\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x59\x71\x4b" "\x27\xfb\x5f\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xf3" "\xa4\xff\x1f\xa7\xff\x5f\x42\xff\x7f\xb6\xfd\xfc\x39\xfa\x7f\xfd\xbf\xfe" "\x9f\xd3\xed\xb1\xff\xbf\x67\xe4\x87\xed\x95\xf4\xff\xb9\xfb\x9f\x1d\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xcf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xe7\xc5" "\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\xe3\xfe\x7f\xfb\x77\xbd" "\x0d\xfa\xff\x61\xfa\xff\x83\xa1\xff\x1f\x37\x99\xfe\x7f\xed\xc8\xe0\x87" "\xf5\xff\xb3\xef\xff\x3d\xff\x5f\xff\xaf\xff\x67\x93\xa9\x3d\xff\x3f\x77" "\xff\xf3\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x0b\xe2\x96\x91" "\xfd\xbf\xe7\x5f\xcc\x07\x00\x00\x00\x0e\x55\xee\xfe\x17\xc6\x2d\xbe\xfe" "\x0f\x00\x00\x00\xb3\x97\xd5\x59\xee\xfe\x17\xc5\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xf7\xfc\xff\xe1\xd7\x1f\xeb\xff\xaf\x3f\xed\xfd\xe9" "\xff\xa7\x45\xff\x3f\x6e\x32\xfd\xff\x0e\xf4\xff\xfa\xff\x39\xbf\x7f\xfd" "\xbf\xfe\x9f\xed\xa6\xd6\xff\xe7\xee\x7f\x71\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\xbf\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x12" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x8d\x5b\x3a\xd9\xff\xc3\xfd" "\xff\xa9\x7f\x5f\xff\xbf\x3b\xfa\xff\xcd\xef\x5f\xff\x3f\xfc\xfd\x63\x55" "\xfd\x7f\xfe\x15\xf5\xff\xa3\xfd\xff\x03\x3c\xff\xbf\x4f\xfa\xff\x71\x07" "\xdf\xff\x1f\xd5\xff\x6f\xfe\xeb\xeb\xff\xf7\xd1\x61\xbf\xff\xc6\xfb\xff" "\x63\xcb\x3e\x5f\xff\xcf\x90\xa9\xf5\xff\xb9\xfb\x2f\x8d\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\xe2\x96\x4e\xf6" "\xbf\xe7\xff\xeb\xff\xf5\xff\xf3\xeb\xff\x3d\xff\xff\xa4\xc3\x7c\xfe\xff" "\xe2\xc0\xfb\xff\x23\xfa\xff\x5d\xd2\xff\x8f\xf3\xfc\xff\x25\xf4\xff\xfa" "\x7f\xfd\xbf\xe7\xff\xb3\x52\x53\xeb\xff\x73\xf7\x5f\x16\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\x97\xdd\xbd\xd8\xd8\xfd\xaf\x5c\x2c\xec\x7f\x00\x00" "\x00\x98\xa3\xd3\x7f\xef\xc0\xd6\xdf\x50\x1a\x72\xf7\xbf\x2a\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1d\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x3f\xfc\xfa\xd3\xea\xff\x3d\xff\x7f\xb7\xf4\xff\xe3\x26" "\xd2\xff\x0f\xfd\xb4\xb9\x41\xff\xdf\x64\xff\x7f\xa4\xb1\xfe\xff\xf2\x9d" "\x3e\x7f\x0a\xfd\xff\x45\xfa\x7f\x26\x66\x53\xff\x7f\xe3\xa9\x8f\x1f\x56" "\xff\x9f\xbb\xff\x35\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb5" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x7d\xdc\xd2\xc9\xfe\xdf\xf7\xfe\xff\xd8\xce\xaf\xad" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xaa\xe9\xff\xc7\x4d\xa4\xff" "\xdf\x91\xfe\xbf\xc9\xfe\xdf\xf3\xff\x3d\xff\x5f\xff\xdf\xb1\x4d\xfd\xff" "\x69\x0e\xab\xff\xcf\xdd\xff\x86\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xc6\xb8\x25\xf6\xff\xfd\x76\x78\x6e\x20\x00\x00\x00\x30\x1f\xb9" "\xfb\x2f\x8f\x5b\x7c\xfd\x1f\x00\x00\x00\x9a\x91\xbb\xff\x4d\x71\x4b\x27" "\xfb\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xf3\xa4" "\xff\x1f\xa7\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\xa9\xf5\xff" "\xb9\xfb\xaf\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x57\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x2d\x71\x4b\x27\xfb\x5f\xff\xbf\xbf\xfd\x7f\x7e\x5c\xff\xaf" "\xff\x5f\xe8\xff\xf5\xff\xfa\xff\x03\xd1\x6d\xff\xbf\x36\xf4\x33\xd1\x76" "\x3b\xf4\xff\xb7\x3c\xe2\xf8\x83\x36\x7f\x44\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xac\xc0\x24\xfa\xff\x13\xa7\xfe\xe9\x32\x77\xff\x5b\xe3\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xed\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x8e\xb8\x65" "\x8f\xfb\xff\xbf\x56\xfa\xae\x0e\x8e\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf0\xeb\xeb\xff\xe7\xa9\xdb\xfe\x7f\x97\x3c\xff\x7f\x09\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\xa5\x26\xd1\xff\x9f\xf6\xe7\xb9\xfb\xdf\x19\xb7\xf8" "\xfa\x3f\x00\x00\x00\x34\x23\x77\xff\xbb\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9e\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\x3f\xd3\xfe\x7f" "\x7d\x31\x4c\xff\x7f\x30\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\x55\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7f\xdc\xd2\xc9\xfe\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\x7b\xfe\xff\x3c\xad\xac\xff\xbf\xef" "\xbf\x60\xfd\x7f\x9b\xfd\xff\xd5\x23\x6f\x60\xa8\xff\x3f\x71\x54\xff\xaf" "\xff\x5f\x61\xff\xbf\xf3\xff\x24\xf4\xff\xb4\x68\x6a\xfd\x7f\xee\xfe\x0f" "\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xab\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x60\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb" "\xff\xe7\xc9\xf3\xff\xc7\xe9\xff\x97\xf0\xfc\x7f\xfd\xbf\xe7\xff\xeb\xff" "\x59\xa9\xa9\xf5\xff\xb9\xfb\xaf\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x87\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xfa\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfb\xd2\xff\x1f\xd7\xff\x6f\xa5\xff\x3f\x18\xfb\xd7\xff\x2f" "\xf4\xff\xfa\x7f\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x9f\xad\x0e\xaa\xff\xbf" "\x27\x7e\xbc\x5f\xd6\xff\xe7\xee\xff\x70\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x12\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xef\xf9\xff\xc3\xaf\xaf\xff\x9f\x27\xcf\xff\x1f\xa7\xff" "\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\x83\xea\xff\x77\xea\xfd\xb7" "\xfe\x79\xee\xfe\x8f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xa6\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x78\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x37\xf7\xff\x8b" "\x85\xfe\x5f\xff\xaf\xff\x3f\xe9\x00\xfa\xff\xf5\x85\xfe\x7f\xe5\xf4\xff" "\xe3\xf4\xff\x4b\xe8\xff\xdb\xec\xff\xff\x6d\xd1\x50\xff\x7f\x6c\xc7\xcf" "\xd7\xff\x33\x45\x53\xeb\xff\x73\xf7\x7f\x22\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x15" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8e\x5b\x5a\xda\xff\xf7\xee" "\x9c\xbe\xcd\xbf\xff\x3f\xba\xe5\x13\xf5\xff\x8b\xc5\xe2\xf6\x0b\x3d\xff" "\x5f\xff\x3f\xf2\xfa\xfa\xff\xc9\xf4\xff\xf5\x77\x55\xff\xbf\x3a\xfa\xff" "\x71\xfa\xff\x25\xf4\xff\x6d\xf6\xff\x9e\xff\xaf\xff\xe7\xd0\x4c\xad\xff" "\xcf\xdd\xff\x99\xb8\xa5\xa5\xfd\x0f\x00\x00\x00\x9d\xcb\xdd\xff\xd9\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x3e\x6e\xe9\x64\xff\xcf\xbf\xff\xdf\xfa\x89\xfa\xff\xc5" "\x59\x3d\xff\x5f\xff\xbf\xf1\x01\xfd\xbf\xfe\x5f\xff\x3f\x5b\x67\xdb\xdf" "\x5f\xb1\x1e\x3f\xa7\xe9\xff\xf5\xff\xfa\xff\xc1\x7e\x7e\x6d\x87\x7f\xee" "\x59\xe8\xff\xf5\xff\xfa\x7f\x06\x4c\xad\xff\xcf\xdd\xff\x85\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x73\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xdf\x12\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8c\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9e\xfd\xff\xba\xfe\x5f\xff\xaf\xff\x1f" "\x34\x95\xe7\xff\x9f\x77\xde\x03\x6f\xd5\xff\xeb\xff\x5b\xec\xff\xc7\xe8" "\xff\xf5\xff\xfa\x7f\xb6\x9a\x5a\xff\x9f\xbb\xff\x4b\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\xcb\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x6a\xdc\xd2\xc9\xfe" "\xdf\xde\xff\x9f\xb3\x38\x59\xa8\x9e\x34\xd4\xff\x47\xa3\xa6\xff\x3f\x8d" "\xfe\x7f\xf3\xfb\xd7\xff\x0f\x7f\xff\xf0\xfc\x7f\xfd\xbf\xfe\x7f\xff\x4d" "\xa5\xff\xf7\xfc\xff\x33\x7b\xff\xfa\x7f\xfd\xff\x9c\xdf\xff\x9e\xfa\xff" "\xff\xdd\xfe\xf9\xfa\x7f\x5a\x34\xb5\xfe\x3f\x77\xff\xad\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xf5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x2d\x6e\xe9\x64" "\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xf4" "\xff\xe3\xf4\xff\x4b\xe8\xff\xf5\xff\x9e\xff\x7f\xfe\xc3\xfe\x5d\xff\xcf" "\xea\x4c\xad\xff\xcf\xdd\xff\x8d\xb8\x65\x63\xf8\xfd\xdf\x7f\x9e\xe1\x7f" "\x4c\x00\x00\x00\x60\x42\x72\xf7\x7f\x33\x6e\xe9\xe4\xeb\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x6f\xc7" "\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f" "\x9e\xf4\xff\xe3\xf4\xff\x4b\xf4\xd3\xff\xaf\x0f\x7d\xf0\xb0\xfb\xf9\xb3" "\x75\xd8\xef\xbf\x99\xfe\xdf\xf3\xff\x59\xa1\xa9\xf5\xff\xb9\xfb\xbf\x13" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x1b\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xdf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdb" "\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xdf\x7e\xff\xff\x50\xfd\xff\x96\xd7\xd7" "\xff\xeb\xff\x5b\xa6\xff\xcf\x9f\xd1\x87\xe9\xff\x97\xe8\xa7\xff\x1f\x74" "\xd8\xfd\xfc\xdc\xdf\xbf\xfe\x5f\xff\xcf\x76\x53\xeb\xff\x73\xf7\xdf\x11" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x1f\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f" "\xc6\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\xff\xda\xe2\x6c\xfb\xff\xff\x88\x6f" "\x39\xa7\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\x9e\xcc\xa7\xff\xbf\xf2\xc8\xd0" "\x47\x3d\xff\x5f\xff\xaf\xff\x9f\xef\xfb\xd7\xff\xeb\xff\xd9\x6e\x6a\xfd" "\x7f\xee\xfe\x3b\xd7\x8e\x74\xb9\xff\x01\x00\x00\x60\xae\x1e\xfc\xff\x8f" "\xbc\x63\xb7\xdf\xf6\xce\x8d\x3f\xae\x2f\x7e\x14\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x3f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\xc4" "\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\x7f\x9f\xcf\xff\xd7\xff\xeb\xff\xf5\xff" "\x3d\x99\x4f\xff\x3f\x4c\xff\xaf\xff\xd7\xff\xcf\xf7\xfd\xeb\xff\xf5\xff" "\x6c\x37\xb5\xfe\x3f\x77\xff\x4f\xe3\x96\xd3\x86\xdf\xe0\xff\x41\x0f\x00" "\x00\x00\x30\x1b\xb9\xfb\x7f\x16\xb7\x74\xf2\xf5\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x9f\xc7\x2d\xdb\xf6\xff\x89\x5d\xfe\xae\x76\x00\x00\x00\x60\x6a" "\x72\xf7\xff\x22\x6e\xe9\xe4\xeb\xff\xfa\xff\x89\xf7\xff\x8b\x7d\xea\xff" "\xe3\xdb\xe9\xff\x4f\xd2\xff\xeb\xff\x87\x5e\x5f\xff\x3f\x4f\xfa\xff\x71" "\x67\xd9\xff\x9f\x58\xd3\xff\xeb\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xb6\x9a" "\x5a\xff\x9f\xbb\xff\x86\x6b\x17\x5d\xee\x7f\x00\x00\x00\x68\xd4\xa6\x5f" "\x51\xf8\xe5\xc6\x1f\xd7\x17\xbf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x5f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6f\xe2\x96\x4e\xf6" "\xbf\xfe\x7f\xe2\xfd\xff\x19\x3d\xff\xff\x58\xfd\x2b\xcf\xff\xef\xbc\xff" "\xbf\x64\x7d\xf0\xf5\xf5\xff\xfa\xff\x96\xe9\xff\xc7\x79\xfe\xff\x12\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\xed\xa1\xff\xdf\x18\xa4\xfb\xdd\xff\xe7" "\xee\xff\x6d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x5d\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x10\xb7\x74\xb2\xff\xf5\xff\x87\xd0\xff\x5f\x7a\x74\xb1\xd8" "\xd7\xfe\x7f\x17\xcf\xff\xd7\xff\xf7\xd1\xff\xef\xf0\xfa\xed\xf4\xff\xff" "\x7d\xee\xf1\x9b\x1f\xf2\xf0\x6b\xae\xd2\xff\x73\xca\x41\xf6\xff\xf9\x7d" "\x41\xff\xaf\xff\xd7\xff\x9f\xa4\xff\xd7\xff\xeb\xff\xd9\x6a\x6a\xcf\xff" "\xcf\xdd\xff\xc7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x57\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x29\x6e\xb9\x6f\xff\xdf\x74\x58" "\xef\x0a\x00\x00\x00\x58\xa5\xdc\xfd\x7f\x8e\x5b\x3a\xf9\xfa\xbf\xfe\xbf" "\xc5\xe7\xff\xcf\xb3\xff\xcf\xbf\xd7\x87\xd0\xff\x1f\x9f\x5f\xff\x9f\x4d" "\x71\xef\xfd\xbf\xe7\xff\xeb\xff\xb7\xf3\xfc\xff\x71\xfa\xff\x25\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x95\x9a\x5a\xff\x9f\xbb\xff\x2f\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xaf\x71\x4b\xee\xff\xb5\x3d\xff\xd2\x3d" "\x00\x00\x00\x30\x31\xb9\xfb\xff\x16\xb7\xf8\xfa\x3f\x00\x00\x00\x34\x23" "\x77\xff\xdd\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x9f\x4a\xff\x9f\x3c\xff\xff" "\xd4\xe7\x79\xfe\xff\x49\xfa\x7f\xfd\xff\x5e\xe8\xff\xc7\xe9\xff\x97\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\xbf\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x1f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcf\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xcf\x93" "\xfe\x7f\x9c\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xa6\xd6\xff" "\xe7\xee\xff\x57\x00\x00\x00\xff\xff\x01\x5b\x71\xcd", 25051)); NONFAILING(syz_mount_image(/*fs=*/0x20000080, /*dir=*/0x20000280, /*flags=*/0, /*opts=*/0x200000c0, /*chdir=*/1, /*size=*/0x61db, /*img=*/0x20003700)); NONFAILING(memcpy((void*)0x20000040, ".\000", 2)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_getdents64, /*fd=*/r[0], /*ent=*/0ul, /*count=*/0ul); } 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(); setup_802154(); install_segv_handler(); use_temporary_dir(); loop(); return 0; }