// https://syzkaller.appspot.com/bug?id=56bc161e3d711750065ba81d3360b79ae78ba203 // 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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 00} (length 0xfb) // } // flags: mount_flags = 0x2000000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x41 (1 bytes) // size: len = 0x5e97 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5e97) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000380, "jfs\000", 4)); NONFAILING( memcpy((void*)0x2000000006c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251)); NONFAILING(memcpy( (void*)0x200000005e00, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35\x8c" "\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde\x24\x52" "\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6\x50\x18\x6b" "\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e\x84\x17\x59\x06" "\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\x4a\x0f\xcd\x00\xd3\xd5\x33\xe7" "\xf7\x93\x9a\xaa\xa7\x4e\x55\xf7\x29\xfe\x7d\x9d\xae\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\xfb\x3f\x3e\xd7\x8b" "\x88\xab\xbf\x4a\x0b\x96\x23\xfe\x2f\x06\x11\xfd\x88\xc5\xba\x5e\x89\x88" "\xc5\x95\xe5\xbc\xfe\x30\x22\x5e\x8f\xad\xe6\x78\xad\x5e\x7d\x3e\xa2\xde" "\x7e\xeb\x9f\x63\x11\x17\x23\xe2\xfe\xd1\x88\x87\x8f\xee\xac\xd5\x8b\xcf" "\x3f\x63\x3f\xfe\x7d\xe4\xff\x8f\xfd\xf3\xaf\x3f\x38\xfd\xfb\xbf\xfd\xee" "\xde\xc9\x3f\x9e\x7a\xbb\xdd\xfe\xa7\xf5\x7f\xdc\xfb\xc9\xdd\x74\x5b\x00" "\x00\x00\xc0\x9e\x54\x55\x55\xf5\xd2\xc7\xfc\xe3\xe9\xf3\x7d\xbf\xeb\x4e" "\x01\x00\x53\x91\x5f\xff\xab\x24\x2f\x57\xab\xd5\x6a\xb5\x5a\x7d\xf8\xea" "\xa6\x6a\xbc\xbb\xcd\x22\x22\x36\x9a\xdb\xd4\xef\x19\xee\x8e\xbb\x32\x00" "\x60\x76\x6d\xc4\x17\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x38\xd2\x75\x27" "\x80\x99\xe6\xb8\xfb\xc3\xe9\xe1\xa3\x3b\x6b\xbd\x94\x6f\xaf\xf9\x7a\xb0" "\xb2\xdd\x9e\x8f\x05\xd9\x91\xff\x46\xef\xf1\xf9\x1d\xbb\x4d\x27\x69\x1f" "\x63\x32\xad\xfb\xd7\x66\x0c\xe2\xd5\x5d\xfa\xb3\x38\xa5\x3e\xcc\x92\x9c" "\x7f\xbf\x9d\xff\xd5\xed\xf6\x51\x5a\x6f\xbf\xf3\x9f\x96\xdd\xf2\x1f\x6d" "\x9f\xfa\x54\x9c\x9c\xff\xa0\x9d\x7f\xcb\xe1\xc9\xbf\x3f\x36\xff\x52\xe5" "\xfc\x87\x7b\xca\x7f\x20\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xef\xff\xcb" "\x53\xfb\xfe\xb7\xb7\xe3\x7a\xb3\xf9\x97\xb3\x3b\x13\x3d\xed\xfb\xdf\x95" "\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x5e\xb6\x17\x1d\xff\xef\x31\xe3" "\xff\x01\x00\x00\xc0\xcc\xaa\x3f\xab\xd7\xfe\x7c\xf4\xc9\xb2\xdd\x3e\x63" "\xd7\xcb\xaf\xf4\x22\x5e\x69\xad\x0f\x14\x26\x9d\x2c\xb3\xd4\x75\x3f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x24\xc3\xed\x63\x78\xaf\xf4\x22" "\xe6\x22\xe2\x95\xa5\xa5\xaa\xaa\xea\x4b\x53\xbb\xde\xab\x17\xdd\xfe\xa0" "\x2b\x7d\xff\xa1\x64\x5d\x3f\xc9\x03\x00\xc0\xb6\xfb\x47\x5b\xe7\xf2\xf7" "\x22\x16\x22\xe2\x4a\xfa\xad\xbf\xb9\xa5\xa5\xa5\xaa\x5a\x58\x5c\xaa\x96" "\xaa\xc5\xf9\xfc\x7e\x76\x34\xbf\x50\x2d\x36\x3e\xd7\xe6\x69\xbd\x6c\x7e" "\xf4\x0c\x6f\x88\x87\xa3\xaa\xbe\xb2\x85\xc6\x76\x4d\x93\x3e\x2f\x4f\x6a" "\x6f\x5f\x5f\x7d\x5b\xa3\x6a\xf0\x0c\x1d\x9b\x8e\x0e\x03\x07\x80\x88\xd8" "\x7e\x35\x7a\xe8\x15\xe9\x90\xa9\xaa\x63\xd1\xf5\xbb\x1c\x0e\x06\x8f\xff" "\xc3\xc7\xe3\x9f\x67\xd1\xf5\xfd\x14\x00\x00\x00\xd8\x7f\x55\x55\x55\xbd" "\xf4\x73\xde\xc7\xd3\x77\xfe\xfd\xae\x3b\x05\x00\x4c\x45\x7e\xfd\x6f\x7f" "\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa\xf0\xd5\x4d\xd5\x78\x77\x9b\x45\x44\x6c" "\x34\xb7\xa9\xdf\x33\xdc\x1d\x77\x65\x00\xc0\xec\xda\x88\x2f\xba\xee\x02" "\x1d\x92\x7f\xd1\x86\x11\xf1\x7a\xd7\x9d\x00\x66\x5a\xaf\xeb\x0e\xb0\x2f" "\x1e\x3e\xba\xb3\xd6\x4b\xf9\xf6\x9a\xaf\x07\x69\x7c\xf7\x7c\x2c\xc8\x8e" "\xfc\x37\x7a\x5b\xdb\xe5\xed\xc7\x4d\x27\x69\x1f\x63\x32\xad\xfb\xd7\x66" "\x0c\xe2\xd5\x5d\xfa\xf3\xda\x94\xfa\x30\x4b\x72\xfe\xfd\x76\xfe\x57\xb7" "\xdb\x47\x69\xbd\xfd\xce\x7f\x5a\x76\xcb\xbf\xde\xcf\xe5\x0e\xfa\xd3\xb5" "\x9c\xff\xa0\x9d\x7f\xcb\xe1\xc9\xbf\x3f\x36\xff\x52\xe5\xfc\x87\x7b\xca" "\x7f\x20\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xef\xff\xcb\xbe\xff\xcd\xbb" "\x0c\x00\x00\x00\x00\x00\x00\x00\x07\xce\xc3\x47\x77\xd6\xf2\x79\xaf\xf9" "\xfb\xff\x2f\x8d\x59\xcf\xf9\x9f\x87\x53\xce\xbf\x27\xff\x22\xe5\xfc\xfb" "\xad\xfc\xbf\xd6\x5a\x6f\xd0\x98\x7f\xf0\xfe\x93\xfc\xff\xf5\xe8\xce\xda" "\x8f\xfe\xf0\xf9\xf1\x3c\x7d\xd6\xfc\xe7\xf3\x4c\x2f\xdd\xb3\x7a\xe9\x1e" "\xd1\x4b\xb7\xd4\x1b\xa6\xe9\x73\xef\xda\xfc\xb8\x85\x9b\x73\x83\x51\x7d" "\x4b\x73\xbd\xfe\x60\x98\x8e\xf9\xa9\xe6\x3e\x8c\xeb\x71\x23\xd6\x63\x75" "\xc7\xba\xfd\xf4\xff\xf1\xa4\xfd\xdc\x8e\xf6\xba\xa7\x73\xe9\xae\xbc\xdd" "\x7e\x7e\x47\xfb\x70\xbb\xbd\xb1\xfd\x85\x1d\xed\x73\xe9\x77\x07\xaa\xc5" "\xdc\x7e\x26\xd6\xe2\xe7\x71\x23\x3e\xd8\x6a\xaf\xdb\xe6\x27\xec\xff\xc2" "\x84\xf6\x6a\x42\x7b\xce\x7f\xe0\xf1\x5f\xa4\x9c\xff\xb0\x71\xa9\xf3\x5f" "\x4a\xed\xbd\xd6\xb4\xf6\xe0\xb3\xfe\xff\x3c\xee\x9b\xd3\x71\xb7\xf3\xde" "\x6f\xef\xdd\x5f\xdd\xff\xdd\x99\x68\x33\x06\x8f\xf7\xad\xa9\xde\xbf\x13" "\x1d\xf4\x67\xeb\xff\xe4\xc8\x28\x7e\x79\x6b\xfd\xe6\x99\x5f\x5f\xbb\x7d" "\xfb\xe6\xb9\x48\x93\x1d\x4b\xcf\x47\x9a\xbc\x64\x39\xff\xb9\x74\x79\xfc" "\xfc\xff\xe6\x76\x7b\x7e\xde\x6f\x3e\x5e\x1f\x7c\x36\xda\x73\xfe\xb3\x62" "\x33\x86\xbb\xe6\xff\x66\x63\xbe\xde\xdf\x93\x53\xee\x5b\x17\x72\xfe\xa3" "\x74\xc9\xf9\x7f\x90\xda\xc7\x3f\xfe\x0f\x72\xfe\xbb\x3f\xfe\x4f\x75\xd0" "\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x9a\xaa\xaa\xb6" "\x4e\x11\x7d\x2f\x22\x2e\xa5\xf3\x7f\xba\x3a\x37\x13\x00\x98\xae\xfc\xfa" "\x5f\x25\x79\xb9\x5a\xad\x56\xab\xd5\xea\xc3\x57\x37\x55\xe3\xbd\xdb\x2c" "\x22\xe2\xef\xcd\x6d\xea\xf7\x0c\xbf\x19\x77\x65\x00\xc0\x2c\xfb\x4f\x44" "\x7c\xde\x75\x27\xe8\x8c\xfc\x0b\x96\x7f\xef\xaf\x9e\xbe\xd5\x75\x67\x80" "\xa9\xba\xf5\xc9\xa7\x3f\xbd\x76\xe3\xc6\xfa\xcd\x5b\x5d\xf7\x04\x00\x00" "\x00\x00\x00\x00\x00\x78\x5e\x79\xfc\xcf\x95\xc6\xf8\xcf\x6f\x45\xc4\x72" "\x6b\xbd\x1d\xe3\xbf\xbe\x1f\x2b\x2f\x3a\xfe\xe7\x30\xcf\x3c\x1e\x60\xf4" "\xf9\x07\xfa\xde\x8b\xcd\xfe\x68\xd0\x6f\x0c\x37\xfe\x46\x3c\x7d\xfc\xef" "\x13\xf1\xf4\xf1\xbf\x87\x13\x6e\x6f\x6e\x42\xfb\x68\x42\xfb\xd8\x41\xcc" "\x1b\x16\x26\xb4\x8f\x3d\xd1\xa3\x21\xe7\xff\x46\x63\xbc\xf3\x3a\xff\xe3" "\xad\xe1\xd7\x4b\x18\xff\xb5\x3d\xe6\x7d\x09\x72\xfe\x27\x1a\xf7\xe7\x3a" "\xff\xaf\xb6\xd6\x6b\xe6\x5f\xfd\xe5\x20\xe7\xdf\xdf\x91\xff\xd9\xdb\x1f" "\xff\xe2\xec\xad\x4f\x3e\x3d\x7d\xfd\xe3\x6b\x1f\xad\x7f\xb4\xfe\xb3\x8b" "\xab\xab\x97\x2e\x5c\x7e\x67\xf5\xf2\xea\xd9\x0f\xaf\xdf\x58\x4f\xff\x76" "\xd8\xe3\xfd\x95\xf3\xcf\x63\x5f\x3b\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb" "\x92\xf3\xff\x72\xaa\xe5\x5f\x96\x9c\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xf3" "\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x93\xa9\x96\x7f" "\x59\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3\x3f\x95\x6a\xf9\x97\x25\xe7\xff" "\x76\xaa\xe5\x5f\x96\x9c\xff\xe9\x54\xcb\xbf\x2c\x39\xff\x33\xa9\x96\x7f" "\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xf3\x37\x5c\xf2\x2f\x4b\xce\x3f" "\x1f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\xff\x4e\xaa\xe5\x5f\x96\x9c\xff" "\xa5\x54\xcb\xbf\x2c\x39\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc" "\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\xb7\x52\x2d\xff\xb2\xe4\xfc" "\xbf\x9d\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf\x2c\x39\xff\xef\xa6\x5a" "\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce\xff\xdd\x54\xcb\xbf\x2c\x4f" "\x7e\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xd7\xcf\x4c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\xdb\x34\x0e\x27\xee\x7a\x1f\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\x00\x00\x00\x00\x00\x00\x00\xf8\x2f\x3b\x70\x20\x00" "\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xc2\xde\xbd\xc6\xc8\x75\x96\x77\x00\x3f\x7b\x73\xd6\x0e" "\x97\x2d\x84\xe0\x86\x00\x1b\xc7\x04\x93\x2c\xd9\xf5\x3d\xa6\x35\x98\x5b" "\x49\x13\xd2\x52\x20\xb4\xa5\x17\xe3\xda\x6b\x63\xf0\xad\x5e\x9b\x5b\x23" "\xc5\x28\xb4\x44\x6a\xd4\x46\x2a\x1f\xe0\x43\xb9\x15\xa9\x7c\xa9\x88\x00" "\x55\x54\xa5\xc8\x95\x5a\x81\x04\x12\xf9\x44\x2b\xb5\x0d\xa9\x02\x55\x44" "\xa1\x35\xb4\x1f\xa0\x22\x6c\x35\x33\xef\xf3\xee\xcc\x78\xaf\x67\x36\xf6" "\xcc\x39\xbf\x9f\x14\x3f\xf6\xec\x99\x99\x77\xce\xbc\x33\xbb\xff\x75\xfe" "\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa0\xdd\x4d\xaf\x9d\xfd\xf0\x50\x51\x14\x8d\xff" "\x9a\xbf\x4c\x14\xc5\x33\x1a\xbf\xdf\x38\x39\xd1\xf8\xe3\xd6\x57\x5c\xed" "\x15\x02\x00\x00\x00\xbd\x7a\xaa\xf9\xeb\xa5\x67\xe7\x0b\x0e\xac\xe2\x4a" "\x6d\xc7\x7c\xf5\x45\xdf\xfc\xe2\xfc\xfc\xfc\x7c\xf1\xd8\x77\x5f\xf6\xfc" "\x8f\xcc\xcf\xe7\x0f\x4c\x16\xc5\xc4\x35\x45\xd1\xfc\x58\x78\xf2\x9e\xbf" "\xdd\xda\x7e\x4c\xf2\x40\x31\x3e\x34\xdc\xf6\xe7\xe1\x15\xee\x7e\x64\x85" "\x8f\x8f\xae\xf0\xf1\xb1\x15\x3e\xbe\x61\x85\x8f\x5f\xb3\xc2\xc7\xc7\x57" "\xf8\xf8\x65\x27\xe0\x32\x1b\x5b\xdf\x8f\x69\xde\xd8\xd6\xe6\x6f\x27\x5a" "\xa7\xb4\xb8\xae\x18\x6b\x7e\x6c\xeb\x22\xd7\x7a\x60\xe8\x9a\xe1\xe1\xf8" "\x5e\x4e\xd3\x50\xf3\x3a\xf3\x63\x47\x8b\xe3\xc5\x89\x62\xb6\x98\xe9\x38" "\xbe\x75\xec\x50\xf3\xf8\x2f\xdf\xd4\xb8\xaf\x3b\x8b\xb8\xaf\xe1\xb6\xfb" "\xba\xb1\xb1\x43\x7e\x78\xdf\xe1\x58\xc3\x50\x3a\xc7\x5b\x3b\xee\x6b\xe1" "\x36\xc3\x0f\x5e\x5d\x4c\xfe\xe8\x87\xf7\x1d\x7e\xd3\xc7\x1e\xbf\x61\xb1" "\xb9\xe2\x69\xe8\xb8\xbd\xd6\x3a\xb7\x6d\x69\xac\xf3\x43\xe9\x92\xd6\x5a" "\x87\x8a\x6b\xf2\x39\x89\x75\x0e\xb7\xad\xf3\xc6\x45\x9e\x93\x91\x8e\x75" "\x0e\x35\xaf\xd7\xf8\x7d\xf7\x3a\x2f\xad\x72\x9d\x23\x0b\xcb\xbc\xa2\xba" "\x9f\xf3\xf1\x62\xb8\xf9\xfb\x47\x9b\xe7\x69\xb4\xfd\xdb\x7a\xf9\x3c\xdd" "\x98\x2e\xfb\xf1\xcd\x45\x51\x5c\x58\x58\x76\xf7\x31\x97\xdd\x57\x31\x5c" "\x6c\xea\xb8\x64\x78\xe1\xf9\x19\x6f\xed\xc8\xc6\x6d\x34\xb6\xd2\x73\x8a" "\xd1\x35\xed\xd3\x9b\x56\xb1\x4f\x1b\xf3\xc8\xd6\xce\x7d\xda\xfd\x9a\x88" "\xe7\xff\xa6\x74\xbd\xd1\x25\xd6\xd0\xfe\x34\xfd\xe0\x83\x1b\x2e\x7b\xde" "\xd7\xba\x4f\x43\xe3\x51\x2f\xf5\x5a\xe9\xde\x83\xeb\xfd\x5a\xe9\x97\x3d" "\x18\xfb\xe2\xd1\xe6\x83\x7e\x70\xd1\x3d\xb8\x35\x3d\xfe\xfb\x6e\x59\x7a" "\x0f\x2e\xba\x77\x16\xd9\x83\xf9\x71\xb7\xed\xc1\x2d\x2b\xed\xc1\xe1\x0d" "\x23\xcd\x35\xe7\x27\x61\xa8\x79\x9d\x85\x3d\xb8\xbd\xe3\xf8\x91\xe6\x3d" "\x0d\x35\xe7\x93\xb7\x2c\xbf\x07\xa7\xcf\x9d\x3c\x33\x3d\xf7\xfe\x0f\xbc" "\xfc\xf8\xc9\x43\xc7\x66\x8f\xcd\x9e\xda\x35\x33\xb3\x67\xe7\xde\xdd\x33" "\x7b\x67\xa6\x8f\x1e\x3f\x31\x9b\x7e\x2d\x79\xb6\xfb\xdf\xa6\x62\x38\xbf" "\x06\xb6\xa4\x73\x17\xaf\x81\x97\x76\x1d\xdb\xbe\x55\xe7\x3f\xb5\x7e\xaf" "\xc3\xf1\x65\x5e\x87\x13\x5d\xc7\xae\xf7\xeb\x70\xb4\xfb\xc1\x0d\x5d\x99" "\x17\xe4\xe5\x7b\xba\xf5\xda\x78\x6b\xe3\xa4\x8f\x3f\x34\x5c\x2c\xf1\x1a" "\x6b\x3e\x3f\xb7\xf6\xfe\x3a\xcc\x8f\xbb\xed\x75\x38\xda\xf6\x3a\x5c\xf4" "\x73\xca\x22\xaf\xc3\xd1\x55\xbc\x0e\x1b\xc7\x9c\xb9\x75\x75\x5f\xb3\x8c" "\xb6\xfd\xb7\xd8\x1a\x9e\xae\xcf\x05\x13\x6d\x7b\xb0\xfb\xeb\x91\xee\x3d" "\xb8\xde\x5f\x8f\xf4\xcb\x1e\x1c\x4f\xfb\xe2\x5f\x6f\x5d\xfa\x73\xc1\x8d" "\x69\xbd\x0f\x4e\xad\xf5\xeb\x91\x91\xcb\xf6\x60\x7e\xb8\xe9\xbd\xa7\x71" "\x49\xfe\x7a\x7f\xfc\x8e\xe6\x58\x6c\x5f\xde\xd0\xf8\xc0\xb5\x1b\x8a\xf3" "\x73\xb3\x67\x6f\x7f\xdf\xa1\x73\xe7\xce\x6e\x2f\xd2\xb8\x22\x9e\xdb\xb6" "\x57\xba\xf7\xeb\xa6\xb6\xc7\x54\x5c\xb6\x5f\x87\xd7\xbc\x5f\x0f\x7c\xf8" "\xeb\xdf\xb8\x61\x91\xcb\x27\xd2\xb9\x1a\x7f\x79\xe3\x97\xf1\x25\x9f\xab" "\xc6\x31\xbb\x6e\x5f\xfe\xb9\x6a\x7e\x76\x5b\xfc\x7c\x76\x5c\xba\xa3\x48" "\x63\x9d\x5d\xe9\xf3\xb9\xd8\x67\xf3\xc6\xf9\xcc\x59\x72\x99\xf3\xd9\x38" "\xe6\x43\xd3\xbd\x7f\x2d\x9e\x73\x69\xdb\xfb\xef\xd8\x12\xef\xbf\x91\xfb" "\x7f\xd6\xbc\x9f\xad\xf9\xa6\x1e\x18\x19\x1b\x6d\xbd\x7e\x47\xf2\xd9\x19" "\xeb\x78\x3f\xee\x7c\xaa\x46\x9b\xef\x5d\x43\xcd\xfb\xbe\x34\xbd\xba\xf7" "\xe3\xb1\xf4\xdf\x95\x7e\x3f\xbe\x6e\x99\xf7\xe3\xcd\x5d\xc7\xae\xf7\xfb" "\xf1\x58\xf7\x83\x8b\xf7\xe3\xa1\x95\xbe\xdb\xd1\x9b\xee\xe7\x73\x3c\xed" "\x93\x13\x33\xcb\xbf\x1f\x37\x8e\xd9\xbc\x63\xad\x7b\x72\x74\xd9\xf7\xe3" "\x9b\xd3\x1c\x4a\xe7\xff\x65\x29\x29\xe4\x5c\xd4\xb6\x77\x96\xda\xb7\xf9" "\xbe\x46\x47\xc7\xd2\xe3\x1a\x8d\x7b\xe8\xdc\xa7\x3b\x3b\x8e\x1f\x4b\xd9" "\xac\x71\x5f\x9f\xdd\x51\x6e\x9f\x6e\xbb\xb9\x75\x5b\x23\xf9\xd1\x2d\xb8" "\x52\xfb\x74\xb2\xeb\xd8\xf5\xde\xa7\xf9\xfd\x6a\xa9\x7d\x3a\xb4\xd2\x77" "\xdf\xca\xe9\x7e\x3e\xc7\xd3\xbe\xb8\x6e\xe7\xf2\xfb\xb4\x71\xcc\xc5\x5d" "\xbd\xbf\x77\x6e\x8c\xdf\xb6\xbd\x77\x6e\x58\x69\x0f\x8e\x8d\x6c\x68\xac" "\x79\x2c\x6f\xc2\xd6\xfb\xfd\xfc\xc6\xd8\x83\xb7\x17\x87\x8b\xd3\xc5\x89" "\xe2\x48\xf3\xa3\x1b\x9a\xfb\x69\xa8\x79\x5f\x53\xbb\x57\xb7\x07\x37\xa4" "\xff\xae\xf4\x7b\xe5\xe6\x65\xf6\xe0\xb6\xae\x63\xd7\x7b\x0f\xe6\xcf\x63" "\x4b\xed\xbd\xa1\xd1\xcb\x1f\xfc\x3a\xe8\x7e\x3e\xc7\xd3\xbe\xf8\xe8\xee" "\xe5\xf7\x60\xe3\x98\xd7\xed\x5d\xdf\xaf\x5d\xb7\xa5\x4b\xf2\x31\x6d\x5f" "\xbb\x76\x7f\x7f\x6d\xa9\xef\x79\xdd\xd0\x75\x9a\x9e\xce\xef\x79\x35\xd6" "\xf9\x0f\x7b\x97\xff\xde\x6c\xe3\x98\x13\x77\xac\x35\x67\x2e\x7f\x9e\x6e" "\x4b\x97\x5c\xbb\xc8\x79\xea\x7e\xfd\x2e\xf5\x9a\x3a\x52\x5c\x99\xf3\xb4" "\x39\xad\xf3\xfb\x77\x2c\x7d\x9e\x1a\xeb\x69\x1c\xf3\x91\x7d\xab\xdc\x4f" "\x07\x8a\xa2\xf8\xc2\xdd\x07\x9a\xdf\xef\x4d\x7f\xbf\xf2\xf9\xf3\xdf\xfa" "\x62\xc7\xdf\xbb\x1c\x68\x7d\xec\x4b\xfb\x16\x6e\xeb\xb2\xaf\x3a\x16\xfb" "\x7b\x9f\x2f\xdc\x7d\xe0\xe2\x3f\xdf\xf5\x93\xb5\x3c\x46\x00\xfa\xdb\xcf" "\x9a\xbf\x6e\xdd\xd4\xfa\x5c\xd7\xf6\x37\x53\xab\xf9\xfb\x7f\x00\x00\x00" "\x60\x20\x44\xee\x1f\x4e\x33\x93\xff\x01\x00\x00\xa0\x32\x22\xf7\xc7\xff" "\x15\x9e\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x47\xd3\xcc\x6a\x92\xff\x1f" "\xfc\xb7\xe7\xbd\xfb\xa7\xf7\x17\xb9\x99\x3f\x9f\xc4\xc7\xe3\x34\x9c\x79" "\xa2\x75\x5c\x74\x5c\x3f\x99\xfe\x3c\x39\xbf\xa0\x71\xf9\x6b\x3e\xf3\x8f" "\x5f\x7f\xfb\xfd\xab\xbb\xef\xe1\xa2\x28\x7e\x7a\xd7\xbf\x2c\x7a\xfc\x83" "\x4f\xc4\xba\x5a\x1e\x4e\xeb\x9c\xfc\x76\xe7\xe5\x97\xd9\xfc\xed\x55\xdd" "\xff\x3b\xee\x5d\x38\xae\xbd\x03\x38\x91\x6e\x3f\x1e\x4f\xf7\x36\xf8\xf2" "\x7f\x3f\xd1\xbc\xde\xe4\xbe\xd6\xbc\x78\xd7\xc5\xe6\x7c\xf3\x85\x07\x1f" "\x68\x7c\xfc\xd2\xbe\xd6\x9f\xa3\x3b\xf9\xe4\xff\xb4\x8e\xfb\xf3\x54\xe6" "\x3d\x70\xf4\xef\x3b\xae\xbf\xed\xb1\xd6\xfd\x6d\x7d\x6c\xf9\xc7\x15\xd7" "\xfb\xdc\x1b\x37\xde\xfd\x82\xb7\x2d\xdc\x5f\x5c\x6f\x68\xcb\xb3\x9a\x0f" "\xe3\xa3\xaf\x6c\xdd\x6e\xfc\xdc\x9b\x87\x5f\xdb\x3a\xfe\x52\x3a\x6e\xa9" "\xf5\xff\xdd\x1f\x7f\xf6\x73\x8d\xe3\xdf\xf7\x92\xc5\xd7\x7f\xff\xf0\xe2" "\xeb\x7f\x32\xdd\xee\x77\xd2\xfc\xc9\x53\xad\xcb\xdb\xcf\x69\xe3\xcf\x71" "\xbd\x3f\x4c\xeb\x8f\xfb\x8b\xeb\xdd\xfe\xe9\xaf\x2c\xba\xfe\x47\xde\xd0" "\x3a\xfe\x91\xf4\xbc\x7c\x32\xcd\xee\xf5\xbf\xfa\x4f\x5f\xf8\x54\xfb\xf9" "\x8a\xf5\xc7\xfd\x1c\x78\xbc\x75\xbd\xb8\xff\x99\xbf\xfe\x8f\xe6\xf5\xe2" "\xf6\xe2\xf6\xbb\xd7\x3f\xfe\xaa\x27\x3a\xce\x47\xf7\xed\x5f\xfc\x7c\xeb" "\x76\xf6\xbf\xe7\x7f\x47\xda\x8f\x8f\xcb\xe3\x7e\xf2\xbe\x7b\xbc\xf3\x79" "\x6e\xdc\x4e\xfb\x7e\x0b\x9f\xfd\xa3\x8b\x1d\xe7\xb9\xf8\xf7\xd6\xf5\xfe" "\xa6\x6b\xfd\x71\x7b\x67\x1e\x5f\x7c\xfd\xb7\x75\xad\xf3\xcc\xf6\x4d\xcd" "\xeb\x2f\x55\x19\xff\xf8\xec\x77\x16\x7d\xbc\xb1\x9e\x03\x7f\xf5\x68\xc7" "\xe3\x79\xe4\x7b\xe9\xfc\xbd\xe6\x9e\xe6\xed\x8e\xff\x38\xed\xc7\xf4\xf1" "\xff\x7b\xb8\x75\x7b\xdd\x3f\x2d\xe1\xd1\xef\x75\xbe\x9f\xc4\xf1\x9f\x9c" "\x68\xbd\x2e\xe3\xf6\xa6\xbb\xd6\xff\x70\xd7\xfa\x2f\xbc\xb8\x71\xee\x56" "\x5e\xff\x9d\x3f\x6a\xad\xff\x91\x57\x7d\xb5\xf3\xf9\xf8\xcf\xd6\x3a\x0e" "\xfc\xa0\x35\x57\x5a\xff\xb1\x4f\x7c\xb3\xe3\xfa\x9f\xfa\x56\xeb\xf9\x38" "\xfb\xde\xa9\x53\xa7\xe7\xce\x1f\x8f\x0e\xf5\x44\xfa\xd9\x3f\x67\xbe\xdb" "\xba\xbd\x6b\xc6\x37\x6e\xba\xf6\x19\xcf\x7c\xd6\xb3\xd3\x7b\x65\xf7\x9f" "\x0f\x9e\x3e\xf7\xce\xd9\xb3\x93\x33\x93\x33\x45\x31\x39\x80\x3f\x12\xef" "\xe9\x5e\xff\xa7\xd3\xfc\xaf\xd6\xb8\xb0\xde\xb7\x7f\x5f\x51\x14\xef\x6d" "\xfb\xbc\x76\xeb\xeb\x5b\xfb\xaf\x78\xd1\xa5\x3f\x79\xf1\x9d\x9f\x79\x67" "\x1c\xf7\x4f\xaf\x6b\x5d\xfe\xd0\xdd\xad\xcf\x5b\x2f\x4d\xc7\x3d\x9c\x2e" "\xbf\x90\x9e\xef\xb8\x9d\x8f\x7f\xac\xf5\xf9\xb0\xd7\xf5\xc7\xfd\x2c\x35" "\xf3\x7a\x57\xe9\xfc\xd7\x3e\xbc\x67\x55\x07\xa6\xc7\xff\xd1\x9b\xae\x6f" "\xbe\xca\x86\x2e\xb6\x2e\xee\x7e\xbf\x2a\x2b\x5e\xe7\x8f\x3f\xaf\xf3\x75" "\xff\xd8\x5b\x5b\xf3\x4b\xe9\xbc\xce\xa7\x9f\xcc\xbc\xe5\xfa\xaf\x35\x8f" "\xeb\xbe\xff\xf8\xd9\x08\x0f\xbd\xa5\xf5\xfa\x8e\xaf\xe4\xe2\xfa\xbd\xae" "\xff\x2f\xd3\xf3\x7d\xcf\x77\x5a\xb7\x1f\xb7\x9b\xd7\x9b\xbe\x8e\xf9\xca" "\xe6\xce\xf7\xc7\x78\x7e\xbe\x74\x7f\xd7\x4f\x1a\x98\x68\xfd\x14\x8f\x0b" "\xe9\xfd\xa3\xb8\xd0\xfa\x78\x1c\x15\x5f\x53\x3d\x74\xe9\xfa\xb5\x2c\x73" "\x49\x73\xef\x9f\x9b\x3e\x71\xfc\xd4\xf9\xf7\x4d\x9f\x9b\x9d\x3b\x37\x3d" "\xf7\xfe\x0f\x1c\x3c\x79\xfa\xfc\xa9\x73\x07\x9b\x3f\x9b\xf3\xe0\xbb\x56" "\xba\xfe\xc2\xeb\x7b\x53\xf3\xf5\x7d\x64\x76\xcf\xae\xa2\xf9\x6a\x3f\xdd" "\x1a\x4f\xb3\xab\xbd\xfe\x33\xf7\x1e\x3e\xb2\x77\xe6\x96\x23\xb3\x47\x0f" "\x9d\x3f\x7a\xee\xde\x33\xb3\x67\x8f\x1d\x9e\x9b\x3b\x3c\x7b\x64\xee\x96" "\x43\x47\x8f\xce\xbe\x77\xa5\xeb\x1f\x3f\xb2\x7f\xfb\x8e\x7d\x3b\xf7\xee" "\x98\x3a\x76\xfc\xc8\xfe\x3b\xf6\xed\xdb\xb9\x6f\xea\xf8\xa9\xd3\x8d\x65" "\xb4\x16\xb5\x82\x3d\x33\xef\x9e\x3a\x75\xf6\x60\xf3\x2a\x73\xfb\x77\xed" "\xdb\xbe\x7b\xf7\xae\x99\xa9\x93\xa7\x8f\xcc\xee\xdf\x3b\x33\x33\x75\x7e" "\xa5\xeb\x37\x3f\x37\x4d\x35\xae\xfd\x9e\xa9\xb3\xb3\x27\x0e\x9d\x3b\x7e" "\x72\x76\x6a\xee\xf8\x07\x66\xf7\x6f\xdf\xb7\x67\xcf\x8e\x15\x7f\xba\xdf" "\xc9\x33\x47\xe7\x26\xa7\xcf\x9e\x3f\x35\x7d\x7e\x6e\xf6\xec\x74\xeb\xb1" "\x4c\x9e\x6b\x5e\xdc\xf8\xdc\xb7\xd2\xf5\xa1\x61\xee\x13\x1b\x17\xfd\x3c" "\x35\x94\xbe\x7a\xdf\x7e\xdb\x9e\xfc\xf3\x59\x1b\x3e\xf3\xc1\x25\x6f\xaa" "\x75\x48\xd7\x0f\x10\xfd\x7e\xfa\x59\x34\xdf\xf8\x8b\x3f\xdb\xbd\x9a\x3f" "\x47\xee\x1f\x4b\x33\xab\x49\xfe\x07\x00\x00\x80\x3a\x88\xdc\xbf\x21\xcd" "\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f\x4d\x9a\x99\xfc\x0f\x00\x00\x00" "\x95\x11\xb9\x7f\x3c\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f" "\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f" "\xff\x5f\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff\xc6\xa2\xa8\x65\xfe\x07\x00" "\x00\x80\x3a\x88\xdc\xbf\x29\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f" "\x6d\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\x19\x69\x66\x35\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff" "\x32\xf4\xff\xf5\xff\x07\x61\xfd\xfa\xff\xfa\xff\xf4\xae\xdf\xfa\xff\x91" "\xfb\x9f\x99\x66\x56\x93\xfc\x0f\x00\x00\x00\x75\x10\xb9\xff\x59\x69\x66" "\xf2\x3f\x00\x00\x00\x54\x46\xe4\xfe\x67\xa7\x99\xc9\xff\x00\x00\x00\x50" "\x19\x91\xfb\x27\xd2\xcc\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x83" "\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x65\xe8\xff\xeb\xff\x0f\xc2\xfa\xf5" "\xff\xf5\xff\xe9\x5d\xbf\xf5\xff\x23\xf7\xff\x5c\x9a\x59\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xe4\xfe\xe7\xa4\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb" "\x9f\x9b\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\xbf\x2e\xcd\xac\x26\xf9" "\x5f\xff\x5f\xff\xbf\x7f\xfa\xff\x0b\xb5\x58\xfd\x7f\xfd\x7f\xfd\xff\xc1" "\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f\xff\x9f\xde" "\xf5\x5b\xff\x3f\x72\xff\xf3\xd2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x22" "\xf7\x5f\x9f\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\x7f\x7e\x9a\x99\xfc" "\x0f\x00\x00\x00\x95\x11\xb9\x7f\x73\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\x7f" "\xff\xf4\xff\xfd\xfb\xff\x41\xff\x5f\xff\x7f\x90\xe8\xff\xeb\xff\x97\xa1" "\xff\xaf\xff\x3f\x08\xeb\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\xff" "\xf3\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\x6f\x48\x33\x93\xff" "\x01\x00\x00\xa0\x32\x22\xf7\xbf\x20\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88" "\xdc\x7f\x63\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff" "\xd7\xff\x2f\x43\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x41\x58\xbf\xfe\xbf" "\xfe\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe\x17\xa6\x99\xd5\x24\xff\x03\x00\x00" "\x40\x1d\x44\xee\x7f\x51\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\xc5" "\x69\x66\xf2\x3f\x00\x00\x00\x54\x46\xe4\xfe\xc9\x34\xb3\x9a\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\x7f\x19" "\xfa\xff\xfa\xff\x83\xb0\x7e\xfd\x7f\xfd\x7f\x7a\xd7\x6f\xfd\xff\xc8\xfd" "\x37\xa5\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xdf\x92\x66\x26\xff" "\x03\x00\x00\x40\x65\x44\xee\xbf\x39\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88" "\xdc\xbf\x35\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff" "\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f" "\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff\x4b\xd2\xcc\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x22\xf7\xdf\x92\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\x7f\x69" "\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f\x5b\x9a\x59\x4d\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff\xbf\x0c" "\xfd\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe" "\x97\xa5\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xbf\x35\xcd\x4c\xfe" "\x07\x00\x00\x80\xca\x88\xdc\x7f\x5b\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11" "\xb9\x7f\x2a\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff" "\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f" "\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff\xcb\xd3\xcc\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x22\xf7\xdf\x9e\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\x9f\x4e" "\x33\x93\xff\x01\x00\x00\xa0\x32\x22\xf7\xcf\xa4\x99\xd5\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x32\xf4\xff\xf5\xff\xcb\xd0" "\xff\xd7\xff\x1f\x84\xf5\xeb\xff\xeb\xff\xd3\xbb\x7e\xeb\xff\x47\xee\xdf" "\x9e\x66\x56\x93\xfc\x0f\x00\x00\x00\x75\x10\xb9\x7f\x47\x9a\x99\xfc\x0f" "\x00\x00\x00\x95\x11\xb9\x7f\x67\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9" "\x7f\x57\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7" "\xff\x2f\x43\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe" "\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe\xdd\x69\x66\x35\xc9\xff\x00\x00\x00\x50" "\x07\x91\xfb\xf7\xa4\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\xf7\xa6\x99" "\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\xef\x48\x33\xab\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x65\xe8\xff\xeb\xff\x97\xa1\xff" "\xaf\xff\x3f\x08\xeb\xbf\x22\xfd\xff\x07\x96\xfe\x31\x00\xfa\xff\x54\x41" "\xbf\xf5\xff\x23\xf7\xef\x4b\x33\xab\x49\xfe\x07\x00\x00\x80\x3a\x88\xdc" "\xff\x8a\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\x2f\xa4\x99\xc9\xff" "\x00\x00\x00\x50\x19\x91\xfb\x7f\x31\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe" "\xff\x20\xac\xdf\xbf\xff\xaf\xff\x4f\xef\xfa\xad\xff\x1f\xb9\x7f\x7f\x9a" "\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\x57\xa6\x99\xc9\xff\x00\x00" "\x00\x50\x19\x91\xfb\x5f\x95\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\x3f" "\x90\x66\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x1f\xf4\xff\x07\xa4" "\xff\xff\x07\xab\x38\xe6\x0a\xd2\xff\xd7\xff\x2f\x43\xff\x5f\xff\x7f\x10" "\xd6\xaf\xff\xaf\xff\x4f\xef\xfa\xad\xff\x1f\xb9\xff\xd5\x69\x66\x35\xc9" "\xff\x00\x00\x00\x50\x07\x91\xfb\x5f\x93\x66\x26\xff\x03\x00\x00\x40\x65" "\x44\xee\x7f\x6d\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\x75\x69\x66" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x7f\x40\xfa\xff\x7d" "\x46\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe\x3f\xbd" "\xeb\xb7\xfe\x7f\xe4\xfe\xd7\xa7\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44" "\xee\xff\xa5\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\x1b\xd2\xcc\xe4" "\x7f\x00\x00\x00\xa8\x8c\xc8\xfd\x77\xa6\x99\xd5\x24\xff\xeb\xff\xeb\xff" "\x3f\x5d\xfd\xff\x0d\xe9\x36\xf4\xff\xdb\xf6\x9d\xfe\x7f\x93\xfe\xbf\xfe" "\xff\x5a\xe8\xff\xeb\xff\x17\x6b\xe9\xff\x0f\xa5\x57\xb0\xfe\x7f\xd3\xd5" "\xee\xcf\x0f\xfa\xfa\xf5\xff\xf5\xff\xe9\x5d\xbf\xf5\xff\x23\xf7\xff\x72" "\x9a\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\xbb\xd2\xcc\xe4\x7f\x00" "\x00\x00\xa8\x8c\xc8\xfd\x77\xa7\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb" "\xdf\x98\x66\x56\x93\xfc\xdf\xf7\xfd\xff\x74\x87\xfa\xff\x4b\xf6\xff\x9f" "\xd9\x98\xfd\xd8\xff\x0f\xfa\xff\x6d\xfb\x4e\xff\xbf\x49\xff\x5f\xff\x7f" "\x2d\xf4\xff\xf5\xff\x0b\xff\xfe\x7f\x69\x57\xbb\x3f\x3f\xe8\xeb\xd7\xff" "\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\x7f\x4f\x9a\x59\x4d\xf2\x3f\x00\x00" "\x00\xd4\x41\xe4\xfe\x5f\x49\x33\x6b\xcf\xff\x4b\xfd\x65\x19\x00\x00\x00" "\x30\x10\x22\xf7\xff\x6a\x9a\x99\xbf\xff\x07\x00\x00\x80\xca\x88\xdc\xff" "\xa6\x34\xb3\x9a\xe4\xff\xbe\xef\xff\x27\xfa\xff\x83\xf7\xef\xff\x07\xfd" "\xff\xb6\x7d\xa7\xff\xdf\xa4\xff\xaf\xff\xbf\x16\xfa\xff\xfa\xff\x85\xfe" "\x7f\x69\x57\xbb\x3f\x3f\xe8\xeb\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f" "\xdc\xff\x6b\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\xdf\x9c\x66" "\x26\xff\x03\x00\x00\x40\x65\x44\xee\x7f\x4b\x9a\x99\xfc\x0f\x00\x00\x00" "\x95\x11\xb9\xff\xad\x69\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x41\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x32\xf4\xff\xf5\xff\x07\x61\xfd" "\xfa\xff\xfa\xff\xf4\xae\xdf\xfa\xff\x91\xfb\xef\x4d\x33\xab\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xdc\xff\xb6\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72" "\xff\xaf\xa7\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x7f\x23\xcd\xac\x26" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xaf" "\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f\xff\x9f\xde\xf5\x5b\xff" "\x3f\x72\xff\x6f\xa6\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\x7f\x7b" "\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\xb7\xd2\xcc\xe4\x7f\x00\x00" "\x00\xa8\x8c\xc8\xfd\xbf\x9d\x66\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\x1f\xf4\xff\xf5\xff\xcb\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff\x7f\x10" "\xd6\xaf\xff\xaf\xff\x4f\xef\xfa\xad\xff\x1f\xb9\xff\x77\xd2\xcc\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x22\xf7\xff\x6e\x9a\x99\xfc\x0f\x00\x00\x00\x95" "\x11\xb9\xff\x60\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\x1d\x69\x66" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0c\xfd" "\x7f\xfd\xff\x32\xf4\xff\xf5\xff\x07\x61\xfd\xfa\xff\xfa\xff\xf4\xae\xdf" "\xfa\xff\x91\xfb\x0f\xa5\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xff" "\xbd\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\xe1\x34\x33\xf9\x1f\x00" "\x00\x00\x2a\x23\x72\xff\x91\x34\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xa0\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x61" "\xb9\x27\xe4\x6a\xaf\x7f\xbd\xfa\xff\x23\x85\xfe\x3f\xf5\xd5\x6f\xfd\xff" "\xc8\xfd\xb3\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\x8f\xa6\x99" "\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x8f\xa5\x99\xc9\xff\x00\x00\x00\x50" "\x19\x91\xfb\xdf\x99\x66\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x1f" "\xf4\xff\xf5\xff\xcb\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff\x7f\x10\xd6\xef" "\xdf\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\x7f\x3c\xcd\xac\x26\xf9\x1f" "\x00\x00\x00\xea\x20\x72\xff\xbb\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\xc8" "\xfd\xef\x4e\x33\x93\xff\x01\x00\x00\xa0\x32\x22\xf7\x9f\x48\x33\xab\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x65\xe8\xff\xeb" "\xff\x97\xa1\xff\xaf\xff\x3f\x08\xeb\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff" "\x8f\xdc\x7f\x32\xcd\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\x72\xff\xa9\x34" "\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\xe9\x34\x33\xf9\x1f\x00\x00\x00" "\x2a\x23\x72\xff\x99\x34\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xa0\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x83\xb0\x7e" "\xfd\x7f\xfd\x7f\x7a\xd7\x6f\xfd\xff\xc8\xfd\xbf\x9f\x66\x56\x93\xfc\x0f" "\x00\x00\x00\x75\x10\xb9\xff\x6c\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9" "\x7f\x2e\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f\x2e\xcd\xac\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xff\xff" "\xec\xdd\xd5\x8b\x60\xd9\x11\xc7\xf1\x26\x24\xd0\x4f\xf9\x6f\xe3\xee\xee" "\xee\xee\xbe\x71\x77\x77\x77\x77\x77\xcf\x43\x48\xba\xaa\x42\xb2\x9b\x84" "\x3d\x77\x66\xf7\xdc\xaa\xcf\xe7\xa5\xa0\x17\x96\xc3\xd0\x0f\xf3\x63\xf8" "\x72\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa" "\xff\xdc\xfd\x77\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x1d\xe3" "\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\x7f\xa7\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\xdf\x39\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9" "\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7" "\xff\x73\xdc\x6e\xfd\x7f\xee\xfe\xbb\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c" "\x90\xbb\xff\xae\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xbf\x5b\xdc\x62" "\xff\x03\x00\x00\x40\x1b\xb9\xfb\xef\x1e\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x9f\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff" "\x0c\xef\xd7\xff\xeb\xff\x39\x6e\xb7\xfe\x3f\x77\xff\x3d\xe2\x96\x21\xfb" "\x1f\x00\x00\x00\x26\xc8\xdd\x7f\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\xdf\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xf7\x8e\x5b\x86\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f" "\x85\xfe\x5f\xff\x7f\x86\xf7\xeb\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff" "\x3e\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xbf\x6f\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\xef\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe" "\xfb\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f" "\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xf5\xff\xfa\x7f\x8e\xdb" "\xad\xff\xcf\xdd\xff\x80\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f" "\x30\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x0f\x8a\x5b\xec\x7f\x00\x00" "\x00\x68\x23\x77\xff\x83\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x93\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x5f\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa" "\x7f\xfd\x3f\xc7\xed\xd6\xff\xe7\xee\x7f\x48\xdc\x32\x64\xff\x03\x00\x00" "\xc0\x04\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x87\xc5" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xe1\x71\xcb\x90\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb" "\xff\xcf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x3f\x22\x6e\x19" "\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x8f\x8c\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\xa3\xe2\x96\xff\xdc\xff\x97\xb7\xe4\xab\x00\x00\x00\x80\x6b" "\x29\x77\xff\xa3\xe3\x96\x21\xff\xfe\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49" "\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xcf\xf0\x7e\xfd\xbf" "\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x3f\x26\x6e\x19\xb2\xff\x01\x00\x00\x60" "\x82\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xe3\xe2\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xf8\xb8\x65\xc8\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xa4\xff\xd7\xff\xaf\xd0\xff\xeb\xff\x57\xe8\xff\xf5\xff" "\x67\x78\xbf\xfe\x5f\xff\xcf\x71\xbb\xf5\xff\xb9\xfb\x9f\x10\xb7\x0c\xd9" "\xff\x00\x00\x00\x30\x41\xee\xfe\x27\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x49\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x72\xdc\x32\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff" "\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa\xff\xdc\xfd" "\x4f\x89\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x53\xe3\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xb4\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7" "\x3f\x3d\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff" "\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc" "\x6e\xfd\x7f\xee\xfe\x67\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff" "\x99\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x9f\x1d\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x9f\xf4\xff\xfa\xff\x15\x0d\xfb\xff\xab\x5f\x01\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x39\x6c\xb7\xfe\x3f\x77\xff\x73\xe2\x96\x21\xfb\x1f" "\x00\x00\x00\x26\xc8\xdd\xff\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7" "\x3f\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xcf\x8f\x5b\x86\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x8a\x86\xfd\xbf\xef\xff" "\x5f\x5c\xeb\xfe\xff\xf2\x46\x3f\xd1\xff\xeb\xff\xcf\xf0\x7e\xfd\xbf\xfe" "\x9f\xe3\x76\xeb\xff\x73\xf7\xbf\x20\x6e\x19\xb2\xff\x01\x00\x00\x60\x82" "\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x8b\xe2\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xe2\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xa4\xff\xd7\xff\xaf\xd0\xff\x37\xed\xff\x6f\x73\xe1\xfb\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x61\xbb\xf5\xff\xb9\xfb\x5f\x12\xb7\x0c" "\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x79\xdc\x32" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\x9b" "\xf6\xff\xd7\xf4\xfb\xff\x37\xa6\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f" "\xc7\xed\xd6\xff\xe7\xee\x7f\x45\xdc\x32\x64\xff\x03\x00\x00\xc0\x69\xdd" "\x8c\xed\x9e\xbb\xff\x95\x71\x57\xfe\x1f\x00\x00\x00\xc0\xde\x72\xf7\xbf" "\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8e\x5b\x86\xec\x7f\xfd" "\xbf\xfe\x7f\x8f\xfe\xff\x86\x8b\x9b\x7a\xbf\xfe\x5f\xff\x7f\xa1\xff\xdf" "\x9e\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xaf\x53\xff\x9f\xbf\xa6" "\xfa\x7f\x46\xd8\xad\xff\xcf\xdd\xff\x9a\xb8\x65\xc8\xfe\x07\x00\x00\x80" "\x09\x72\xf7\xdf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xd7\xc6\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x75\x71\xcb\x90\xfd\xaf\xff\xd7\xff" "\xef\xd1\xff\xcf\xfc\xfe\xff\xa5\xfe\xff\xdf\xfe\x3c\xf5\xff\xfa\xff\x9b" "\xa2\xff\xd7\xff\x5f\xe8\xff\x97\xdd\xda\xfd\xfc\xd9\xdf\xef\xfb\xff\xfa" "\x7f\x8e\xdb\xad\xff\xcf\xdd\xff\xfa\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09" "\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x6f\x8c\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x9b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7" "\xff\xfb\xfe\x7f\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff" "\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa\xff\xdc\xfd\x6f\x8e\x5b\x86\xec" "\x7f\x00\x00\x00\x98\x20\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x2d\x6e\x19\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff" "\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\x7f\xee\xfe" "\xb7\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x1d\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\xdf\x15\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f\xf4\xff\xfa\xff" "\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff\x0c\xef\xd7\xff\xeb\xff\x39\x6e" "\xb7\xfe\x3f\x77\xff\xbb\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff" "\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\xef\x8b\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x4f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\x7f\x86\xf7\xeb" "\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff\xfd\x71\xcb\x90\xfd\x0f\x00\x00" "\x00\x13\xe4\xee\xff\x40\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x3f\x18" "\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x0f\xc5\x2d\x43\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf" "\xff\x3f\xc3\xfb\xf5\xff\xfa\x7f\x8e\xdb\xad\xff\xcf\xdd\xff\xe1\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xc7\xe2\x96" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\xbf\x42\xff\xaf" "\xff\x5f\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6\xff\xe7" "\xee\xff\x78\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f\x11\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x53\xff\xbc\xb7\xfd\xd7\x7f\x18\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x19\xde" "\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\xff\xd5\xee\xbf\xbc\xf8\x74\xdc\x32\x64" "\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\xcf\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x73\x71\xcb\x90" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x5f\xa1\xff\xd7\xff" "\xaf\xd0\xff\xeb\xff\xcf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7" "\x7f\x3e\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x5f\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x23\x77\xff\x17\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xa5\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\x7b\xf5\xff\x57\x29\x9e\xfe\xff" "\x8a\xfe\xff\x8a\xfe\xff\xfa\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x67\x78" "\xbf\xfe\x5f\xff\xcf\x71\xbb\xf5\xff\xb9\xfb\xbf\x1c\xb7\x0c\xd9\xff\x00" "\x00\x00\x30\x41\xee\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff" "\xab\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5a\xdc\x32\x64\xff\xeb" "\xff\xf5\xff\xbd\xfa\xff\x2b\xfa\xff\x2b\xfa\xff\x2b\xfa\xff\xeb\x4b\xff" "\xaf\xff\x5f\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6\xff" "\xe7\xee\xff\x7a\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x11\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x5b\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff" "\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xff\x9b\xdb\x6f\xf4\x7e" "\xfd\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x7f\x3b\x6e\x19\xb2\xff\x01\x00" "\x00\x60\x82\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x77" "\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xbd\xb8\x65\xc8\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xa4\xff\xd7\xff\xaf\xd0\xff\xeb\xff\x57\xe8\xff" "\xf5\xff\x67\x78\xbf\xfe\x5f\xff\xcf\x71\xbb\xf5\xff\xb9\xfb\xbf\x1f\xb7" "\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00\x00" "\xb4\x91\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x51\xdc" "\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff" "\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa\xff" "\xdc\xfd\x3f\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x4f\xe2\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\xff\x2c\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff" "\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff" "\x73\xdc\xff\xea\xff\xe3\xef\xfc\xb7\x68\xff\x9f\xbb\xff\xe7\x71\xcb\x90" "\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x45\xdc\x62\xff\x03\x00\x00\x40\x1b" "\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x5f\xc5\x2d\x43" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff" "\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xf5\xff\xfa\x7f\x8e\xdb\xed\xfb\xff\xb9" "\xfb\x7f\x1d\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xdf\xc4\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4" "\xee\xff\x5d\xdc\x32\x64\xff\xff\xbf\xfe\xff\x76\x71\x6f\xc5\xfe\x3f\x9f" "\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x0d\xe9\xff\xf5\xff\x2b\xf4\xff" "\xfa\xff\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa\xff\xdc\xfd\xbf\x8f\x5b" "\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x1f\xe2\x16\xfb\x1f\x00\x00\x00" "\xda\xc8\xdd\xff\xc7\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x29\x6e" "\x19\xb2\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x85\xfe" "\x5f\xff\xbf\x62\x7c\xff\xff\x8f\x1f\xeb\xff\xb7\x7f\xbf\xfe\x5f\xff\xcf" "\x71\xbb\xf5\xff\xb9\xfb\xff\x1c\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xaf\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\xff\x5b\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xc6\xf7\xff\xbe\xff\x7f" "\x8a\xf7\xeb\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff\xef\x01\x00\x00\xff" "\xff\x12\x81\x65\xed", 24215)); NONFAILING(syz_mount_image(/*fs=*/0x200000000380, /*dir=*/0x2000000006c0, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x200000000b80, /*chdir=*/0x41, /*size=*/0x5e97, /*img=*/0x200000005e00)); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 00} (length 0xff) // } // mode: open_mode = 0x45 (8 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x2000000009c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 255)); syscall(__NR_creat, /*file=*/0x2000000009c0ul, /*mode=S_IXOTH|S_IROTH|S_IXUSR*/ 0x45ul); // mknod arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 00} // (length 0xfa) // } // mode: mknod_mode = 0x1000 (8 bytes) // dev: int32 = 0x0 (4 bytes) // ] NONFAILING( memcpy((void*)0x20000001f480, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 250)); syscall(__NR_mknod, /*file=*/0x20000001f480ul, /*mode=S_IFIFO*/ 0x1000ul, /*dev=*/0); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: open_flags = 0x16d042 (8 bytes) // mode: open_mode = 0x0 (8 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000180, "./bus\000", 6)); syscall(__NR_open, /*file=*/0x200000000180ul, /*flags=O_SYNC|O_NOFOLLOW|O_NOATIME|O_LARGEFILE|O_DIRECT|0x42*/ 0x16d042ul, /*mode=*/0ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 62 66 71 2e 67 72 6f 75 70 5f 77 61 69 74 // 5f 74 69 6d 65 00} (length 0x1a) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000200, "blkio.bfq.group_wait_time\000", 26)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000200ul, /*flags=*/0x275a, /*mode=*/0); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 70 75 61 63 63 74 2e 75 73 61 67 65 5f 70 65 72 63 70 75 // 5f 73 79 73 00} (length 0x19) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x2000000003c0, "cpuacct.usage_percpu_sys\000", 25)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000003c0ul, /*flags=*/0x275a, /*mode=*/0); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 74 68 72 6f 74 74 6c 65 2e 69 6f 5f 73 65 // 72 76 69 63 65 5f 62 79 74 65 73 5f 72 65 63 75 72 73 69 76 65 00} // (length 0x2a) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000340, "blkio.throttle.io_service_bytes_recursive\000", 42)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000340ul, /*flags=*/0x275a, /*mode=*/0); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 67 72 6f 75 70 2e 63 6f 6e 74 72 6f 6c 6c 65 72 73 00} // (length 0x13) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000180, "cgroup.controllers\000", 19)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000180ul, /*flags=*/0x275a, /*mode=*/0); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 00} (length 0x101) // } // mode: open_mode = 0x0 (8 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000580, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 257)); syscall(__NR_creat, /*file=*/0x200000000580ul, /*mode=*/0ul); // syz_mount_image$fuse arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 00} (length // 0xf7) // } // flags: mount_flags = 0x0 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: const = 0x0 (8 bytes) // img: nil // ] // returns fd_dir NONFAILING( memcpy((void*)0x200000000580, "./" "file1aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 247)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x200000000580, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0)); // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // mode: open_mode = 0x40 (8 bytes) // ] NONFAILING( memcpy((void*)0x200000000500, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); syscall(__NR_mkdir, /*path=*/0x200000000500ul, /*mode=S_IXUSR*/ 0x40ul); // symlink arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 00} (length 0xfe) // } // ] NONFAILING(memcpy((void*)0x200000000280, "./file0\000", 8)); NONFAILING( memcpy((void*)0x200000001180, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 254)); syscall(__NR_symlink, /*old=*/0x200000000280ul, /*new=*/0x200000001180ul); // mknod$loop arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 00} (length 0xfb) // } // mode: mknod_mode = 0x1000 (8 bytes) // dev: proc = 0x1 (4 bytes) // ] NONFAILING( memcpy((void*)0x200000000080, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251)); syscall(__NR_mknod, /*file=*/0x200000000080ul, /*mode=S_IFIFO*/ 0x1000ul, /*dev=*/0x701); // syz_mount_image$exfat arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 00} (length 0x102) // } // flags: mount_flags = 0x8a408 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING( memcpy((void*)0x2000000003c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 258)); NONFAILING(syz_mount_image( /*fs=*/0, /*dir=*/0x2000000003c0, /*flags=MS_SLAVE|MS_SILENT|MS_NOEXEC|MS_NOATIME|0x2000*/ 0x8a408, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000140)); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); loop(); return 0; }