// https://syzkaller.appspot.com/bug?id=d7e13e816d5ba729b5232cfa81816187e468d7eb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 2 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x28108c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 // 65 74 3d 63 70 38 37 34 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f 2c 75 73 72 71 75 6f 74 61 2c 69 6f 63 68 61 72 // 73 65 74 3d 63 70 38 36 31 2c 69 6f 63 68 61 72 73 65 74 3d 63 // 70 31 32 35 30 2c 69 6e 74 65 67 72 69 74 79 00 69 6f 63 68 61 // 72 73 65 74 3d 69 73 6f 38 38 35 39 2d 34 2c 64 69 73 63 61 72 // 64 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 39 69 43 // b9 5b 49 ac a5 6f af 1c c2 21 89 cc 31 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 67 72 65 65 6b 2c 71 75 6f 74 61 2c 72 65 73 // 69 7a 65 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 37 66 66 // 66 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 30 30 66 // 66 66 66 66 66 66 66 2c 75 6d 61 73 6b 3d 30 78 30 30 30 30 30 // 30 30 30 30 30 30 32 30 30 34 35 2c 66 73 63 6f 6e 74 65 78 74 // 3d 83 6e 63 6f 6e 66 69 6e 65 64 5f 75 2c 66 73 6d 61 67 69 63 // 3d 30 78 30 30 30 30 30 30 30 30 30 30 32 30 30 30 30 39 2c 32 // 42 16 87 3b 95 ed fe 8c ea b2 bb 0b 11 83 5a 5c f5 31 ac 62 73 // c2 9a 4d 4f 9d 05 6f 1b cb 8c d0 a9 69 ed 12 cf 99 80 2b 3e 32 // 01 51 8e cf c5 9a 4f d9 4d d5 34 9d c5 56 33 bd 2b de 11 28 ad // 07 18 07 ef 13 a9 f1 0c 0f bf 3a d8 61 c2 00 90 67 c5 c6 c8 4c // db a2 80 6f a7 4e dd ff 83 73 79 9d 0b 8c 1e 6f 7e 2b 20 52 35 // 16 1b 61 0a e5 c6 6d 1d 9c fc 2b c0 cb 61 7a e4 93 31 ad e7 15 // 95 c2 a5 43 81 39 93 3a ad a4 72 36 da fd ff ff ff 08 8a 55 24 // 45 f9 57 68 cc ec b0 c3 57 97 e8 32 be ce d2 07 7f a1 97 62 3c // d3 de 51 d6 9d 7a 4f 77 a8 0e b5 f7 83 f0 91 e5 ec 60 47 a0 f6 // 76 76 81 9f 4b f6 67 44 c1 cb 09 75 b9 6b af 73 00 00 00 00 00 // 00 00 01 00 4e 25 7b ba bf 33 e3 fa 8d 0c ca 2f bb 4d ab e1 c5 // 63 4b df 88 9b 76 4c e2 6a e4 e5 39 fd ff a2 ea 82 c3 4b 16 30 // 8e 26 ce 94 5d 10 1d 5f 2e 25 77 d8 e2 a2 1d 94 01 19 4a 97 a6 // c2 81 b6 03 da 7c 66 93 4f 0c 34 1d f8 ff 02 d9 1c d4 f2 d8 0e // a7 dd e6 97 d4 1b e8 51 18} (length 0x264) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6284 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6284) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000180, "./file0\000", 8); memcpy( (void*)0x2000000005c0, "\x64\x69\x73\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74" "\x3d\x63\x70\x38\x37\x34\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c" "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x38\x36\x31\x2c\x69" "\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x31\x32\x35\x30\x2c\x69" "\x6e\x74\x65\x67\x72\x69\x74\x79\x00\x69\x6f\x63\x68\x61\x72\x73\x65" "\x74\x3d\x69\x73\x6f\x38\x38\x35\x39\x2d\x34\x2c\x64\x69\x73\x63\x61" "\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x39\x69\x43\xb9\x5b\x49\xac\xa5\x6f\xaf\x1c\xc2\x21\x89\xcc" "\x31\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x67\x72" "\x65\x65\x6b\x2c\x71\x75\x6f\x74\x61\x2c\x72\x65\x73\x69\x7a\x65\x3d" "\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x37\x66\x66" "\x66\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30" "\x30\x30\x30\x66\x66\x66\x66\x66\x66\x66\x66\x2c\x75\x6d\x61\x73\x6b" "\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30" "\x34\x35\x2c\x66\x73\x63\x6f\x6e\x74\x65\x78\x74\x3d\x83\x6e\x63\x6f" "\x6e\x66\x69\x6e\x65\x64\x5f\x75\x2c\x66\x73\x6d\x61\x67\x69\x63\x3d" "\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30\x30\x30" "\x39\x2c\x32\x42\x16\x87\x3b\x95\xed\xfe\x8c\xea\xb2\xbb\x0b\x11\x83" "\x5a\x5c\xf5\x31\xac\x62\x73\xc2\x9a\x4d\x4f\x9d\x05\x6f\x1b\xcb\x8c" "\xd0\xa9\x69\xed\x12\xcf\x99\x80\x2b\x3e\x32\x01\x51\x8e\xcf\xc5\x9a" "\x4f\xd9\x4d\xd5\x34\x9d\xc5\x56\x33\xbd\x2b\xde\x11\x28\xad\x07\x18" "\x07\xef\x13\xa9\xf1\x0c\x0f\xbf\x3a\xd8\x61\xc2\x00\x90\x67\xc5\xc6" "\xc8\x4c\xdb\xa2\x80\x6f\xa7\x4e\xdd\xff\x83\x73\x79\x9d\x0b\x8c\x1e" "\x6f\x7e\x2b\x20\x52\x35\x16\x1b\x61\x0a\xe5\xc6\x6d\x1d\x9c\xfc\x2b" "\xc0\xcb\x61\x7a\xe4\x93\x31\xad\xe7\x15\x95\xc2\xa5\x43\x81\x39\x93" "\x3a\xad\xa4\x72\x36\xda\xfd\xff\xff\xff\x08\x8a\x55\x24\x45\xf9\x57" "\x68\xcc\xec\xb0\xc3\x57\x97\xe8\x32\xbe\xce\xd2\x07\x7f\xa1\x97\x62" "\x3c\xd3\xde\x51\xd6\x9d\x7a\x4f\x77\xa8\x0e\xb5\xf7\x83\xf0\x91\xe5" "\xec\x60\x47\xa0\xf6\x76\x76\x81\x9f\x4b\xf6\x67\x44\xc1\xcb\x09\x75" "\xb9\x6b\xaf\x73\x00\x00\x00\x00\x00\x00\x00\x01\x00\x4e\x25\x7b\xba" "\xbf\x33\xe3\xfa\x8d\x0c\xca\x2f\xbb\x4d\xab\xe1\xc5\x63\x4b\xdf\x88" "\x9b\x76\x4c\xe2\x6a\xe4\xe5\x39\xfd\xff\xa2\xea\x82\xc3\x4b\x16\x30" "\x8e\x26\xce\x94\x5d\x10\x1d\x5f\x2e\x25\x77\xd8\xe2\xa2\x1d\x94\x01" "\x19\x4a\x97\xa6\xc2\x81\xb6\x03\xda\x7c\x66\x93\x4f\x0c\x34\x1d\xf8" "\xff\x02\xd9\x1c\xd4\xf2\xd8\x0e\xa7\xdd\xe6\x97\xd4\x1b\xe8\x51\x18", 612); memcpy( (void*)0x20000000dc00, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x34\xb5" "\x7a\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f" "\x70\xe0\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16" "\x71\xe5\x0b\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a" "\xe0\xca\x8d\x13\x27\x22\xd9\x48\xa0\x9e\x18\x34\xde\xe7\x89\x67\x37" "\xbb\x5d\xa7\xb6\x77\xd6\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\x7a\x9f\xc9" "\x77\x5f\x3d\x2f\x4f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf1\xfd\xef\xfd\x60\xad\x15\x11\x37\x7e\x9e\x16\xac\x44" "\x7c\x26\x3a\x11\xed\x88\xa5\xb2\x5e\x8d\x88\xa5\xd5\x95\xbc\x7e\x37" "\x22\x9e\x8b\xbd\xe6\x78\x36\x22\x7a\x0b\x11\xe5\xed\xf7\xfe\x79\x3a" "\xe2\xd5\x88\xf8\xe8\x6c\xc4\xce\xee\xe6\x7a\xb9\xf8\xf2\x01\xfb\xf1" "\xdd\x3f\xfe\xfd\x77\x3f\x3c\xf3\xd6\xdf\xfe\xd0\xbb\xf8\xdf\x3f\xdd" "\xeb\xbc\x36\x69\xbd\xfb\xf7\x7f\xf5\x9f\x3f\x3f\x38\xdc\x36\x03\x00" "\x00\x40\xd3\x14\x45\x51\xb4\xd2\xd7\xfc\x73\xe9\xfb\x7d\xbb\xee\x4e" "\x01\x00\x33\x91\xdf\xff\x8b\x24\x2f\x3f\xf5\xf5\xaf\xff\xf9\xd6\x5f" "\xe6\xa9\x3f\xea\x46\xd7\x11\x97\xf6\x16\xce\x4b\x7f\xd4\x6a\xf5\xe9" "\xad\xab\x8a\xf1\x1e\x54\x8b\x88\xd8\xaa\xde\xa6\xfc\xcc\x60\x77\x3c" "\x00\x9c\x30\x5b\xf1\x71\xdd\x5d\xa0\x46\xf2\x6f\xb4\x6e\x44\x9c\xa9" "\xbb\x13\xc0\x5c\x6b\xd5\xdd\x01\x8e\xc5\xce\xee\xe6\x7a\x2b\xe5\xdb" "\xaa\xbe\x1f\xac\x0e\xda\xf3\xb1\x20\x43\xf9\x6f\xb5\x1e\x9d\xdf\x31" "\x69\x3a\xcd\xe8\x31\x26\xb3\x7a\x7c\x6d\x47\x27\x9e\x99\xd0\x9f\xa5" "\x19\xf5\x61\x9e\xe4\xfc\xdb\xa3\xf9\xdf\x18\xb4\xf7\xd3\x7a\xc7\x9d" "\xff\xac\x4c\xca\xbf\x3f\x38\xf5\xa9\x71\x72\xfe\x9d\xd1\xfc\x47\x1c" "\x69\xfe\x0b\x75\xe6\xdf\x1e\x9b\x7f\x53\xe5\xfc\xbb\x4f\x94\x7f\xe7" "\x04\x3f\xff\xe5\x0f\x00\x00\x00\x00\xc0\xe9\x97\xff\xfe\xbf\x52\xf3" "\xfe\xdf\x85\xc3\x6f\xca\x81\x7c\xd2\xfe\xdf\xd5\x19\xf5\x01\x00\x00" "\x00\x00\x00\x00\x00\x8e\xda\x61\xc7\xff\x7b\xc4\xf8\x7f\x00\x00\x00" "\x30\xb7\xca\xef\xea\xa5\xdf\x9c\xdd\x5f\x36\xe9\x5a\x6c\xe5\xf2\xeb" "\xad\x88\xa7\x46\xd6\x07\x1a\x26\x9d\x2c\xb3\x5c\x77\x3f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xa0\x49\xba\x83\x63\x78\xaf\xb7\x22\x7a" "\x11\xf1\xd4\xf2\x72\x51\x14\xe5\x4f\xd5\x68\xfd\xa4\x0e\x7b\xfb\x93" "\xae\xe9\xdb\x0f\x4d\x56\xf7\x8b\x3c\x00\x00\x0c\x7c\x74\x76\xe4\x5c" "\xfe\x56\xc4\x62\x44\x5c\x4f\xd7\xfa\xeb\x2d\x2f\x2f\x17\xc5\xe2\xd2" "\x72\xb1\x5c\x2c\x2d\xe4\xcf\xb3\xfd\x85\xc5\x62\xa9\xf2\xbd\x36\x4f" "\xcb\x65\x0b\xfd\x03\x7c\x20\xee\xf6\x8b\xf2\x97\x2d\x56\x6e\x57\x35" "\xed\xfb\xf2\xb4\xf6\xd1\xdf\x57\xde\x57\xbf\xe8\x1c\xa0\x63\x47\xa4" "\x97\xfe\x37\x27\x34\xd7\x14\x36\x00\x24\x83\x77\xa3\x1d\xef\x48\xa7" "\x4c\x51\x3c\x3d\xe9\xc3\x07\x0c\xf1\xfc\x3f\x85\x56\x62\xa5\xee\xc7" "\x15\xf3\xaf\xee\x87\x29\x00\x00\x00\x70\xfc\x8a\xa2\x28\x5a\xe9\x72" "\xde\xe7\xd2\x3e\xff\x76\xdd\x9d\x02\x00\x66\x22\xbf\xff\x8f\xee\x17" "\x38\x54\xdd\x9e\xd0\x1e\x71\x34\xbf\x5f\xad\x56\xab\xd5\x6a\xf5\xa7" "\xaa\xab\x8a\xf1\x1e\x54\x8b\x88\xd8\xaa\xde\xa6\xfc\xcc\x60\x38\x7e" "\x00\x38\x61\xb6\xe2\xe3\xba\xbb\x40\x8d\xe4\xdf\x68\xdd\x88\x78\xae" "\xee\x4e\x00\x73\xad\x55\x77\x07\x38\x16\x3b\xbb\x9b\xeb\xad\x94\x6f" "\xab\xfa\x7e\x90\xc6\x77\xcf\xc7\x82\x0c\xe5\xbf\xd5\xda\xbb\x5d\xbe" "\xfd\xb8\xe9\x34\xa3\xc7\x98\xcc\xea\xf1\xb5\x1d\x9d\x78\x66\x42\x7f" "\x9e\x9d\x51\x1f\xe6\x49\xce\xbf\x3d\x9a\xff\x8d\x41\x7b\x3f\xad\x77" "\xdc\xf9\xcf\xca\xa4\xfc\xfb\x7b\xa7\xcc\x35\x4f\xce\xbf\x33\x9a\xff" "\x88\xd3\x93\x7f\x7b\x6c\xfe\x4d\x95\xf3\xef\x3e\x51\xfe\x1d\xf9\x03" "\x00\x00\x00\x00\xc0\x1c\xcb\x7f\xff\x5f\xb1\xff\x37\x6f\x32\x00\x00" "\x00\x00\x00\x00\x00\x9c\x38\x3b\xbb\x9b\xeb\xf9\xbc\xd7\xbc\xff\xff" "\x73\x63\xd6\x73\xfe\xe7\xe9\x94\xf3\x6f\x3d\x69\xfe\x4b\x69\x5e\xfe" "\x27\x5a\xce\xbf\x3d\x92\xff\x97\x47\xd6\xeb\x54\xe6\x1f\xbe\xb9\xff" "\xfc\xff\xf7\xee\xe6\xfa\xef\xef\xfd\xeb\xb3\x79\x7a\xd0\xfc\x17\xf2" "\x4c\x2b\x3d\xb2\x5a\xe9\x11\xd1\x4a\xf7\xd4\xea\xa6\xe9\x61\xb6\xee" "\x71\xdb\xbd\x4e\xbf\xbc\xa7\x5e\xab\xdd\xe9\xa6\x63\x7e\x8a\xde\x3b" "\x71\x2b\x6e\xc7\x46\x5c\x1a\x5a\xb7\x9d\xfe\x3f\xf6\xdb\xd7\x86\xda" "\xcb\x9e\xf6\x86\xda\x2f\x0f\xb5\x77\x1f\x6b\xbf\x32\xd4\xde\x4b\xd7" "\x1d\x28\x96\x72\xfb\x85\x58\x8f\x9f\xc4\xed\x78\x7b\xaf\xbd\x6c\x5b" "\x98\xb2\xfd\x8b\x53\xda\x8b\x29\xed\x39\xff\x8e\xd7\xff\x46\xca\xf9" "\x77\x2b\x3f\x65\xfe\xcb\xa9\xbd\x35\x32\x2d\x3d\xfc\xb0\xfd\xd8\xf3" "\xbe\x3a\x1d\x77\x3f\x6f\xdc\xfa\xfc\x2f\x2f\x1d\xff\xe6\x4c\x31\xe9" "\xca\xc7\x83\xed\x3b\x3f\xeb\xee\x44\x0c\x5e\x71\xce\xf4\xe3\x67\x77" "\x37\xee\x5c\xb8\x7f\xf3\xde\xbd\x3b\x6b\x91\x26\x43\x4b\x2f\x47\x9a" "\x1c\xb1\x9c\x7f\x6f\xef\x67\x61\xff\xf5\xff\x85\x41\x7b\x7e\xdd\xaf" "\x3e\x5f\x1f\x7e\xd8\x7f\xe2\xfc\xe7\xc5\x76\x74\x1f\x3d\xb6\xab\xca" "\xfc\x5f\xa8\xcc\x97\xdb\xfb\xd2\x8c\xfb\x56\x87\x9c\x7f\x3f\xfd\xe4" "\xfc\xdf\x4e\xed\xe3\x9f\xff\x27\x39\xff\xce\xc4\xfc\x5f\xae\xa1\x3f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x49\x8a\xa2\xd8" "\x3b\x45\xf4\x8d\x88\xb8\x9a\xce\xff\xa9\xeb\xdc\x4c\x00\x60\xb6\xf2" "\xfb\x7f\x91\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x4f\x5f\x5d\x55\x8c\xf7" "\x7a\xb5\x88\x88\xbf\x56\x6f\x53\x7e\x66\xf8\xc5\xb8\x5f\x06\x00\xcc" "\xb3\xff\x45\xc4\x3f\xea\xee\x04\xb5\x91\x7f\x83\xe5\xeb\xfd\x95\xd3" "\x17\xeb\xee\x0c\x30\x53\x77\xdf\xff\xe0\x47\x37\x6f\xdf\xde\xb8\x73" "\xb7\xee\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x9f\x56\x1e\xff\x73\xb5" "\x32\xfe\xf3\x8b\x11\xb1\x32\xb2\xde\xd0\xf8\xaf\x6f\xc6\xea\x61\xc7" "\xff\xec\xe6\x99\x47\x03\x8c\x1e\xf1\x40\xdf\x13\x6c\xb7\xfb\x9d\x76" "\x65\xb8\xf1\xe7\x63\x6f\x7c\xee\x0b\x93\xc6\xff\x3e\x1f\x8f\x8f\xff" "\x9d\xc7\xc4\xed\x54\xb7\x63\x82\xde\x94\xf6\xfe\x94\xf6\x85\x29\xed" "\x8b\x63\x97\xee\xa7\x35\xf6\x44\x8f\x8a\x9c\xff\xf3\x95\xf1\xce\xcb" "\xfc\xcf\x8d\x0c\xbf\xde\x84\xf1\x5f\x47\xc7\xbc\x6f\x82\x9c\xff\xf9" "\xca\xe3\xb9\xcc\xff\x4b\x23\xeb\x55\xf3\x2f\x7e\x3b\x77\xf9\x6f\x1d" "\x74\xc5\xed\x68\x0f\xe5\x7f\xf1\xde\x7b\x3f\xbd\x78\xf7\xfd\x0f\x5e" "\xb9\xf5\xde\xcd\x77\x37\xde\xdd\xf8\xf1\x95\xb5\xb5\x4b\x57\xae\x5e" "\xbd\x76\xed\xda\xc5\x77\x6e\xdd\xde\xb8\x34\xf8\xf7\x78\x7a\x3d\x07" "\x72\xfe\x79\xec\x6b\xc7\x81\x36\x4b\xce\x3f\x67\x2e\xff\x66\xc9\xf9" "\x7f\x21\xd5\xf2\x6f\x96\x9c\xff\x17\x53\x2d\xff\x66\xc9\xf9\xe7\xcf" "\x7b\xf2\x6f\x96\x9c\x7f\xfe\xee\x23\xff\x66\xc9\xf9\xbf\x94\x6a\xf9" "\x37\x4b\xce\xff\x2b\xa9\x96\x7f\xb3\xec\xec\x6e\x2e\x94\xf9\xbf\x9c" "\x6a\xf9\x37\x4b\x7e\xfe\x7f\x35\xd5\xf2\x6f\x96\x9c\xff\x2b\xa9\x96" "\x7f\xb3\xe4\xfc\x2f\xa4\x5a\xfe\xcd\x92\xf3\xbf\x98\xea\x03\xe4\xef" "\xf2\xf0\xa7\x48\xce\x3f\xef\xe1\xf2\xfc\x6f\x96\x9c\xff\x5a\xaa\xe5" "\xdf\x2c\x39\xff\xcb\xa9\x96\x7f\xb3\xe4\xfc\xaf\xa4\x5a\xfe\xcd\x92" "\xf3\x7f\x35\xd5\xf2\x6f\x96\x9c\xff\xd7\x52\x2d\xff\x66\xc9\xf9\x5f" "\x4d\xb5\xfc\x9b\x25\xe7\xff\xf5\x54\xcb\xbf\x59\x72\xfe\xd7\x52\x2d" "\xff\x66\xc9\xf9\x7f\x23\xd5\xf2\x6f\x96\x9c\xff\x37\x53\x2d\xff\x66" "\xc9\xf9\xbf\x96\x6a\xf9\x37\x4b\xce\xff\x5b\xa9\x96\x7f\xb3\xe4\xfc" "\xbf\x9d\x6a\xf9\x37\x4b\xce\xff\x3b\xa9\x96\x7f\xb3\xe4\xfc\x5f\x4f" "\xb5\xfc\x9b\x65\xff\xfa\xff\x66\xcc\x98\x31\x93\x67\xea\x7e\x65\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\xcd\xe2\x70\xe2\xba\xb7" "\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcf\x0e\x1c\x08" "\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8" "\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xb0\x77\xaf\x31\x72\x9d\xe5\x1d\xc0\xcf\xec\xc5\xde\x75\x08" "\x31\x10\x82\x93\x1a\xd8\x24\x26\x84\x64\xc9\xae\xed\xc4\x17\xda\x34" "\x26\x5c\x1b\xa0\x14\x48\x28\xf4\x82\xe3\x7a\xd7\x66\xc1\x37\xbc\x76" "\x09\x14\xc9\xa6\x81\x12\x09\xa3\xa2\x8a\xaa\xe9\x87\x52\x40\xa8\x8d" "\x54\x55\x58\x15\x1f\x68\x45\x69\x3e\x54\xbd\x7c\x2a\xad\x54\xfa\xa5" "\xa2\xaa\x84\xd4\xa8\x0a\x28\xa0\x22\xb5\x15\xcd\x56\x33\xe7\x7d\xdf" "\x9d\x99\x9d\x9d\x99\xf5\x8e\xd7\xb3\xe7\xfd\xfd\xa4\xe4\xd9\x9d\x39" "\x67\xce\x3b\x67\xde\x73\x76\x9e\x5d\xff\xe7\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xb3\x5b\xdf" "\x30\xff\x99\x5a\x51\x14\xf5\xff\x1a\xff\xdb\x5e\x14\x2f\xa8\x7f\x3d" "\x39\xb5\xbd\x71\xdb\xeb\xae\xf5\x08\x01\x00\x00\x80\xf5\xfa\xbf\xc6" "\xff\x9f\xbb\x21\xdd\x70\xa8\x8f\x95\x9a\x96\xf9\xdb\x57\xfc\xc3\xd7" "\x97\x96\x96\x96\x8a\xf7\x8d\xfe\xee\xf8\x17\x96\x96\xd2\x1d\x53\x45" "\x31\xbe\xb5\x28\x1a\xf7\x45\x97\xff\xfd\xfd\xb5\xe6\x65\x82\xc7\x8b" "\x89\xda\x48\xd3\xf7\x23\x3d\x36\x3f\xda\xe3\xfe\xb1\x1e\xf7\x8f\xf7" "\xb8\x7f\x4b\x8f\xfb\xb7\xf6\xb8\x7f\xa2\xc7\xfd\x2b\x76\xc0\x0a\x93" "\xe5\xef\x63\x1a\x0f\xb6\xab\xf1\xe5\xf6\x72\x97\x16\x37\x16\xe3\x8d" "\xfb\x76\x75\x58\xeb\xf1\xda\xd6\x91\x91\xf8\xbb\x9c\x86\x5a\x63\x9d" "\xa5\xf1\x63\xc5\x42\x71\xa2\x98\x2f\x66\x5b\x96\x2f\x97\xad\x35\x96" "\xff\xe6\xad\xf5\x6d\xbd\xb5\x88\xdb\x1a\x69\xda\xd6\xce\xfa\x0c\xf9" "\xe1\x27\x8e\xc6\x31\xd4\xc2\x3e\xde\xd5\xb2\xad\xe5\xc7\x8c\xbe\xff" "\xfa\x62\xea\x47\x3f\xfc\xc4\xd1\x3f\x3a\xf7\xec\xcd\x9d\x6a\xcf\xdd" "\xd0\xf2\x78\xe5\x38\xef\xbc\xad\x3e\xce\x4f\x85\x5b\xca\xb1\xd6\x8a" "\xad\x69\x9f\xc4\x71\x8e\x34\x8d\x73\x67\x87\xd7\x64\xb4\x65\x9c\xb5" "\xc6\x7a\xf5\xaf\xdb\xc7\xf9\x5c\x9f\xe3\x1c\x5d\x1e\xe6\x86\x6a\x7f" "\xcd\x27\x8a\x91\xc6\xd7\xdf\x6e\xec\xa7\xb1\xe6\x5f\xeb\xa5\xfd\xb4" "\x33\xdc\xf6\xdf\xb7\x17\x45\x71\x71\x79\xd8\xed\xcb\xac\xd8\x56\x31" "\x52\x6c\x6b\xb9\x65\x64\xf9\xf5\x99\x28\x67\x64\xfd\x31\xea\x53\xe9" "\xc5\xc5\xd8\x9a\xe6\xe9\xad\x7d\xcc\xd3\x7a\x9d\xdb\xd5\x3a\x4f\xdb" "\x8f\x89\xf8\xfa\xdf\x1a\xd6\x1b\x5b\x65\x0c\xcd\x2f\xd3\xf7\x3f\xb9" "\x65\xc5\xeb\xbe\xd6\x79\x1a\xd5\x9f\xf5\x6a\xc7\x4a\xfb\x1c\x1c\xf4" "\xb1\x32\x2c\x73\x30\xce\x8b\x6f\x37\x9e\xf4\x13\x1d\xe7\xe0\xae\xf0" "\xfc\x3f\x71\xc7\xea\x73\xb0\xe3\xdc\xe9\x30\x07\xd3\xf3\x6e\x9a\x83" "\xb7\xf5\x9a\x83\x23\x5b\x46\x1b\x63\x4e\x2f\x42\xad\xb1\xce\xf2\x1c" "\xdc\xdd\xb2\xfc\x68\x63\x4b\xb5\x46\x7d\xe6\x8e\xee\x73\x70\xe6\xdc" "\xc9\x33\x33\x8b\x1f\xfb\xf8\x6b\x17\x4e\x1e\x39\x3e\x7f\x7c\xfe\xd4" "\xde\xdd\xbb\x67\xf7\xee\xdb\x77\xe0\xc0\x81\x99\x63\x0b\x27\xe6\x67" "\xcb\xff\x5f\xe1\xde\x1e\x7e\xdb\x8a\x91\x74\x0c\xdc\x16\xf6\x5d\x3c" "\x06\x5e\xdd\xb6\x6c\xf3\x54\x5d\xfa\xf2\xe0\x8e\xc3\x89\x2e\xc7\xe1" "\xf6\xb6\x65\x07\x7d\x1c\x8e\xb5\x3f\xb9\xda\xc6\x1c\x90\x2b\xe7\x74" "\x79\x6c\x3c\x5c\xdf\xe9\x13\x97\x46\x8a\x55\x8e\xb1\xc6\xeb\x73\xd7" "\xfa\x8f\xc3\xf4\xbc\x9b\x8e\xc3\xb1\xa6\xe3\xb0\xe3\xcf\x94\x0e\xc7" "\xe1\x58\x1f\xc7\x61\x7d\x99\x33\x77\xf5\xf7\x9e\x65\xac\xe9\xbf\x4e" "\x63\xb8\x5a\x3f\x0b\xb6\x37\xcd\xc1\xf6\xf7\x23\xed\x73\x70\xd0\xef" "\x47\x86\x65\x0e\x4e\x84\x79\xf1\xaf\x77\xad\xfe\xb3\x60\x67\x18\xef" "\x13\xd3\x6b\x7d\x3f\x32\xba\x62\x0e\xa6\xa7\x1b\xce\x3d\xf5\x5b\xd2" "\xfb\xfd\x89\x03\x8d\xd2\x69\x5e\xde\x52\xbf\xe3\xba\x2d\xc5\xf9\xc5" "\xf9\xb3\xf7\x3c\x76\xe4\xdc\xb9\xb3\xbb\x8b\x50\x36\xc4\x4b\x9a\xe6" "\x4a\xfb\x7c\xdd\xd6\xf4\x9c\x8a\x15\xf3\x75\x64\xcd\xf3\xf5\xd0\xc2" "\x2b\x9e\xb8\xa5\xc3\xed\xdb\xc3\xbe\x9a\x78\x6d\xfd\x7f\x13\xab\xbe" "\x56\xf5\x65\xee\xbd\xa7\xfb\x6b\xd5\xf8\xe9\xd6\x79\x7f\xb6\xdc\xba" "\xa7\x08\x65\xc0\x36\x7a\x7f\x76\xfa\x69\x5e\xdf\x9f\xa9\x97\xec\xb2" "\x3f\xeb\xcb\x7c\x6a\x66\xfd\xef\xc5\x53\x5f\xda\x74\xfe\x1d\x5f\xe5" "\xfc\x1b\xfb\xfe\xe7\xcb\xed\xa5\x87\x7a\x7c\x74\x7c\xac\x3c\x7e\x47" "\xd3\xde\x19\x6f\x39\x1f\xb7\xbe\x54\x63\x8d\x73\x57\xad\xb1\xed\xe7" "\x66\xfa\x3b\x1f\x8f\x87\xff\x36\xfa\x7c\x7c\x63\x97\xf3\xf1\x8e\xb6" "\x65\x07\x7d\x3e\x1e\x6f\x7f\x72\xf1\x7c\x5c\xeb\xf5\xdb\x8e\xf5\x69" "\x7f\x3d\x27\xc2\x3c\x39\x31\xdb\xfd\x7c\x5c\x5f\x66\xc7\x9e\xb5\xce" "\xc9\xb1\xae\xe7\xe3\xdb\x43\xad\x85\xfd\xff\x9a\xd0\x29\xa4\xbe\xa8" "\x69\xee\xac\x36\x6f\xd3\xb6\xc6\xc6\xc6\xc3\xf3\x1a\x8b\x5b\x68\x9d" "\xa7\x7b\x5b\x96\x1f\x0f\xbd\x59\x7d\x5b\x4f\xed\xb9\xb2\x79\x7a\xe7" "\xed\xe5\x63\x8d\xa6\x67\xb7\x6c\xa3\xe6\xe9\x54\xdb\xb2\x83\x9e\xa7" "\xe9\x7c\xb5\xda\x3c\xad\xf5\xfa\xed\xdb\x95\x69\x7f\x3d\x27\xc2\xbc" "\xb8\x71\x6f\xf7\x79\x5a\x5f\xe6\xe9\x7b\xd7\x7f\xee\x9c\x8c\x5f\x36" "\x9d\x3b\xb7\xf4\x9a\x83\xe3\xa3\x5b\xea\x63\x1e\x4f\x93\xb0\x3c\xdf" "\x2f\x4d\xc6\x39\x78\x4f\x71\xb4\x38\x5d\x9c\x28\xe6\x1a\xf7\x6e\x69" "\xcc\xa7\x5a\x63\x5b\xd3\xf7\x4d\xf4\x35\x07\xb7\x84\xff\x36\xfa\x5c" "\xb9\xa3\xcb\x1c\xbc\xb3\x6d\xd9\x41\xcf\xc1\xf4\x73\x6c\xb5\xb9\x57" "\x1b\x5b\x3e\x91\x0c\x50\xfb\xeb\x39\x11\xe6\xc5\x93\xf7\x75\x9f\x83" "\xf5\x65\xde\xb8\x7f\xb0\xef\x5d\xef\x0c\xb7\xa4\x65\x9a\xde\xbb\xb6" "\xff\x7e\x6d\xb5\xdf\x79\xdd\x32\xb6\xfc\x78\xc5\x55\xfe\x9d\x57\x7d" "\x9c\x7f\xbd\xbf\xfb\xef\x66\xeb\xcb\x9c\x38\xb0\xd6\x3e\xb3\xfb\x7e" "\xba\x3b\xdc\x72\x5d\x87\xfd\xd4\x7e\xfc\xae\x76\x4c\xcd\x15\x1b\xb3" "\x9f\x76\x84\x71\x3e\x7b\x60\xf5\xfd\x54\x1f\x4f\x7d\x99\x2f\x1c\xec" "\x73\x3e\x1d\x2a\x8a\xe2\xc2\x47\x1e\x6c\xfc\xbe\x37\xfc\x7d\xe5\xcf" "\xce\x7f\xe7\xeb\x2d\x7f\x77\xe9\xf4\x37\x9d\x0b\x1f\x79\xf0\x07\xd7" "\x1f\xfb\x9b\xb5\x8c\x1f\x80\xcd\xef\xf9\xb2\x6c\x2b\x7f\xd6\x35\xfd" "\x65\xaa\x9f\xbf\xff\x03\x00\x00\x00\x9b\x42\xec\xfb\x47\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x19\xb1\xef\x8f\xff\x2a\x3c\xd1\xff\x03\x00\x00" "\x40\x65\xc4\xbe\x7f\x2c\xd4\x24\x93\xfe\x7f\xc7\x1b\x9f\x5d\x78\xfe" "\x42\x91\x92\xf9\x4b\x41\xbc\x3f\xed\x86\x87\xca\xe5\x62\xc6\x75\x36" "\x7c\x3f\xb5\xb4\xac\x7e\xfb\x83\x5f\x9d\xff\xf1\x5f\x5c\xe8\x6f\xdb" "\x23\x45\x51\xfc\xe4\xa1\xdf\xe8\xb8\xfc\x8e\x87\xe2\xb8\x4a\x53\x61" "\x9c\x97\xdf\xd4\x7a\xfb\xca\x15\x2f\xf4\xb5\xfd\x47\x1f\x59\x5e\xae" "\x39\xbf\xfe\xa5\xf0\xf8\xf1\xf9\xf4\x3b\x0d\x3a\x45\x70\x67\x8b\xa2" "\xf8\xe6\x0d\x9f\x6b\x6c\x67\xea\xfd\x97\x1a\xf5\xe9\x87\x1e\x6d\xd4" "\x77\x5f\x7c\xe2\xf1\xfa\x32\xcf\x1d\x2c\xbf\x8f\xeb\x3f\xf3\x92\x72" "\xf9\x3f\x08\xe1\xdf\x43\xc7\x8e\xb4\xac\xff\x4c\xd8\x0f\xdf\x0b\x75" "\xf6\x6d\x9d\xf7\x47\x5c\xef\x6b\x97\x5e\xb3\x73\xff\x7b\x97\xb7\x17" "\xd7\xab\xdd\xf6\xc2\xc6\xd3\x7e\xf2\x03\xe5\xe3\xc6\xcf\xc9\xf9\xfc" "\xe3\xe5\xf2\x71\x3f\xaf\x36\xfe\xbf\xfc\xec\x53\x5f\xab\x2f\xff\xd8" "\xab\x3a\x8f\xff\xc2\x48\xe7\xf1\x3f\x15\x1e\xf7\xab\xa1\xfe\xcf\xcb" "\xcb\xe5\x9b\x5f\x83\xfa\xf7\x71\xbd\x4f\x87\xf1\xc7\xed\xc5\xf5\xee" "\xf9\xca\xb7\x3a\x8e\xff\xf2\x67\xca\xe5\xcf\xbc\xb9\x5c\xee\xd1\x50" "\xe3\xf6\xef\x0c\xdf\xef\x7a\xf3\xb3\x0b\xcd\xfb\xeb\xb1\xda\x91\x96" "\xe7\x55\xbc\xa5\x5c\x2e\x6e\x7f\xf6\x3b\xbf\xdd\xb8\x3f\x3e\x5e\x7c" "\xfc\xf6\xf1\x4f\x1c\xbe\xd4\xb2\x3f\xda\xe7\xc7\xd3\xff\x54\x3e\xce" "\x4c\xdb\xf2\xf1\xf6\xb8\x9d\xe8\xcf\xdb\xb6\x5f\x7f\x9c\xe6\xf9\x19" "\xb7\xff\xd4\x6f\x3d\xda\xb2\x9f\x7b\x6d\xff\xf2\xbb\x9f\x79\x79\xfd" "\x71\xdb\xb7\x7f\x77\xdb\x72\xa3\x6d\xeb\xb7\x7f\x62\xd3\x17\x3f\xfd" "\xb9\xe5\xed\x7d\x71\xf9\xf6\x38\x9e\x43\x7f\x7a\xa6\xe5\xf9\x1c\x7a" "\x57\x38\x8e\xc3\xf6\x9f\xfc\x40\x98\x8f\xe1\xfe\xff\xbd\xfc\xb9\x96" "\xed\x46\x8f\xbe\xab\xf5\xfc\x13\x97\xff\xd2\xf6\x0b\x2d\xcf\x27\x7a" "\xeb\x8f\xca\xed\x5f\x7e\xe0\x78\xa3\xfe\xc7\xd4\x8f\x7f\xff\xba\x17" "\x5c\xff\xc2\x8b\xaf\xac\xef\xbb\xa2\xf8\xf6\x7b\xca\xc7\xeb\xb5\xfd" "\xe3\x7f\x78\xba\x65\xfc\x5f\xbe\xe9\xae\xc6\xeb\x11\xef\x8f\x19\xfd" "\xf6\xed\xaf\x26\x6e\xff\xec\x47\xa7\x4f\x9d\x5e\x3c\xbf\x30\xd7\xb4" "\x57\x1b\x9f\x9d\xf3\xf6\x72\x3c\x5b\x27\x26\xb7\xd5\xc7\x7b\x43\x38" "\xb7\xb6\x7f\x7f\xf8\xf4\xb9\x0f\xce\x9f\x9d\x9a\x9d\x9a\x2d\x8a\xa9" "\xea\x7e\x84\xde\x15\xfb\x4a\xa8\x3f\x28\xcb\xc5\xb5\xae\x7f\xd7\x23" "\xe1\xf5\xbc\xe5\xf7\xbe\xb9\xed\x8e\x7f\xfc\x6c\xbc\xfd\x5f\x1e\x2e" "\x6f\xbf\xf4\xb6\xf2\xe7\xd6\xab\xc3\x72\x9f\x0f\xb7\x6f\x2f\x5f\xbf" "\xa5\xda\x3a\xb7\xff\xe4\xad\x37\x35\x8e\xef\xda\xd3\xe5\xf7\x2d\x39" "\xf6\x01\xd8\xb9\xeb\x3f\x0f\xf4\xb5\x60\x78\xfe\xed\xef\x0b\xe2\x7c" "\x3f\xf3\xd2\x0f\x36\xf6\x43\xfd\xbe\xc6\xcf\x8d\x78\x5c\xaf\x73\xfc" "\xdf\x9d\x2b\x1f\xe7\x1b\x61\xbf\x2e\x85\x4f\x66\xbe\xed\xa6\xe5\xed" "\x35\x2f\x1f\x3f\x1b\xe1\xd2\x7b\xca\xe3\x7d\xdd\xfb\x2f\x9c\xe6\xe2" "\xeb\xfa\xc7\xe1\xf5\x7e\xc7\xf7\xca\xc7\x8f\xe3\x8a\xcf\xf7\xbb\xe1" "\x7d\xcc\xb7\x76\xb4\x9e\xef\xe2\xfc\xf8\xc6\x85\x91\xf6\xc7\x6f\x7c" "\x8a\xc7\xc5\x70\x3e\x29\x2e\x96\xf7\xc7\xa5\xe2\xfe\xbe\xf4\xdc\x4d" "\x1d\x87\x17\x3f\x87\xa4\xb8\x78\x73\xe3\xfb\xdf\x49\x8f\x73\xf3\x9a" "\x9e\xe6\x6a\x16\x3f\xb6\x38\x73\x62\xe1\xd4\xf9\xc7\x66\xce\xcd\x2f" "\x9e\x9b\x59\xfc\xd8\xc7\x0f\x9f\x3c\x7d\xfe\xd4\xb9\xc3\x8d\xcf\xf2" "\x3c\xfc\xa1\x5e\xeb\x2f\x9f\x9f\xb6\x35\xce\x4f\x73\xf3\xfb\xee\x2d" "\x66\x27\x8b\xa2\x38\x5d\xcc\x6e\xc0\x09\xeb\xea\x8c\xbf\xfe\x55\x7f" "\xe3\x3f\xf3\xc8\xd1\xb9\xfd\xb3\x77\xcc\xcd\x1f\x3b\x72\xfe\xd8\xb9" "\x47\xce\xcc\x9f\x3d\x7e\x74\x71\xf1\xe8\xfc\xdc\xe2\x1d\x47\x8e\x1d" "\x9b\xff\x68\xaf\xf5\x17\xe6\xee\xdf\xbd\xe7\xe0\xde\xfd\x7b\xa6\x8f" "\x2f\xcc\xdd\x7f\xe0\xe0\xc1\xbd\x07\xa7\x17\x4e\x9d\xae\x0f\xa3\x1c" "\x54\x0f\xfb\x66\x3f\x3c\x7d\xea\xec\xe1\xc6\x2a\x8b\xf7\xdf\x7b\x70" "\xf7\x7d\xf7\xdd\x3b\x3b\x7d\xf2\xf4\xdc\xfc\xfd\xfb\x67\x67\xa7\xcf" "\xf7\x5a\xbf\xf1\xb3\x69\xba\xbe\xf6\xaf\x4f\x9f\x9d\x3f\x71\xe4\xdc" "\xc2\xc9\xf9\xe9\xc5\x85\x8f\xcf\xdf\xbf\xfb\xe0\xbe\x7d\x7b\x7a\x7e" "\x1a\xe0\xc9\x33\xc7\x16\xa7\x66\xce\x9e\x3f\x35\x73\x7e\x71\xfe\xec" "\x4c\xf9\x5c\xa6\xce\x35\x6e\xae\xff\xec\xeb\xb5\x3e\xd5\xb4\xf8\x6f" "\xe5\xfb\xd9\x76\xb5\xf2\x83\xf8\x8a\x77\xde\xbd\x2f\x7d\x3e\x6b\xdd" "\x57\x3f\xb9\xea\x43\x95\x8b\xb4\x7d\x80\xe8\xb3\xe1\xb3\x68\xfe\xfe" "\x45\x67\x0e\xf4\xf3\x7d\xec\xfb\xc7\x43\x4d\x32\xe9\xff\x01\x00\x00" "\x20\x07\xb1\xef\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\xd6\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x27\x42\x4d\x32\xe9" "\xff\xe5\xff\xe5\xff\xfb\xcb\xff\x97\xf7\xcb\xff\xe7\x95\xff\x3f\xf3" "\x91\x32\x57\xda\x57\xfe\xbf\xc9\xb0\xe5\xff\x63\x7e\x5e\xfe\x3f\x0f" "\xd7\x38\xff\xbf\xee\xed\xcb\xff\xcb\xff\x57\x2f\xff\xdf\x7f\x7e\x7e" "\xb3\x8f\x5f\xfe\x5f\xfe\x9f\x95\x86\x2d\xff\x1f\xfb\xfe\xc9\xa2\xc8" "\xb2\xff\x07\x00\x00\x80\x1c\xc4\xbe\x7f\x5b\xa8\x89\xfe\x1f\x00\x00" "\x00\x2a\x23\xf6\xfd\xd7\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf" "\xff\x82\x50\x93\x4c\xfa\x7f\xf9\xff\xbe\xf2\xff\x7b\x7a\x05\xae\xaa" "\x9f\xff\x77\xfd\x7f\xf9\xff\x62\x73\xe6\xff\xe3\x8b\x23\xff\x9f\x8d" "\x35\xe7\xef\xdf\xfb\x70\xcb\xb7\xf2\xff\x81\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\xbf\xfc\x3f\xeb\x36\xbe\xea\x3d\xd7\x2a\xff\x1f\xfb\xfe\xeb\x43" "\x4d\x32\xe9\xff\x01\x00\x00\x20\x07\xb1\xef\x7f\x61\xa8\x89\xfe\x1f" "\x00\x00\x00\x2a\x23\xf6\xfd\x37\x84\x9a\xe8\xff\x01\x00\x00\xa0\x32" "\x62\xdf\xbf\x3d\xd4\x24\x93\xfe\x5f\xfe\xbf\x29\x7b\x1e\x43\xe4\xae" "\xff\x2f\xff\x2f\xff\x5f\x9d\xfc\xff\x7a\xaf\xff\xdf\x34\x18\xf9\xff" "\xcd\xc1\xf5\xff\xbb\x93\xff\xef\xe1\x8a\xf3\xff\x13\xf2\xff\x9b\x31" "\xff\x3f\x3e\xd8\xf1\x0f\x77\xfe\xbf\xe7\xf0\xe5\xff\xb9\x2a\x86\xed" "\xfa\xff\xb1\xef\x7f\x51\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6" "\xfd\x2f\x0e\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x25\xa1\x26" "\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xdf\x18\x6a\x92\x49\xff\x2f\xff" "\xdf\xd7\xf5\xff\x7b\x92\xff\x6f\x1d\xbf\xfc\x7f\xe7\xf9\x21\xff\xbf" "\x09\xf3\xff\x5d\xaf\xff\x5f\x7e\x25\xff\x3f\x5c\xe4\xff\xbb\x93\xff" "\xef\xc1\xf5\xff\xf3\xca\xff\x0f\x78\xfc\xc3\x9d\xff\x1f\xf4\xf5\xff" "\xc7\xdf\xb4\xfc\x75\xf9\xf3\x50\xfe\x9f\x4e\x86\x2d\xff\x1f\xfb\xfe" "\x97\x86\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\x7f\x53\xa8\x89" "\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x2f\x0b\x35\xd1\xff\x03\x00\x00" "\x40\x65\xc4\xbe\x7f\x47\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\xbf\xfc\x7f\xe7\xed\xf7\xce\xff\x97\xe4\xff\x87\x8b\xfc\x7f\x77" "\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xf7\x97\xff\xef\xf0\xe6\x57\xfe" "\x9f\x4e\x86\x2d\xff\x1f\xfb\xfe\x9b\x43\x4d\x32\xe9\xff\x01\x00\x00" "\x20\x07\xb1\xef\xbf\x25\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe" "\x9f\x0a\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x7f\x67\xa8\x49\x26" "\xfd\xbf\xfc\xbf\xfc\xbf\xfc\x7f\x5e\xf9\xff\xbb\xb7\xf4\xce\xff\x97" "\x2e\xca\xff\xcb\xff\x6f\x4a\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff" "\x2f\xff\xdf\xe7\xf5\xff\x57\x5a\x4b\xfe\x7f\x6b\xaf\x07\xa3\x32\x86" "\x2d\xff\x1f\xfb\xfe\x97\x87\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62" "\xdf\xff\x8a\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f\x19\x6a" "\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x54\xa8\x49\x26\xfd\xbf\xfc" "\x7f\xb5\xf2\xff\x7f\xf2\x57\x4f\xbe\xb2\x90\xff\x97\xff\xef\xb1\xfd" "\x41\x5c\xff\xbf\x16\x6e\x1d\xa2\xfc\x7f\x9c\x06\x43\x9f\xff\x7f\x40" "\xfe\xff\xaa\x92\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\xff\x0d" "\xc9\xff\x93\x8f\x61\xcb\xff\xc7\xbe\xff\xd6\x50\x93\x4c\xfa\x7f\x00" "\x00\x00\xc8\x41\xec\xfb\x6f\x0b\x35\xd1\xff\x03\x00\x00\x40\x65\xc4" "\xbe\xff\xf6\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x77\x85\x9a" "\x64\xd2\xff\xcb\xff\x57\x2b\xff\x1f\xc9\xff\xcb\xff\x77\xdb\xfe\x20" "\xf2\xff\x45\x1f\xd7\xff\x1f\x0b\xaf\x67\x9a\x97\xae\xff\xef\xfa\xff" "\x1b\x40\xfe\xbf\x83\xa6\x83\x54\xfe\xbf\x07\xf9\x7f\xf9\xff\xec\xf3" "\xff\xf1\xdd\xaf\xfc\x3f\x83\x31\x6c\xf9\xff\xd8\xf7\xbf\x2a\xd4\x24" "\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x3b\x8a\xb6\x3f\xe2\xea\xff" "\x01\x00\x00\xa0\x32\x1a\x7d\x7f\x31\x51\xbc\x3a\xd4\x44\xff\x0f\x00" "\x00\x00\x95\x11\xfb\xfe\x3b\x43\x4d\x32\xe9\xff\xe5\xff\xaf\x3c\xff" "\x3f\xde\xf4\xb5\xfc\x7f\xeb\xf8\xe5\xff\x5b\xe5\x9a\xff\xdf\xe0\xeb" "\xff\x27\xf2\xff\x79\x93\xff\xef\x6e\xad\xf9\xff\x2d\xf2\xff\xf2\xff" "\xf2\xff\x99\xe5\xff\xd7\x77\xfd\xff\xc9\xf0\xb5\xfc\x3f\xd1\xb0\xe5" "\xff\x63\xdf\xff\x9a\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec\xfb" "\xef\x0a\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\x7f\xbf\x59\xfe\xbb\x57" "\xfd\x3f\x00\x00\x00\x54\x51\xec\xfb\xa7\x43\x4d\x32\xe9\xff\xe5\xff" "\x5d\xff\x3f\xa7\xfc\x7f\x4d\xfe\x7f\x40\xf9\xff\xf8\x8c\xe5\xff\x0b" "\xf9\xff\xa1\x23\xff\xdf\x9d\xeb\xff\xf7\x20\xff\x2f\xff\x2f\xff\xbf" "\xae\xfc\xbf\xeb\xff\xd3\x6e\xd8\xf2\xff\xb1\xef\x7f\x6d\xa8\x49\x26" "\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xf7\x84\x9a\xe8\xff\x01\x00\x00" "\xa0\x32\x62\xdf\x3f\x13\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\x6c\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\x7f\x4e\xf9\x7f\xd7\xff\x77\xfd" "\x7f\xf9\xff\xea\x93\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\xff\xaa\xe5" "\xff\x8b\x42\xfe\x9f\x6b\x6a\xd8\xf2\xff\xb1\xef\xdf\x1d\x6a\x92\x49" "\xff\x0f\x00\x00\x00\x39\x88\x7d\xff\x9e\x50\x13\xfd\x3f\x00\x00\x00" "\x54\x46\xec\xfb\xf7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f" "\x6f\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7" "\xed\xcb\xff\x6f\x4e\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x5f\xb5" "\xfc\xbf\xeb\xff\x73\x8d\x0d\x5b\xfe\x3f\xf6\xfd\xf7\x85\x9a\x64\xd2" "\xff\x03\x00\x00\x40\x0e\x62\xdf\xbf\x2f\xd4\x44\xff\x0f\x00\x00\x00" "\x95\x11\xfb\xfe\xfd\xa1\x26\xa1\xff\xef\xf4\xef\xba\x01\x00\x00\x80" "\xcd\x25\xf6\xfd\x07\x42\x4d\x32\xf9\xfb\xbf\xfc\x7f\x45\xf2\xff\xbf" "\xf9\x77\x2d\xdb\x96\xff\x97\xff\xef\xb6\xfd\xc1\xe4\xff\x27\xe5\xff" "\x43\x95\xff\x1f\x2e\x15\xcd\xff\xb7\x1f\x16\x57\x4c\xfe\xbf\x07\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x06\x6a\xd8\xf2\xff\xb1\xef\x3f\x18\x6a" "\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d\xff\xeb\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x19\xb1\xef\xff\xe9\x50\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\x7f\x26\xd4\x24\x93\xfe\x7f\xb0\xf9\xff\x49\xf9\xff\x26\x59" "\x5d\xff\x7f\xb2\x75\xfc\xf2\xff\x9d\xe7\x47\xb5\xf2\xff\xae\xff\x2f" "\xff\x3f\x9c\x2a\x9a\xff\x1f\x98\x4a\xe5\xff\x47\xe4\xff\xe5\xff\x87" "\x6b\xfc\xf2\xff\xf2\xff\xac\x74\xf5\xf3\xff\xf1\xab\xfe\xf2\xff\xb1" "\xef\xbf\x3f\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x9f\x0d" "\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x81\x50\x13\xfd\x3f\x00" "\x00\x00\x54\x46\xec\xfb\x0f\x85\x9a\x64\xd2\xff\xbb\xfe\xbf\xfc\xbf" "\xeb\xff\xcb\xff\x5f\x9d\xfc\xff\x03\x45\xbb\x61\xcc\xff\xd7\x27\x8f" "\xfc\x7f\xb5\xc8\xff\x77\x57\xa9\xfc\xbf\xeb\xff\xcb\xff\x0f\xd9\xf8" "\xe5\xff\xe5\xff\x59\x69\xd8\xae\xff\x1f\xfb\xfe\xd7\x87\x9a\x64\xd2" "\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\x60\xa8\x89\xfe\x1f\x00\x00\x00" "\x2a\x23\xf6\xfd\x6f\x08\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff" "\x8d\xa1\x26\x99\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xae\xff\xdf" "\x79\xfb\xf2\xff\x9b\x93\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb" "\xff\xcb\xff\x33\x50\xc3\x96\xff\x8f\x7d\xff\x9b\x42\x4d\x32\xe9\xff" "\x01\x00\x00\x20\x07\xb1\xef\x7f\x73\xa8\x89\xfe\x1f\x00\x00\x00\x2a" "\x23\xf6\xfd\x6f\x09\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xad" "\xa1\x26\x99\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x9d\xb7" "\x2f\xff\xbf\x39\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\x3f\x03\x35\x6c\xf9\xff\xd8\xf7\xff\x5c\xa8\x49\x26\xfd\x3f\x00" "\x00\x00\xe4\x20\xf6\xfd\x0f\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62" "\xdf\xff\xb6\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x1e\x6a" "\x92\x49\xff\x2f\xff\xbf\x89\xf3\xff\x63\xf2\xff\xf2\xff\xf2\xff\xf2" "\xff\xbd\xb7\x9b\x1b\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x97\xff" "\x97\xff\x67\xa0\x86\x2d\xff\x1f\xfb\xfe\x77\x84\x9a\x64\xd2\xff\x03" "\x00\x00\x40\x0e\x62\xdf\xff\xf3\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c" "\xd8\xf7\xbf\x33\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x5f\x08" "\x35\xc9\xa4\xff\x97\xff\xdf\xc4\xf9\xff\x4a\x5e\xff\x7f\xe9\x42\xf3" "\x7a\x15\xcb\xff\xd7\x17\x93\xff\xbf\x56\xf9\xff\xfa\x4a\xf2\xff\x59" "\x90\xff\xef\x4e\xfe\xbf\x87\x0e\xf9\xff\xad\xf2\xff\x79\xe5\xff\x97" "\xc2\x59\x5e\xfe\x5f\xfe\x9f\x81\x18\xb6\xfc\x7f\xec\xfb\xdf\x15\x6a" "\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d\xff\xbb\x43\x4d\xf4\xff\x00" "\x00\x00\x50\x19\xb1\xef\x7f\x4f\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23" "\xf6\xfd\x0f\x87\x9a\x64\xd2\xff\xcb\xff\x67\x99\xff\x4f\x4f\x79\xf8" "\xf2\xff\xab\x5d\xff\x7f\xb2\x71\xdf\x26\xcf\xff\xbb\xfe\xbf\xeb\xff" "\xcb\xff\x6f\x80\xea\xe6\xff\xd7\xfc\x50\x1d\xc9\xff\xf7\xe0\xfa\xff" "\xf2\xff\xae\xff\x2f\xff\xcf\x40\x0d\x5b\xfe\x3f\xf6\xfd\x8f\x84\x9a" "\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\xde\x50\x13\xfd\x3f\x00" "\x00\x00\x54\x46\xec\xfb\x7f\x31\xd4\x44\xff\x0f\x00\x00\x00\x95\x11" "\xfb\xfe\xf7\x85\x9a\x64\xd2\xff\xcb\xff\x67\x99\xff\x1f\xe2\xeb\xff" "\xaf\x96\xff\xdf\xac\xd7\xff\x1f\x2b\x8a\xc9\xe5\xed\xe4\x94\xff\x9f" "\x68\x7a\x3d\xd3\xbc\x94\xff\x97\xff\xdf\x00\xd5\xcd\xff\x0f\x86\xfc" "\x7f\x0f\xf2\xff\xf2\xff\xc3\x9c\xff\x0f\xb3\x79\x72\x95\xf5\x87\x27" "\xff\x1f\xdf\x2f\xc8\xff\x33\x7c\xf9\xff\xd8\xf7\xbf\x3f\xd4\x24\x93" "\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x5f\x0a\x35\xd1\xff\x03\x00\x00" "\x40\x65\xc4\xbe\xff\x97\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef" "\xff\x95\x50\x93\x4c\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\x77\xfd" "\xff\xce\xdb\x97\xff\xdf\x9c\xe4\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe" "\x7f\x98\xf3\xff\x3d\x0c\x4f\xfe\xdf\xf5\xff\x59\x36\x6c\xf9\xff\xd8" "\xf7\xff\x6a\xa8\xc9\xaa\x8d\xdf\x0f\xfe\xab\x8f\xa7\x09\x00\x00\x00" "\x0c\x91\xd8\xf7\x7f\x20\xd4\x24\x93\xbf\xff\x03\x00\x00\x40\x0e\x62" "\xdf\x7f\x38\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x47\x43\x4d" "\x32\xe9\xff\xe5\xff\xdb\xf3\xff\xf1\x8a\xaa\xf2\xff\xf2\xff\xf2\xff" "\xf2\xff\xf2\xff\x9b\xd1\xe0\xf2\xff\x2f\xbb\xbe\x28\xe4\xff\x2b\x93" "\xff\x9f\xe8\x73\x00\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\xd4\xb0\xe5" "\xff\x63\xdf\x7f\x24\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe" "\x5f\x0b\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x68\xa8\x89\xfe" "\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x73\xa1\x26\x99\xf4\xff\xd7\x30\xff" "\x3f\x3e\x9c\xf9\x7f\xd7\xff\xbf\xd2\xfc\xff\x4f\xe4\xff\xe5\xff\x83" "\x4d\x9a\xff\xff\xe7\xe2\x1a\xe5\xff\x0b\xf9\xff\x81\x72\xfd\xff\xee" "\xb2\xcd\xff\xf7\x4b\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x81\x1a\xb6\xfc" "\x7f\xec\xfb\xe7\x43\x4d\x32\xe9\xff\x01\x00\x00\xa0\xc2\xd2\xaf\x83" "\x63\xdf\x7f\x2c\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xe3\xa1" "\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x7f\x30\xd4\x24\x93\xfe\xdf" "\xf5\xff\xe5\xff\x5d\xff\xff\x5a\xe4\xff\xc7\x5a\x96\x97\xff\x2f\xb9" "\xfe\xbf\xfc\xff\x20\xc8\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc" "\xbf\xfc\x3f\x03\x35\x6c\xf9\xff\xd8\xf7\x2f\x84\x9a\x64\xd2\xff\x03" "\x00\x00\x40\x0e\x62\xdf\xff\xa1\x50\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\x3f\x1c\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x89\x50" "\x93\x4c\xfa\x7f\xf9\x7f\xf9\xff\xdc\xf3\xff\xb5\xff\x67\xef\x3e\x9a" "\xe3\x3a\xaf\x3c\x0e\x37\x35\x24\x48\x4e\xd5\xd4\xcc\x47\xd0\x7a\x56" "\xb3\x1c\xaf\xe4\x8f\x60\x6f\x5c\xe5\x9d\xaa\xbc\x96\xa3\x9c\x03\x45" "\xe7\x6c\xcb\x39\x07\x39\x4b\xce\x39\x5b\xce\x39\xe7\x2c\xe7\x1c\xe5" "\x24\xd9\x55\x74\x09\x3c\xe7\x10\x40\x37\xee\x25\x89\x06\xfa\xde\xf7" "\x7d\x9e\xcd\x31\x21\xc2\xdd\x90\x20\xc9\x7f\xa3\x7e\x75\x17\x8b\xeb" "\x3c\xff\x5f\xff\xbf\xea\xf5\xf5\xff\xf3\xa4\xff\x1f\xa6\xff\x1f\xa1" "\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\xd4\xfa\xff\xdc\xfd\xd7\xc4\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x7b\xc6\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xbd\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\xde\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xef\xbd\xff\x5f\x6c\xe4\xf9\xff" "\xbb\x7f\xbf\xfe\xff\x3c\xfd\xbf\xfe\x7f\x1d\x96\xfa\xfb\xe3\xab\x7f" "\xdf\x7e\x51\xf8\xbe\xfd\xff\xff\xfd\xff\xb5\x57\xeb\xff\xf5\xff\xfa" "\xff\x41\xfa\x7f\xfd\xbf\xfe\x9f\xbd\xa6\xd6\xff\xe7\xee\xbf\x4f\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x6f\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xdf\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\xaf\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xab\xff\xbf" "\x59\xff\xaf\xff\x9f\x37\xcf\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\xac\xd5\xd4\xfa\xff\xdc\xfd\xf7\x8f\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x07\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x83\xe2\x96\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\x9f\x4b\xff\xbf\xe5\xf9\xff\x7b\xbe\x1e" "\xfd\xbf\xfe\x7f\x15\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xad\xa6\xd6\xff\xe7\xee\x7f\x70\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f" "\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x16\xb7\x74\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xff\x5c\xfa\xff\x23\x7a\xfe\xbf\xfe\x5f\xff\x3f" "\x73\x37\x2c\x2e\xfc\x33\x41\xff\xbf\x4c\xff\x3f\x62\xa4\xff\x5f\x2c" "\xf4\xff\x43\x2e\xba\x9f\x5f\xfd\xe5\xcd\xe7\xfd\xef\x43\xff\xaf\xff" "\x67\xd9\xd4\xfa\xff\xdc\xfd\x0f\x8f\x5b\xee\xbc\x58\x6c\x5d\xee\x17" "\x09\x00\x00\x00\x4c\x4a\xee\xfe\x47\xc4\x2d\x9d\xfc\xfc\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\x4c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f" "\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfa\xf5" "\xf5\xff\xf3\xe4\xf9\xff\xc3\x0e\xde\xff\xff\xef\xff\x5c\x73\x8f\x7e" "\xfb\xff\x66\x9e\xff\x7f\x6e\xd5\xff\x72\xd9\x7c\x3f\x7f\x50\x9b\x7e" "\xff\xeb\xef\xff\xef\xf8\xce\xd0\xff\x33\x6f\x53\xeb\xff\x73\xf7\x9f" "\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\x8c\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x47\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xa3\xe3\x96\x4e\xf6\xbf\xfe\xbf\xb5\xfe\xff\x3f\x76\x7d\xde" "\x8e\xfe\x7f\xbb\x76\xd1\xff\xeb\xff\xf5\xff\xfa\xff\xd6\xe9\xff\x87" "\x79\xfe\xff\x88\xed\x7f\xcc\x9d\xae\x5f\x36\xdb\xff\xef\x63\xd3\xfd" "\xfc\xdc\xdf\xbf\xe7\xff\xeb\xff\x59\x36\xb5\xfe\x3f\x77\xff\x63\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x63\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x71\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xf8\xb8\xa5\x93\xfd\xaf\xff\x6f\xad\xff\xdf\xfd\x79\x9e\xff\xaf" "\xff\x5f\xf5\xfa\x33\xef\xff\x4f\xe4\xc7\xf5\xff\xfa\xff\x55\xf4\xff" "\xc3\xf4\xff\x23\x5a\x79\xfe\xff\x65\x7e\xd7\x6c\xba\x9f\x3f\xa8\x4d" "\xbf\x7f\xfd\xbf\xfe\x9f\x65\x53\xeb\xff\x73\xf7\x3f\x21\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x8e" "\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x3c\xfa\xff\x7c\x05\xfd\xbf\xfe\xff" "\xf0\x9f\xff\x9f\xf4\xff\xf3\xf3\x9f\xfa\xff\x51\xfa\xff\x11\xad\xf4" "\xff\x97\x69\xd3\xfd\xfc\xdc\xdf\xff\x7a\xfa\xff\x3b\xfe\xed\xa2\xff" "\xa7\x1d\x53\xeb\xff\x73\xf7\x3f\x25\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\x3f\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x16" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x8f\x5b\x3a\xd9\xff\xfa" "\x7f\xfd\xff\x3c\xfa\x7f\xcf\xff\xd7\xff\x1f\x5d\xff\xef\xf9\xff\xf3" "\xa6\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\x6f\xbc\xff\xf7\xfc\x7f\xda" "\x32\xb5\xfe\x3f\x77\xff\xf5\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90" "\xbb\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcc\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x56\xdc\xd2\xc9\xfe\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xd7\xd7\xff\xcf\x93\xfe\x7f\x98\xfe" "\x7f\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x13\xea\xff\x77\x7c\xd6" "\xa9\xc5\xb3\xcf\xdf\xbb\xd6\x87\x3a\xd9\xff\x00\x00\x00\xd0\x83\xd8" "\xfd\x8b\xe7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x73\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x79\x71\x4b\x27\xfb\x5f\xff\x3f" "\x99\xfe\x7f\x3b\xe7\x6b\xab\xff\x3f\xbd\x58\x2c\xf4\xff\x8b\x4e\xfb" "\xff\xd3\x3b\xfe\x7a\xd6\xf7\xa5\xfe\x5f\xff\x7f\x04\xf4\xff\xc3\xf4" "\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xb5\x9a\x50\xff\xbf\xfd\xeb" "\xdc\xfd\xcf\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x88" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x8b\xe2\x96\x4e\xf6\xbf\xfe\x7f\x32\xfd\xff\xb6" "\xb6\xfa\x7f\xcf\xff\xdf\xfb\xfd\xd1\x53\xff\xef\xf9\xff\xcb\xf4\xff" "\x47\x43\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xab" "\xa9\xf5\xff\xb9\xfb\x5f\x1c\x37\x6d\x9d\xb8\xec\x2f\x11\x00\x00\x00" "\x98\x98\xdc\xfd\x2f\x89\x5b\x3a\xf9\xf9\x3f\x00\x00\x00\xf4\x20\x77" "\xff\x4b\xe3\x16\xfb\x1f\x00\x00\x00\x66\xea\xfa\xa5\x8f\xe4\xee\x7f" "\x59\xdc\xd2\xc9\xfe\xd7\xff\xaf\xb7\xff\xdf\xda\xf1\x31\xfd\xbf\xfe" "\x7f\xef\xf7\x87\xfe\x5f\xff\xaf\xff\x3f\x7c\xfa\xff\x61\xfa\xff\x11" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\x4d\xad\xff\xcf\xdd\xff\xf2\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x43\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xbf\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x5f\x19\xb7\x74\xb2\xff\xf5\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\x57" "\xbf\xbe\xfe\x7f\x9e\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\xff\xcd\xf6" "\xff\x27\x2f\xfc\x47\xfd\x3f\x6d\xb8\x84\xfe\xff\xdc\xb9\x73\x67\x0e" "\xbd\xff\xcf\xdd\xff\xaa\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x4d\xda\xf3" "\xb3\xd2\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xd7" "\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6b\xe3\x96\x4e\xf6\xbf" "\xfe\xbf\xd3\xfe\x3f\xbf\xd5\xe7\xd5\xff\x5f\xb7\x58\xe8\xff\xf5\xff" "\xfa\x7f\xfd\xff\x30\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\xdf\xf3\xff" "\xf5\xff\xac\xd5\xd4\x9e\xff\x9f\xbb\xff\x75\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xbf\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1f\xb7\x74\xb2" "\xff\xf5\xff\x9d\xf6\xff\x9e\xff\xaf\xff\xd7\xff\x1f\x75\xff\x7f\xfb" "\x42\xff\x7f\x24\x66\xd1\xff\x9f\xde\xff\xf5\xa7\xde\xff\x9f\xd5\xff" "\xeb\xff\x07\x74\xd7\xff\xdf\xe5\x4e\xbb\x7e\xa9\xff\xd7\xff\xb3\x6c" "\x6a\xfd\x7f\xee\xfe\x37\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xcd\x71\xd3\xf1\x4e\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x57\xbf\xfe\x11\x3f\xff\x7f\x6b\xb1\x58" "\xe8\xff\xd7\x60\x16\xfd\xff\x80\xa9\xf7\xff\xeb\x79\xfe\xff\xde\xbf" "\xcb\x2f\xd0\xff\xeb\xff\xe7\xfc\xfe\xf5\xff\xfa\x7f\x96\x4d\xad\xff" "\xcf\xdd\xff\x96\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xd6" "\xb8\xc5\xfe\x07\x00\x00\x80\x79\xd9\xda\xff\x0f\xe5\xee\x7f\x5b\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3d\x6e\xe9\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xa4\xfa\xff\x63\x87\xd0\xff\x9f\x9d\x45\xff" "\xef\xf9\xff\x6b\xa2\xff\x1f\x36\x8d\xfe\x7f\x7f\xfa\x7f\xfd\xff\x9c" "\xdf\xbf\xfe\x5f\xff\xcf\xc5\xdb\x54\xff\x9f\xbb\xff\x1d\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x77" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x2f\xa5\xff\xcf\xf7\xd9\x5b\xff\x7f" "\x3a\x7e\x5f\xab\xfd\xff\xc9\x29\xf5\xff\xdb\xff\x9c\x39\xb5\xeb\xbf" "\xaf\x93\xe7\xff\xeb\xff\xd7\x44\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff" "\xd7\xff\x5f\xaf\xff\x67\x9d\xa6\xf6\xfc\xff\xdc\xfd\xef\x89\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8d\x5b\xff\xd7\xad\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x7f\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x3d\xff\xdf\xf3\xff\x27" "\xf5\xfc\xff\x33\x87\xf0\xfc\x7f\xfd\x7f\x57\xf4\xff\xc3\xf4\xff\x23" "\xf4\xff\xfa\x7f\xfd\xbf\xe7\xff\xb3\x56\x53\xeb\xff\x73\xf7\x7f\x20" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x30\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x37\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f" "\xff\x6b\xa8\xff\x6f\x83\xfe\x7f\xd8\xd1\xf4\xff\xa7\xf5\xff\xfa\xff" "\xea\xe7\x8f\xc5\xdf\x05\xfa\x7f\xfd\xff\xd8\xe7\xd3\xa6\xa9\xf5\xff" "\xb9\xfb\x3f\x1c\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x12" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00" "\x00\x98\xa5\xe3\x2b\x3e\x96\xbb\xff\x63\x71\x4b\x27\xfb\x5f\xff\xaf" "\xff\x3f\xb4\xfe\x7f\x2b\x3e\xd8\x53\xff\x7f\xc5\x42\xff\x3f\xd3\xfe" "\x7f\xd5\xeb\xeb\xff\xe7\x69\x23\xfd\x7f\x7e\x53\xe8\xff\x3d\xff\x3f" "\xf4\xd3\xff\x5f\xb9\xeb\x57\x9b\x7e\xfe\xff\xf1\x4b\x7c\xff\x7b\xff" "\xfd\xb5\x89\xfe\x7f\xc7\xfa\xd0\xff\xd3\xa4\xa9\xf5\xff\xb9\xfb\x3f" "\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x05\x57\x8f\xfc\xf1\xdc\xfd\x9f" "\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xa7\xe2\x96\x1e\xf6\xff\x7f\xe9\xff\x17\xfa" "\xff\x83\xf4\xff\x67\x3d\xff\xdf\xf3\xff\xf5\xff\x9b\xe8\xff\x8f\x2d" "\x8e\x2d\xf4\xff\xfb\xf1\xfc\xff\x61\xfa\xff\x11\xfd\xf4\xff\x37\xad" "\xfa\xe0\xa6\x9f\x9f\x7f\x50\x9b\x7e\xff\x9e\xff\xaf\xff\x67\xd9\xd4" "\xfa\xff\xdc\xfd\x9f\x8e\x5b\x7a\xd8\xff\x00\x00\x00\xd0\x89\xdc\xfd" "\x9f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x63\x7b\xf7\x67\x5c\xd6\xe1\xfe\xd7\xff\xeb\xff\x0f" "\xed\xf9\xff\xfa\xff\xa5\xef\x0f\xfd\xbf\xfe\xdf\xf3\xff\x0f\x9f\xfe" "\x7f\x98\xfe\x7f\x44\x3f\xfd\xff\x4a\x9b\xee\xe7\xe7\xfe\xfe\xf5\xff" "\xfa\xff\x8e\xdd\xed\xf8\x3e\x7f\x60\x6a\xfd\xff\xe7\xb6\x3f\xeb\xd4" "\xe2\xf3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x0b\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x52\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xe7\xd1\xff\x9f" "\x3b\x77\xee\x8c\xfe\x5f\xff\xbf\xfb\xeb\xb9\xd0\xff\xdf\xa2\xff\xa7" "\xe8\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb5" "\xfe\x3f\x77\xff\x97\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\x57\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xab\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xb5\xb8\xa5\x93\xfd\xaf\xff\x9f\x40\xff" "\x7f\x4a\xff\xef\xf9\xff\xfa\xff\x85\xe7\xff\xeb\xff\xd7\x44\xff\x3f" "\x4c\xff\x3f\xa2\xc5\xfe\xff\xd4\xc5\x7f\xf9\x9b\xee\xe7\x0f\x6a\xd3" "\xef\x5f\xff\xaf\xff\x67\xd9\xd4\xfa\xff\xdc\xfd\x5f\x8f\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x88\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb7\xe2" "\x96\x4e\xf6\xbf\xfe\xff\xe8\xfa\xff\x3b\xfe\xdc\x1d\xe2\xf3\xff\x6f" "\xdb\x99\x38\x6e\xba\xff\x3f\xbd\x58\xfd\xfe\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\xb0\xe9\xff\x87\xe9\xff\x47\xb4\xd8\xff\x5f\x82\x4d\xf7\xf3" "\x73\x7f\xff\xfa\x7f\xfd\x3f\xcb\xa6\xd6\xff\xe7\xee\xff\x76\xdc\xb2" "\x7b\xf8\x9d\xb8\xb4\xaf\x12\x00\x00\x00\x98\x92\xdc\xfd\xdf\x89\x5b" "\x3a\xf9\xf9\x3f\x00\x00\x00\xf4\x20\x77\xff\x77\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x7b\x71\x4b\x27\xfb\x5f\xff\x3f\x81\xe7\xff" "\xaf\xa7\xff\xdf\x65\xd3\xfd\xbf\xe7\xff\xaf\xfe\xfe\xd0\xff\x4f\xa6" "\xff\xdf\x8a\xdf\xba\xf3\xf5\xaf\xd0\xff\xb7\x41\xff\x3f\x4c\xff\x3f" "\x42\xff\xaf\xff\xd7\xff\xaf\xa9\xff\xcf\xef\x66\xfd\x7f\xef\xa6\xd6" "\xff\xe7\xee\xff\x7e\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff" "\x41\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x30\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x6f\x89\x5b\x76\xec\xff\x55\x6d\x77\x2b\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\xbf\xc3\xfe\xdf\xf3\xff\x1b\xa6\xff\x1f\x76" "\xb1\xfd\xff\xc9\xc5\xc1\xfa\xff\xa4\xff\xd7\xff\xeb\xff\x7b\xed\xff" "\x3d\xff\x9f\xf3\xa6\xd6\xff\xe7\xee\xff\x51\xdc\xe2\xe7\xff\x00\x00" "\x00\x30\x3b\x27\xf6\xf9\x78\xee\xfe\x1f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x4f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xa7" "\x71\xcb\xad\x57\x6c\xea\x2d\x1d\x29\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xaf\x7e\x7d\xfd\xff\x3c\xe9\xff\x87\x79\xfe\xff\x08\xfd\xff\x3a" "\xfa\xf9\xab\xf4\xff\x47\xd1\xff\x1f\x5f\xfa\xfc\x75\xf7\xff\x8b\x85" "\xfe\x9f\x83\x9b\x5a\xff\x9f\xbb\xff\x67\x71\x8b\x9f\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f" "\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\x3a\xd9\xff" "\xfa\x7f\xfd\xff\x01\xfb\xff\xed\x34\x53\xff\x7f\x9e\xfe\xff\x3c\xfd" "\xff\x6a\xfa\xff\xa3\xa1\xff\x1f\xa6\xff\x1f\xa1\xff\xf7\xfc\xff\xd9" "\xf4\xff\xcb\x3c\xff\x9f\x29\x9a\x5a\xff\x9f\xbb\xff\x57\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xd7\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x9b\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x6d" "\xdc\xd2\xc9\xfe\x5f\x6b\xff\x7f\x63\x54\xd8\x17\xd3\xff\xc7\x9f\x6a" "\xfd\xff\xec\xfb\x7f\xcf\xff\xd7\xff\xeb\xff\xf5\xff\x93\xa2\xff\x1f" "\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\xd4\xfa\xff\xdc" "\xfd\xbf\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x1f\xe3\x96\x4e\xf6\xbf\xe7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xea\xd7\xd7\xff\xcf\x93\xfe\x7f\x98\xfe\x7f\xb5\xfa\x0b" "\xa5\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\xd4\xfa\xff\xdc\xfd\x7f\x8a" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x7f\x8e\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x2f\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xab" "\x5f\x5f\xff\x3f\x4f\x93\xea\xff\x8f\xeb\xff\x77\x7e\xee\xdd\xff\x7b" "\xfc\x65\x3d\xff\x7f\xe3\xfd\x7f\xbe\x05\xfd\xbf\xfe\x5f\xff\xcf\x5a" "\x4c\xad\xff\xcf\xdd\xff\xd7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xb7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x7b\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x23\x6e\xe9\x64\xff\x8f\xf4\xff" "\x27\xeb\x37\xea\xff\x07\xe9\xff\x77\xbf\x7f\xfd\xff\xea\xef\x0f\xfd" "\xbf\xfe\x5f\xff\x7f\xf8\x26\xd5\xff\x7b\xfe\xff\x6c\x9e\xff\x5f\xf4" "\xff\x9e\xff\xaf\xff\xd7\xff\xb3\x56\x53\xeb\xff\x73\xf7\xdf\x16\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8f\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xbf\xe2\x96\x4e\xf6\xbf\xe7\xff\xcf\xa9\xff\xbf\x4a\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x23\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\xff\x4b" "\x78\xff\x57\xee\xf9\xb5\xfe\x5f\xff\xcf\xb2\xa9\xf5\xff\xb9\xfb\xff" "\x1d\x00\x00\xff\xff\x2f\xdf\x36\x14", 25220); syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000180, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x28108c0, /*opts=*/0x2000000005c0, /*chdir=*/1, /*size=*/0x6284, /*img=*/0x20000000dc00); break; case 1: // unlinkat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: unlinkat_flags = 0x0 (8 bytes) // ] memcpy((void*)0x2000000001c0, "./file1\000", 8); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x2000000001c0ul, /*flags=*/0ul); break; case 2: // syz_mount_image$msdos arguments: [ // fs: ptr[in, buffer] { // buffer: {6d 73 64 6f 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: mount_flags = 0x184a438 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xa (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x200000000f40, "msdos\000", 6); memcpy((void*)0x200000000f00, ".\000", 2); syz_mount_image( /*fs=*/0x200000000f40, /*dir=*/0x200000000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x2408*/ 0x184a438, /*opts=*/0x200000000280, /*chdir=*/0xa, /*size=*/0, /*img=*/0x200000000180); break; } } 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); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }