// https://syzkaller.appspot.com/bug?id=511ee41424db6837525d63d4967ef22084687c52 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static 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")) { } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { 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_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 6f // 61 74 69 61 6e 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 30 33 2c 6e 6f 64 69 73 63 61 72 64 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 ad d4 ce ec 7c // b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e 07 06 b0 04 08 dc // 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 84 4e f8 e6 97 2c db // 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a // 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a e6 4a 5a 52 1a a8 // 30 80 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // fd 2c fc 77 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a cb b2 2d 40 39 1a e3 // 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d // 78 16 e0 b9 39 81 dd fc 47 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 // 65 b9 83 94 a1 70 5c 9b b5 33 0c a3 d5 7c 41 75 72 fa 53 45 a2 34 // d2 84 f6 60 82 e5 c7 ee 10 00 8b 76 a2 17 b1 76 21 3a 0c 67 12 dc // 60 76 ac 9a c3 0e 27 05 54 fd 6e fa 03 e5 9c 10 24 02 11 be 75 8d // 72 79 9e b7 3b 38 58 7b ce 83 0c ef 0f 9d} (length 0x168) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x62b9 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62b9) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "jfs\000", 4); memcpy((void*)0x2000000000c0, "./file0\000", 8); memcpy( (void*)0x200000006600, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c" "\xfc\x77\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xdd\xfc\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9\x83\x94\xa1\x70\x5c\x9b" "\xb5\x33\x0c\xa3\xd5\x7c\x41\x75\x72\xfa\x53\x45\xa2\x34\xd2\x84\xf6\x60" "\x82\xe5\xc7\xee\x10\x00\x8b\x76\xa2\x17\xb1\x76\x21\x3a\x0c\x67\x12\xdc" "\x60\x76\xac\x9a\xc3\x0e\x27\x05\x54\xfd\x6e\xfa\x03\xe5\x9c\x10\x24\x02" "\x11\xbe\x75\x8d\x72\x79\x9e\xb7\x3b\x38\x58\x7b\xce\x83\x0c\xef\x0f" "\x9d", 360); memcpy( (void*)0x2000000097c0, "\x78\x9c\xec\xdd\x4f\x8f\x1b\x67\x1d\x07\xf0\xdf\xf8\xdf\xfe\x09\x4d\xa3" "\x1e\xaa\x12\x21\xb4\x6d\x03\xb4\x94\xe6\x6f\x09\x81\x02\x6d\x0f\x70\xe8" "\x85\x03\xca\x15\x25\xda\x6e\xab\x88\x14\x50\x12\x50\x5a\x45\x64\xab\x5c" "\x38\xf0\x22\x40\x48\x1c\x01\x71\xe4\xc4\x0b\xe8\x81\x2b\x37\x5e\x00\x91" "\x12\x24\xa0\xa7\x0e\x9a\xf5\xf3\x6c\xc6\xc6\x8e\x77\x37\xb5\xc7\xbb\xf3" "\xf9\x48\xce\xcc\xcf\xcf\xcc\xfa\x99\x7c\x3d\x6b\x7b\x67\xc6\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\xf6\xf7\x7f\x78\xae" "\x88\x88\x2b\xbf\x48\x77\x9c\x88\xf8\x5c\x74\x23\x3a\x11\x6b\x55\xbd\x11" "\x11\x6b\x1b\x27\xf2\xf2\xbd\x88\x78\x2e\x76\x9a\xe3\xd9\x88\xe8\xaf\x44" "\x14\xb9\xf1\xe9\x88\xd7\x22\xe2\xe3\xe3\x11\x0f\x1e\xde\xd9\xac\xee\x3a" "\xbf\xc7\x7e\x7c\xef\x4f\x7f\xff\xdd\x8f\x8e\xfd\xe0\x6f\x7f\xe8\x9f\xf9" "\xcf\x9f\x6f\x75\x5f\x9f\xb6\xdc\xed\xdb\xbf\xfe\xf7\x5f\xee\x1e\x7c\x7b" "\x01\x00\x00\xa0\x8d\xca\xb2\x2c\x8b\xf4\x31\xff\x64\xfa\x7c\xdf\x69\xba" "\x53\x00\xc0\x42\xe4\xd7\xff\x32\xc9\xf7\xab\x97\xae\xde\x5e\xb2\xfe\xa8" "\xd5\x6a\xb5\xfa\x10\xd6\x75\xe5\x64\x77\xeb\x45\x44\x6c\xd7\xd7\xa9\xde" "\x33\x38\x1c\x0f\x00\x87\xcc\x76\x7c\xd2\x74\x17\x68\x90\xfc\x5b\xad\x17" "\x11\xc7\x9a\xee\x04\xb0\xd4\x8a\xa6\x3b\xc0\x5c\x3c\x78\x78\x67\xb3\x48" "\xf9\x16\xf5\xd7\x83\x8d\x61\x7b\x3e\x17\x64\x24\xff\xed\x62\xf7\xfa\x8e" "\x69\xd3\x59\xc6\xcf\x31\x59\xd4\xf3\xeb\x5e\x74\xe3\x99\x29\xfd\x59\x5b" "\x50\x1f\x96\x49\xce\xbf\x33\x9e\xff\x95\x61\xfb\x20\x2d\x37\xef\xfc\x17" "\x65\x5a\xfe\x83\xe1\xa5\x4f\xad\x93\xf3\xef\x8e\xe7\x3f\xe6\xe8\xe4\xdf" "\x99\x98\x7f\x5b\xe5\xfc\x7b\xfb\xca\xbf\x2b\x7f\x00\x00\x00\x00\x00\x58" "\x62\xf9\xef\xff\x27\x1a\x3e\xfe\xbb\xf2\xe4\x9b\xb2\x27\x8f\x3b\xfe\xbb" "\xb1\xa0\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x67\xed\x49\xc7\xff\xdb\x55" "\x18\xff\x0f\x00\x00\x00\x96\x55\xf5\x59\xbd\xf2\x9b\xe3\x8f\xee\x9b\xf6" "\x5d\x6c\xd5\xfd\x97\x8b\x88\xa7\xc6\x96\x07\x5a\x66\x23\x22\x56\x23\xd6" "\x9b\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x49\x6f\x78\x0e" "\xef\xe5\x22\xa2\x1f\x11\x4f\xad\xaf\x97\x65\x59\xdd\xea\xc6\xeb\xfd\x7a" "\xd2\xf5\x0f\xbb\xb6\x6f\x3f\xb4\x59\xd3\xbf\xe4\x01\x00\x60\xe8\xe3\xe3" "\x63\xd7\xf2\x17\x3b\x97\xf5\xc6\xe5\xf4\x5d\x7f\xfd\xf5\xf5\xf5\xb2\x5c" "\x5d\x5b\x2f\xd7\xcb\xb5\x95\xfc\x7e\x76\xb0\xb2\x5a\xae\xd5\x3e\xd7\xe6" "\x69\x75\xdf\xca\x60\x0f\x6f\x88\x7b\x83\xb2\xfa\x61\xab\xb5\xf5\xea\x66" "\x7d\x5e\x9e\xd5\x3e\xfe\xf3\xaa\xc7\x1a\x94\xdd\x3d\x74\x6c\x31\x1a\x0c" "\x1c\x00\x22\x62\xf8\x6a\xf4\xc0\x2b\xd2\x11\x53\x96\x4f\x47\xd3\xef\x72" "\x38\x1c\xec\xff\x47\x8f\xfd\x9f\xbd\x68\xfa\x79\x0a\x00\x00\x00\xcc\x5f" "\x59\x96\x65\x91\xbe\xce\xfb\x64\x3a\xe6\xdf\x69\xba\x53\x00\xc0\x42\xe4" "\xd7\xff\xf1\xe3\x02\x0b\xab\xfb\x0b\x7e\x3c\xb5\x5a\xad\x56\xab\x5b\x5c" "\xd7\x95\x93\xdd\xad\x17\x11\xb1\x5d\x5f\xa7\x7a\xcf\x60\x38\x7e\x00\x38" "\x64\xb6\xe3\x93\xa6\xbb\x40\x83\xe4\xdf\x6a\xbd\x88\x78\xae\xe9\x4e\x00" "\x4b\xad\x68\xba\x03\xcc\xc5\x83\x87\x77\x36\x8b\x94\x6f\x51\x7f\x3d\xd8" "\x18\xb6\xe7\x73\x41\x46\xf2\xdf\x2e\x76\xd6\xcb\xeb\x4f\x9a\xce\x32\x7e" "\x8e\xc9\xa2\x9e\x5f\xf7\xa2\x1b\xcf\x4c\xe9\xcf\xb3\x0b\xea\xc3\x32\xc9" "\xf9\x77\xc6\xf3\xbf\x32\x6c\x1f\xa4\xe5\xe6\x9d\xff\xa2\x4c\xcb\xbf\xda" "\xce\x13\x0d\xf4\xa7\x69\x39\xff\xee\x78\xfe\x63\x8e\x4e\xfe\x9d\x89\xf9" "\xb7\x55\xce\xbf\xb7\xaf\xfc\xbb\xf2\x07\x00\x00\x00\x00\x80\x25\x96\xff" "\xfe\x7f\x62\xa9\x8e\xff\x0e\x0e\xba\x39\x33\x3d\xee\xf8\xef\xc6\xdc\x1e" "\x15\x00\x00\x00\x00\x00\x00\x00\xe6\xeb\xc1\xc3\x3b\x9b\xf9\xba\xd7\x7c" "\xfc\xff\x0b\x13\x96\x73\xfd\xe7\xd1\x94\xf3\x2f\xe4\xdf\x4a\x39\xff\x74" "\xfd\xff\xee\x89\x37\x2f\x8d\x2d\xd7\xad\xcd\xdf\x7f\xeb\x51\xfe\xff\x7a" "\x78\x67\xf3\xf7\xb7\xfe\xf9\xf9\x3c\xdd\x6b\xfe\x2b\x79\xa6\x48\xcf\xac" "\x22\x3d\x23\x8a\xf4\x48\x45\x2f\x4d\x0f\xb8\x61\x53\xdc\xeb\x77\x07\xd5" "\x23\xf5\x8b\x4e\xb7\x97\xce\xf9\x29\xfb\xef\xc6\xb5\xb8\x1e\x5b\x71\x76" "\x64\xd9\x4e\xda\x1f\x1e\xb5\x9f\x1b\x69\xaf\x7a\xda\xdf\x69\x2f\xbb\xc3" "\xf6\xf3\x23\xed\xbd\xdd\xf6\xbc\xfe\x85\x91\xf6\x7e\x3a\xd3\xa9\x5c\xcb" "\xed\xa7\x63\x33\x7e\x1a\xd7\xe3\x9d\x9d\xf6\xaa\x6d\x65\xc6\xf6\xaf\xce" "\x68\x2f\x67\xb4\xe7\xfc\xbb\xf6\xff\x56\xca\xf9\xf7\x6a\xb7\x2a\xff\xf5" "\xd4\x5e\x8c\x4d\x2b\xf7\x3f\xea\xfc\xdf\x7e\x5f\x9f\x4e\x7a\x9c\x37\xaf" "\x7d\xf1\x57\x67\xe7\xbf\x39\x33\xdd\x8b\xee\xee\xb6\xd5\x55\xdb\xf7\x42" "\x03\xfd\xd9\xf9\x3f\x39\x36\x88\x9f\xdf\xdc\xba\x71\xfa\xf6\xd5\x5b\xb7" "\x6e\x9c\x8b\x34\x19\xb9\xf7\x7c\xa4\xc9\x67\x2c\xe7\xdf\x4f\xb7\x9c\xff" "\x4b\x2f\x0e\xdb\xf3\xef\xfd\xfa\xfe\x7a\xff\xa3\xc1\xbe\xf3\x5f\x16\xf7" "\xa2\x37\x35\xff\x17\x6b\xf3\xd5\xf6\xbe\xbc\xe0\xbe\x35\x21\xe7\x3f\x48" "\xb7\x9c\xff\x3b\xa9\xfd\xd1\xfe\x7f\x6c\x77\x9d\xc3\x9d\xff\xf4\xfd\xff" "\x95\x06\xfa\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x53" "\x96\xe5\xce\x25\xa2\x6f\x46\xc4\xc5\x74\xfd\x4f\x53\xd7\x66\x02\x00\x8b" "\x95\x5f\xff\xcb\x24\xdf\xbf\xa8\xba\x7b\xd0\xf5\xff\x38\xba\x1d\x4d\xf5" "\x5f\xad\x5e\x70\x5d\xd4\xea\x62\x09\xfa\xb3\xd0\xfa\xd3\x72\xde\x8f\xf7" "\xf6\x52\x6d\xaf\xfa\x40\xf5\x7f\x97\xac\x3f\x4b\x57\xd7\x95\x93\xbd\x51" "\x2f\x22\xe2\xaf\xf5\x75\xaa\xf7\x0c\xbf\x9c\xf4\xc3\x00\x80\x65\xf6\x69" "\x44\xfc\xa3\xe9\x4e\xd0\x18\xf9\xb7\x58\xfe\xbe\xbf\x6a\x7a\xaa\xe9\xce" "\x00\x0b\x75\xf3\x83\x0f\x7f\x7c\xf5\xfa\xf5\xad\x1b\x37\x9b\xee\x09\x00" "\x00\x00\x00\x00\x00\x00\x70\x50\x79\xfc\xcf\x8d\xda\xf8\xcf\xa7\xca\xb2" "\xbc\x3b\xb6\xdc\xc8\xf8\xaf\x6f\xc5\xc6\x93\x8e\xff\xd9\xcb\x33\xbb\x03" "\x8c\x4e\x19\xa8\xba\xbb\xff\x6d\x7a\x9c\x4e\x44\xb7\x53\x1b\x6e\xfc\xf9" "\x98\x36\xfe\x77\x7f\x77\xee\x71\xe3\x7f\xf7\x66\x3c\x5e\x7f\x46\xfb\x60" "\x46\xfb\xca\x8c\xf6\xd5\x19\xed\x13\x2f\xf4\xa8\xc9\xf9\x3f\x5f\x1b\xef" "\xfc\x54\x44\x9c\x1c\x1b\x7e\x7d\x74\xfc\xe7\xa3\x39\xfe\xeb\xf8\x98\xf7" "\x6d\x90\xf3\x7f\xa1\xf6\x7c\xae\xf2\xff\xca\xd8\x72\xf5\xfc\xcb\xdf\x1e" "\xe6\xfc\x3b\x23\xf9\x9f\xb9\xf5\xfe\xcf\xce\xdc\xfc\xe0\xc3\x57\xaf\xbd" "\x7f\xf5\xbd\xad\xf7\xb6\x7e\x72\xe1\xdc\xb9\xb3\x17\x2e\x5e\xbc\x74\xe9" "\xd2\x99\x77\xaf\x5d\xdf\x3a\x3b\xfc\xb7\xc1\x1e\xcf\x57\xce\x3f\x8f\x7d" "\xed\x3c\xd0\x76\xc9\xf9\xe7\xcc\xe5\xdf\x2e\x39\xff\x2f\xa5\x5a\xfe\xed" "\x92\xf3\xff\x72\xaa\xe5\xdf\x2e\x39\xff\xfc\x7e\x4f\xfe\xed\x92\xf3\xcf" "\x9f\x7d\xe4\xdf\x2e\x39\xff\x97\x53\x2d\xff\x76\xc9\xf9\x7f\x35\xd5\x23" "\xf9\xcf\xfa\xe3\x12\x87\x5e\xce\xff\x95\x54\xdb\xff\xdb\x25\xe7\xff\xb5" "\x54\xcb\xbf\x5d\x72\xfe\xaf\xa6\x5a\xfe\xed\x92\xf3\x3f\x9d\x6a\xf9\xb7" "\x4b\xce\xff\x4c\xaa\xf7\x98\xff\xda\xbc\xfb\xc5\x62\xe4\xfc\xf3\x11\x2e" "\xfb\x7f\xbb\xe4\xfc\xf3\x99\x0d\xf2\x6f\x97\x9c\xff\xf9\x54\xcb\xbf\x5d" "\x72\xfe\x17\x52\x2d\xff\x76\xc9\xf9\xbf\x96\x6a\xf9\xb7\x4b\xce\xff\xeb" "\xa9\x96\x7f\xbb\xe4\xfc\x2f\xa6\x5a\xfe\xed\x92\xf3\xff\x46\xaa\xe5\xdf" "\x2e\x39\xff\x4b\xa9\x96\x7f\xbb\xe4\xfc\xbf\x99\x6a\xf9\xb7\x4b\xce\xff" "\x5b\xa9\x96\x7f\xbb\xe4\xfc\x5f\x4f\xb5\xfc\xdb\x25\xe7\xff\xed\x54\xcb" "\xbf\x5d\x72\xfe\xdf\x49\xb5\xfc\xdb\x25\xe7\xff\xdd\x54\xcb\xbf\x5d\x72" "\xfe\x6f\xa4\x5a\xfe\xed\xf2\xe8\xfb\xff\xcd\x98\x31\x63\x26\xcf\x34\xfd" "\x9b\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\xb7\x88\xd3\x89\x9b" "\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x7f\xec\xc0\x81\x00\x00\x00\x00" "\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e" "\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\x0a\x7b\x77\x17\x23\xd7\x59\xdf\x0f\xfc\xcc\xbe\x79\xed\x40\x62\x20" "\xe4\xef\xe4\x6f\xc2\xda\x31\xc6\x38\x9b\xec\xfa\x25\x7e\xa1\x75\x31\xe1" "\xb5\xe1\xad\x24\x84\x42\x5f\x62\xbb\xde\xb5\xb3\xe0\xb7\x78\xed\x92\xa4" "\x51\xed\x28\x50\x22\x61\x54\x54\xd1\x36\x5c\xb4\x05\x14\xb5\xb9\xa9\xb0" "\xaa\x5c\xd0\x2a\xa0\x5c\xa0\x56\x95\x2a\x91\xf6\x82\xde\x20\x2a\x54\x2e" "\xa2\x2a\xa0\x80\x54\x89\x56\x90\xad\xe6\x9c\xe7\x79\x76\x66\x76\x76\x66" "\xd7\x3b\x76\x66\xcf\xf9\x7c\xa4\xe4\x97\x9d\x39\x33\xe7\xcc\x99\x67\x66" "\xf7\x6b\xe7\xbb\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\xa3\x4d\xef\x9a\xfe\x7c\x2d\xcb\xb2\x5a\xad\x56\x5c\xb0\x3e" "\xcb\x5e\x53\x9f\x6b\xc7\xd6\xe7\x97\xbc\xfd\xd5\x3d\x3e\x00\x00\x00\x60" "\xe5\x7e\x99\xff\xfb\xe5\x1b\xd2\x05\x07\x97\x70\xa3\x86\x6d\xfe\xe9\xd6" "\xef\x3e\x3b\x37\x37\x37\x97\x7d\x62\xf0\x4f\x87\xbf\x3c\x37\x97\xae\x18" "\xcb\xb2\xe1\x35\x59\x96\x5f\x17\x5d\xfe\xe1\x27\x6b\x8d\xdb\x04\x4f\x64" "\xa3\xb5\x81\x86\xaf\x07\xba\xec\x7e\xb0\xcb\xf5\x43\x5d\xae\x1f\xee\x72" "\xfd\x48\x97\xeb\xd7\x74\xb9\x7e\xb4\xcb\xf5\x0b\x4e\xc0\x02\x6b\xb3\x5a" "\xba\xb3\x2d\xf9\x7f\xae\x2f\x4e\x69\x76\x63\x36\x9c\x5f\xb7\xa5\xcd\xad" "\x9e\xa8\xad\x19\xa8\x9f\xbb\x74\xdb\xac\x96\xdf\x66\x6e\xf8\x58\x36\x93" "\x9d\xc8\xa6\xb3\xc9\xa6\xed\x8b\x6d\x6b\xf9\xf6\xcf\x6d\xaa\xef\xeb\xfd" "\x59\xdc\xd7\x40\xc3\xbe\x36\xd6\x57\xc8\x4f\x1f\x3b\x1a\x8f\xa1\x16\xce" "\xf1\x96\xa6\x7d\xcd\xdf\x67\xf4\xe3\x77\x66\x63\x3f\xfb\xe9\x63\x47\xff" "\xfa\xdc\x4b\x37\xb7\x9b\x5d\x4f\x43\xd3\xfd\x15\xc7\xb9\x6d\x73\xfd\x38" "\x3f\x1b\x2e\x29\x8e\xb5\x96\xad\x49\xe7\x24\x1e\xe7\x40\xc3\x71\x6e\x6c" "\xf3\x9c\x0c\x36\x1d\x67\x2d\xbf\x5d\xfd\xbf\x5b\x8f\xf3\xe5\x25\x1e\xe7" "\xe0\xfc\x61\x5e\x53\xad\xcf\xf9\x68\x36\x90\xff\xf7\x0b\xf9\x79\x1a\xaa" "\x65\x6d\xce\xd3\xc6\x70\xd9\xcf\x6f\xcb\xb2\xec\xe2\xfc\x61\xb7\x6e\xb3" "\x60\x5f\xd9\x40\xb6\xae\xe9\x92\x81\xf9\xe7\x67\xb4\x58\x91\xf5\xfb\xa8" "\x2f\xa5\xd7\x67\x43\xcb\x5a\xa7\x9b\x96\xb0\x4e\xeb\x73\x6a\x4b\xf3\x3a" "\x6d\x7d\x4d\xc4\xe7\x7f\x53\xb8\xdd\xd0\x22\xc7\xd0\xf8\x34\xfd\xf8\xf1" "\x91\x86\xe7\xfd\x17\x73\x57\xb2\x4e\xa3\xfa\xa3\x5e\xec\xb5\xd2\xba\x06" "\x7b\xfd\x5a\xe9\x97\x35\x18\xd7\xc5\x0b\xf9\x83\x7e\xb2\xed\x1a\xdc\x12" "\x1e\xff\x63\x5b\x17\x5f\x83\x6d\xd7\x4e\x9b\x35\x98\x1e\x77\xc3\x1a\xdc" "\xdc\x6d\x0d\x0e\x8c\x0c\xe6\xc7\x9c\x9e\x84\x5a\x7e\x9b\xf9\x35\xb8\xa3" "\x69\xfb\xc1\x7c\x4f\xb5\x7c\xbe\xb8\xb5\xf3\x1a\x9c\x38\x77\xf2\xcc\xc4" "\xec\x23\x8f\xde\x31\x73\xf2\xc8\xf1\xe9\xe3\xd3\xa7\x76\xed\xd8\x31\xb9" "\x6b\xcf\x9e\x7d\xfb\xf6\x4d\x1c\x9b\x39\x31\x3d\x59\xfc\xfb\x0a\xcf\x76" "\xff\x5b\x97\x0d\xa4\xd7\xc0\xe6\x70\xee\xe2\x6b\xe0\xad\x2d\xdb\x36\x2e" "\xd5\xb9\xaf\x8d\x2c\x78\xff\xbd\xd2\xd7\xe1\x68\x87\xd7\xe1\xfa\x96\x6d" "\x7b\xfd\x3a\x1c\x6a\x7d\x70\xb5\x6b\xf3\x82\x5c\xb8\xa6\x8b\xd7\xc6\xc7" "\xea\x27\x7d\xf4\xd2\x40\xb6\xc8\x6b\x2c\x7f\x7e\xb6\xaf\xfc\x75\x98\x1e" "\x77\xc3\xeb\x70\xa8\xe1\x75\xd8\xf6\x7b\x4a\x9b\xd7\xe1\xd0\x12\x5e\x87" "\xf5\x6d\xce\x6c\x5f\xda\xcf\x2c\x43\x0d\xff\xb4\x3b\x86\xc5\xbf\x17\xac" "\x6c\x0d\xae\x6f\x58\x83\xad\x3f\x8f\xb4\xae\xc1\x5e\xff\x3c\xd2\x2f\x6b" "\x70\x34\xac\x8b\xef\x6f\x5f\xfc\x7b\xc1\xc6\x70\xbc\x4f\x8e\x2f\xf7\xe7" "\x91\xc1\x05\x6b\x30\x3d\xdc\xf0\xde\x53\xbf\x24\xfd\xbc\x3f\xba\x2f\x1f" "\xed\xd6\xe5\x2d\xf5\x2b\xae\x1b\xc9\xce\xcf\x4e\x9f\xbd\xf3\xe1\x23\xe7" "\xce\x9d\xdd\x91\x85\x71\x4d\xbc\xa1\x61\xad\xb4\xae\xd7\x75\x0d\x8f\x29" "\x5b\xb0\x5e\x07\x96\xbd\x5e\x0f\xce\xdc\xfa\xe4\x2d\x6d\x2e\x5f\x1f\xce" "\xd5\xe8\x1d\xf5\x7f\x8d\x2e\xfa\x5c\xd5\xb7\xd9\x7d\x67\xe7\xe7\x2a\xff" "\xee\xd6\xfe\x7c\x36\x5d\xba\x33\x0b\xa3\xc7\xba\x9e\xcf\xd1\xde\x9e\xcf" "\x76\xdf\xcd\xeb\xe7\x73\x24\xcb\xbe\xf2\x9d\xc7\xef\xfd\xd6\x63\x5f\x79" "\xd7\xa2\xe7\xb3\x9e\x37\x3f\x3b\xb1\xf2\x9f\xc5\x53\x2e\x6d\x78\xff\x1d" "\x5e\xe4\xfd\x37\xe6\xfe\x57\x8a\xfd\xa5\xbb\x7a\x62\x70\x78\xa8\x78\xfd" "\x0e\xa6\xb3\x33\xdc\xf4\x7e\xdc\xfc\x54\x0d\xe5\xef\x5d\xb5\x7c\xdf\x2f" "\x4f\x2c\xed\xfd\x78\x38\xfc\x73\xad\xdf\x8f\x6f\xec\xf0\x7e\xbc\xa1\x65" "\xdb\x5e\xbf\x1f\x0f\xb7\x3e\xb8\xf8\x7e\x5c\xeb\xf6\xa7\x1d\x2b\xd3\xfa" "\x7c\x8e\x86\x75\x72\x62\xb2\xf3\xfb\x71\x7d\x9b\x0d\x3b\x97\xbb\x26\x87" "\x3a\xbe\x1f\xdf\x16\x66\x2d\x9c\xff\xb7\x85\xa4\x90\x72\x51\xc3\xda\x59" "\x6c\xdd\xa6\x7d\x0d\x0d\x0d\x87\xc7\x35\x14\xf7\xd0\xbc\x4e\x77\x35\x6d" "\x3f\x1c\xb2\x59\x7d\x5f\xcf\xec\xbc\xb2\x75\xba\xed\xb6\xe2\xbe\x06\xd3" "\xa3\x9b\x77\xad\xd6\xe9\x58\xcb\xb6\xbd\x5e\xa7\xe9\xcf\xbe\x16\x5b\xa7" "\xb5\x6e\x7f\xfa\x76\x65\x5a\x9f\xcf\xd1\xb0\x2e\x6e\xdc\xd5\x79\x9d\xd6" "\xb7\x79\x7e\xf7\xca\xdf\x3b\xd7\xc6\xff\x6c\x78\xef\x1c\xe9\xb6\x06\x87" "\x07\x47\xea\xc7\x3c\x9c\x16\x61\xfe\x7e\x9f\xcd\xad\x8d\x6b\xf0\xce\xec" "\x68\x76\x3a\x3b\x91\x4d\xe5\xd7\x8e\xe4\xeb\xa9\x96\xef\x6b\xfc\xae\xa5" "\xad\xc1\x91\xf0\xcf\xb5\x7e\xaf\xdc\xd0\x61\x0d\x6e\x6b\xd9\xb6\xd7\x6b" "\x30\x7d\x1f\x5b\x6c\xed\xd5\x86\x16\x3e\xf8\x1e\x68\x7d\x3e\x47\xc3\xba" "\x78\xea\xae\xce\x6b\xb0\xbe\xcd\xbb\xf7\xf6\xf6\x67\xd7\x6d\xe1\x92\xb4" "\x4d\xc3\xcf\xae\xad\x7f\xbe\xb6\xd8\x9f\x79\xdd\xd2\x72\x9a\xae\xd6\x5a" "\x19\x0a\xc7\xf9\x9d\xbd\x9d\xff\x6c\xb6\xbe\xcd\x89\x7d\xcb\xcd\x99\x9d" "\xcf\xd3\xed\xe1\x92\xeb\xda\x9c\xa7\xd6\xd7\xef\x62\xaf\xa9\xa9\xec\xda" "\x9c\xa7\x0d\xe1\x38\x5f\xda\xb7\xf8\x79\xaa\x1f\x4f\x7d\x9b\x2f\xef\x5f" "\xe2\x7a\x3a\x98\x65\xd9\x85\x87\xee\xce\xff\xbc\x37\xfc\xfd\xca\xdf\x9d" "\xff\xde\xb3\x4d\x7f\xef\xd2\xee\xef\x74\x2e\x3c\x74\xf7\x4f\x5e\x7b\xec" "\x1f\x97\x73\xfc\x00\xac\x7e\xaf\x14\x63\x5d\xf1\xbd\xae\xe1\x6f\xa6\x96" "\xf2\xf7\xff\x00\x00\x00\xc0\xaa\x10\x73\xff\x40\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\x7f\xfc\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xa1\x30\x93\x8a\xe4\xff\x0d\xef\x7e\x69\xe6\x95\x0b\x59\x6a\xe6\xcf\x05" "\xf1\xfa\x74\x1a\xee\x29\xb6\x8b\x1d\xd7\xc9\xf0\xf5\xd8\xdc\xbc\xfa\xe5" "\x77\x3f\x3d\xfd\xdf\xff\x70\x61\x69\xfb\x1e\xc8\xb2\xec\x17\xf7\xfc\x41" "\xdb\xed\x37\xdc\x13\x8f\xab\x30\x16\x8e\xf3\xf2\x7b\x9a\x2f\x5f\xe0\xd9" "\x3b\x96\xb4\xef\xc3\xf7\x5f\x48\xfb\x6d\xec\xaf\x7f\x35\xdc\x7f\x7c\x3c" "\x4b\x5d\x06\xed\x2a\xb8\x93\x59\x96\x3d\x77\xc3\x17\xf3\xfd\x8c\x7d\xf2" "\x52\x3e\x9f\xbf\xe7\x70\x3e\xef\xbd\xf8\xe4\x13\xf5\x6d\x5e\xde\x5f\x7c" "\x1d\x6f\xff\xe2\x1b\x8a\xed\xff\x22\x94\x7f\x0f\x1e\x3b\xd2\x74\xfb\x17" "\xc3\x79\xf8\x51\x98\x93\x1f\x68\x7f\x3e\xe2\xed\xbe\x71\xe9\x6d\x1b\xf7" "\x7e\x7c\x7e\x7f\xf1\x76\xb5\xcd\xd7\xe7\x0f\xfb\xa9\x07\x8a\xfb\x8d\xbf" "\x27\xe7\x4b\x4f\x14\xdb\xc7\xf3\xbc\xd8\xf1\x7f\xeb\x0b\xcf\x7c\xa3\xbe" "\xfd\xc3\x6f\x69\x7f\xfc\x17\x06\xda\x1f\xff\x33\xe1\x7e\x9f\x0e\xf3\x7f" "\xde\x54\x6c\xdf\xf8\x1c\xd4\xbf\x8e\xb7\xfb\x5c\x38\xfe\xb8\xbf\x78\xbb" "\x3b\xbf\xfe\xed\xb6\xc7\x7f\xf9\xf3\xc5\xf6\x67\xde\x5b\x6c\x77\x38\xcc" "\xb8\xff\x6d\xe1\xeb\x2d\xef\x7d\x69\xa6\xf1\x7c\x3d\x5c\x3b\xd2\xf4\xb8" "\xb2\xf7\x15\xdb\xc5\xfd\x4f\x7e\xef\x8f\xf3\xeb\xe3\xfd\xc5\xfb\x6f\x3d" "\xfe\xd1\x43\x97\x9a\xce\x47\xeb\xfa\x78\xfe\xdf\x8a\xfb\x99\x68\xd9\x3e" "\x5e\x1e\xf7\x13\xfd\x7d\xcb\xfe\xeb\xf7\xd3\xb8\x3e\xe3\xfe\x9f\xf9\xa3" "\xc3\x4d\xe7\xb9\xdb\xfe\x2f\xdf\xfb\xe2\x9b\xea\xf7\xdb\xba\xff\xdb\x5b" "\xb6\x3b\xf3\xd0\xf6\x7c\xff\xf3\xf7\xd7\xfc\x1b\x9b\xfe\xf2\x73\x5f\x6c" "\xbb\xbf\x78\x3c\x07\xff\xf6\x4c\xd3\xe3\x39\xf8\xd1\xf0\x3a\x0e\xfb\x7f" "\xea\x81\xb0\x1e\xc3\xf5\xff\x7b\xb9\xb8\xbf\xd6\xdf\xae\x70\xf8\xa3\xcd" "\xef\x3f\x71\xfb\xaf\xae\xbf\xd0\xf4\x78\xa2\xf7\xff\xac\xd8\xff\xe5\x77" "\x1c\xcf\xe7\x9a\xd1\xb5\xeb\xae\x7b\xcd\x6b\xaf\xbf\xf8\xe6\xfa\xb9\xcb" "\xb2\x17\xd6\x14\xf7\xd7\x6d\xff\xc7\xff\xea\x74\xd3\xf1\x7f\xed\xa6\xe2" "\x7c\xc4\xeb\x63\x47\xbf\x75\xff\x8b\x89\xfb\x3f\xfb\x99\xf1\x53\xa7\x67" "\xcf\xcf\x4c\xa5\xb3\xfa\xd8\x0d\xf9\xef\xce\xf9\x60\x71\x3c\xf1\x78\x6f" "\x08\xef\xad\xad\x5f\x1f\x3a\x7d\xee\xc1\xe9\xb3\x63\x93\x63\x93\x59\x36" "\x56\xde\x5f\xa1\x77\xc5\xbe\x1e\xe6\x4f\x8a\x71\xb1\xf3\xd6\x73\x0b\xde" "\x41\xb7\xdf\x1f\x9e\xcf\x5b\xfe\xfc\xb9\x75\x5b\xff\xf5\x0b\xf1\xf2\x7f" "\xff\x58\x71\xf9\xa5\x0f\x14\xdf\xb7\xde\x1a\xb6\xfb\x52\xb8\x7c\x7d\x78" "\xfe\x96\xb7\xff\x85\x9e\xda\x74\x53\xfe\xfa\xae\x3d\x1f\x8e\x70\x6e\xe1" "\xef\x0b\x5e\x89\x8d\x5b\xfe\x6b\xdf\x92\x36\x0c\x8f\xbf\xf5\xe7\x82\xb8" "\xde\xcf\xbc\xf1\xc1\xfc\x3c\xd4\xaf\xcb\xbf\x6f\xc4\xd7\xf5\x0a\x8f\xff" "\x07\x53\xc5\xfd\x7c\x33\x9c\xd7\xb9\xf0\x9b\x99\x37\xdf\x34\xbf\xbf\xc6" "\xed\xe3\xef\x46\xb8\x74\x5f\xf1\x7a\x5f\xf1\xf9\x0b\x6f\x73\xf1\x79\xfd" "\x9b\xf0\x7c\x7f\xe8\x47\xc5\xfd\xc7\xe3\x8a\x8f\xf7\x07\xe1\xe7\x98\x6f" "\x6f\x68\x7e\xbf\x8b\xeb\xe3\x9b\x17\x06\x5a\xef\x3f\xff\x2d\x1e\x17\xc3" "\xfb\x49\x76\xb1\xb8\x3e\x6e\x15\xcf\xf7\xa5\x97\x6f\x6a\x7b\x78\xf1\xf7" "\x90\x64\x17\x6f\xce\xbf\xfe\x93\x74\x3f\x37\x2f\xeb\x61\x2e\x66\xf6\x91" "\xd9\x89\x13\x33\xa7\xce\x3f\x3c\x71\x6e\x7a\xf6\xdc\xc4\xec\x23\x8f\x1e" "\x3a\x79\xfa\xfc\xa9\x73\x87\xf2\xdf\xe5\x79\xe8\x53\xdd\x6e\x3f\xff\xfe" "\xb4\x2e\x7f\x7f\x9a\x9a\xde\xb3\x3b\xcb\xdf\xad\x4e\x17\xe3\x2a\x7b\xb5" "\x8f\xff\xcc\xfd\x47\xa7\xf6\x4e\x6e\x9d\x9a\x3e\x76\xe4\xfc\xb1\x73\xf7" "\x9f\x99\x3e\x7b\xfc\xe8\xec\xec\xd1\xe9\xa9\xd9\xad\x47\x8e\x1d\x9b\xfe" "\x4c\xb7\xdb\xcf\x4c\x1d\xd8\xb1\x73\xff\xae\xbd\x3b\xc7\x8f\xcf\x4c\x1d" "\xd8\xb7\x7f\xff\xae\xfd\xe3\x33\xa7\x4e\xd7\x0f\xa3\x38\xa8\x2e\xf6\x4c" "\x7e\x7a\xfc\xd4\xd9\x43\xf9\x4d\x66\x0f\xec\xde\xbf\xe3\xae\xbb\x76\x4f" "\x8e\x9f\x3c\x3d\x35\x7d\x60\xef\xe4\xe4\xf8\xf9\x6e\xb7\xcf\xbf\x37\x8d" "\xd7\x6f\xfd\xfb\xe3\x67\xa7\x4f\x1c\x39\x37\x73\x72\x7a\x7c\x76\xe6\xd1" "\xe9\x03\x3b\xf6\xef\xd9\xb3\xb3\xeb\x6f\x03\x3c\x79\xe6\xd8\xec\xd8\xc4" "\xd9\xf3\xa7\x26\xce\xcf\x4e\x9f\x9d\x28\x1e\xcb\xd8\xb9\xfc\xe2\xfa\xf7" "\xbe\x6e\xb7\xa7\x9c\x66\xff\xa3\xf8\x79\xb6\x55\xad\xf8\x45\x7c\xd9\x47" "\x6e\xdf\x93\x7e\x3f\x6b\xdd\xd3\x8f\x2f\x7a\x57\xc5\x26\x2d\xbf\x40\xf4" "\xa5\xf0\xbb\x68\xfe\xf9\x75\x67\xf6\x2d\xe5\xeb\x98\xfb\x87\xc3\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x1f\x09\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1a\x66" "\x52\x91\xfc\x5f\xba\xfe\xff\x86\x0b\x4b\xda\xbf\xfe\xbf\xfe\x7f\xe3\xf9" "\xd2\xff\xaf\x58\xff\xff\xbe\x7e\xeb\xff\x17\xef\x17\xfa\xff\xbd\xb1\xd2" "\xfe\xbd\xfe\x7f\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x0f\x5c\x85" "\xfe\xff\xf1\xc6\x0b\x97\xdb\xff\x8f\xb9\x7f\x6d\x96\x55\x32\xff\x03\x00" "\x00\x40\x15\xc4\xdc\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xba\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xd7\x84\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xdf\xbf\xfe\xff\xea\xa4\xff" "\xdf\x99\xfe\x7f\x17\xfa\xff\x13\x59\xb5\xfa\xff\x17\x7b\x79\xfc\xfa\xff" "\xfa\xff\x2c\x74\x15\xfa\xff\x4d\x96\xdb\xff\x8f\xb9\xff\xb5\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x5f\x1f\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfa\x30" "\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff" "\x5f\x9d\xf4\xff\x3b\xd3\xff\xef\x42\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xd3" "\x53\xfd\xd6\xff\x8f\xb9\xff\x75\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\xbf\x3e\xcc\x44\xfe\x07\x00\x00\x80\xfe\x33\x74\x65\x37\x8b\xb9" "\xff\x0d\x61\x26\x0b\xf2\xff\x15\xee\x00\x00\x00\x00\x78\xd5\xc5\xdc\x7f" "\x63\xd6\x52\x04\xaf\xc8\xdf\xff\xeb\xff\xeb\xff\xf7\x7f\xff\x7f\x4d\xba" "\x4e\xff\x5f\xff\x3f\xeb\xcb\xfe\xff\x60\xa6\xff\xdf\x3f\xf4\xff\x3b\xd3" "\xff\xef\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\x9e\xfb" "\xb3\xd1\xec\x8d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x14" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xff\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x37\x84\x99\x54\x24\xff\xeb\xff\xeb\xff\xf7\x7f\xff" "\xdf\xe7\xff\xeb\xff\xf7\x7b\xff\xdf\xe7\xff\xf7\x13\xfd\xff\xce\xf4\xff" "\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xcd" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x12\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\xff\xff\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x37\x86\x99\x54\x24\xff\xeb\xff\xaf\xac\xff\x1f\x7b\xe7\x57\xad\xff" "\x1f\x9b\xa3\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x4b\xa2\xff\xdf\x99" "\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee" "\x7f\x53\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xb7\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\x7f\x2c\xcc\xa4\x22\xf9\x5f\xff\x7f\x55\x7c\xfe\xff\x88\xcf\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x1a\xfd\xff\xce\xf4\xff\xbb\xd0\xff" "\xd7\xff\xef\x49\xff\x7f\xee\x82\xfe\xbf\xfe\x3f\x85\x7e\xeb\xff\xc7\xdc" "\xbf\x29\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xcd\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x6f\x09\x33\xa9\x48\xfe\xd7\xff\x5f\x15\xfd\xff\x4c\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x7f\x69\xf4\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff" "\xdf\xe7\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\x2d\x61\x26\x15\xc9" "\xff\x00\x00\x00\x50\x05\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xb6\x30\x93" "\x8a\xe4\xff\x9e\xf6\xff\xe3\x95\xfa\xff\x39\xfd\x7f\xfd\xff\xd6\xf5\xa1" "\xff\xaf\xff\xaf\xff\x7f\xf5\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\x7f" "\xcf\xfa\xff\x73\xfa\xff\xfa\xff\xf4\x61\xff\x3f\xe6\xfe\xb7\x85\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf1\x30" "\x93\x8a\xe4\x7f\x9f\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7e\xff\xfa" "\xff\xab\x93\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xfb\xfc\x7f\xfd\x7f" "\x7a\xaa\xdf\xfa\xff\x31\xf7\xdf\x11\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x13\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x93\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xcb\xea\xff\xbf\x79\xfe\x7e\xf5\xff\x0b\xfa\xff\xfd" "\x45\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\x5f\xf5\xfe\xff\xb0\xfe\x3f" "\xa5\xd2\x6f\xfd\xff\x98\xfb\x77\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15" "\xc4\xdc\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x57\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xee\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\x9f\xff\xdf\x7e\xff\xfa\xff\xab\x93\xfe\x7f\x67\xbd" "\xef\xff\xc7\x87\xa8\xff\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\x59\xa8\xdf" "\xfa\xff\x31\xf7\xdf\x15\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff" "\x9e\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbd\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xfb\xc2\x4c\x2a\x92\xff\xab\xda\xff\xaf\xd5\x9a" "\x8f\x23\xd2\xff\xd7\xff\xcf\x2f\xd0\xff\xd7\xff\xd7\xff\x5f\xb5\xf4\xff" "\x3b\xf3\xf9\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x42\xf7\xfd\x61" "\xe3\x57\xfd\xd6\xff\x8f\xb9\x7f\x7f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x95\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5f\x0d\x33\xa9\x48\xfe\xaf\x6a" "\xff\x7f\x91\xcf\xff\xaf\x3f\x5c\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x9c\xfe" "\xff\xea\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4" "\xd4\xa2\xfd\xff\x10\xbd\xaf\x75\xff\x3f\xe6\xfe\x03\x61\x26\x15\xc9\xff" "\x00\x00\x00\x50\x05\x31\xf7\xff\x5a\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11" "\x73\xff\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\x54" "\x24\xff\xeb\xff\xfb\xfc\xff\x7e\xe9\xff\xc7\x2e\xb5\xfe\xff\xfc\xed\xf4" "\xff\x0b\x55\xe9\xff\x8f\xc4\xfb\xd5\xff\x5f\x11\xfd\xff\xce\xae\x4d\xff" "\xbf\x16\xdf\x96\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x2b\xae\xdf\x3e" "\xff\x3f\xe6\xfe\x77\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f" "\x77\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xbb\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xdf\x1d\x66\x52\x91\xfc\xaf\xff\xaf\xff\xdf\x2f" "\xfd\xff\x68\xb1\xfe\xff\x75\xfa\xff\xfa\xff\x2d\x8f\xa7\x6c\xfd\x7f\x9f" "\xff\xdf\x1b\xfa\xff\x9d\xf9\xfc\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\x9e\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8" "\x82\x98\xfb\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xbe\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x87\x99\x54\x24\xff\xeb\xff" "\xeb\xff\xaf\x96\xfe\x7f\xa6\xff\xaf\xff\xdf\xf2\x78\xf4\xff\xf5\xff\xdb" "\xd1\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf" "\xfa\xff\x31\xf7\xff\x7a\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\xf7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x20\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\x83\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xed\xf7\xaf\xff\xbf\x3a\xe9\xff\x77\xb6\xca\xfa\xff" "\xbf\xbc\x3e\x5c\xae\xff\x5f\xd0\xff\xef\xef\xe3\x5f\x6e\xff\x7f\xa8\xe5" "\xeb\xab\xd2\xff\xff\xe1\x62\xfd\xff\xb9\x35\xad\xb7\xd7\xff\xe7\x6a\xe8" "\xb7\xfe\x7f\xcc\xfd\x1f\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9" "\xff\xc3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x09\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xff\x8d\x30\x93\x8a\xe4\x7f\xfd\xff\xfa\x71" "\xcc\xb7\x97\xf5\xff\xcb\xda\xff\x1f\xd0\xff\xd7\xff\xd7\xff\xaf\x08\xfd" "\xff\xce\x56\x59\xff\xdf\xe7\xff\xb7\xd0\xff\xef\xef\xe3\xf7\xf9\xff\xfa" "\xff\x2c\xd4\x6f\xfd\xff\x98\xfb\x3f\x1a\x66\x52\x91\xfc\x0f\x00\x00\x00" "\x55\x10\x73\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf7\x85" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2c\xcc\xa4\x22\xf9\x5f\xff" "\xdf\xe7\xff\x57\xa3\xff\xef\xf3\xff\x33\xfd\x7f\xfd\xff\x8a\xd0\xff\xef" "\x4c\xff\xbf\x0b\xfd\x7f\xfd\xff\x7e\xeb\xff\xff\xa7\xfe\x3f\xab\x5b\xbf" "\xf5\xff\x63\xee\xbf\x3f\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe" "\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x66\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x27\xc2\x4c\x2a\x92\xff\xf5\xff\x97\xdc\xff" "\x1f\xeb\x74\x7f\x57\xbf\xff\x3f\xb6\x4a\xfb\xff\x8f\xeb\xff\x5f\xc5\xfe" "\xff\xad\xd7\x17\xdb\xe9\xff\xeb\xff\x33\x4f\xff\xbf\x33\xfd\xff\x2e\xf4" "\xff\xf5\xff\xfb\xad\xff\xef\xf3\xff\x59\xe5\xfa\xad\xff\x1f\x73\xff\x27" "\xc3\x4c\x96\x9e\xff\x47\x97\xbc\x25\x00\x00\x00\xf0\xaa\x88\xb9\xff\xb7" "\xc2\x4c\x2a\xf2\xf7\xff\x00\x00\x00\x50\x05\x31\xf7\xff\x76\x98\x49\xdb" "\xfc\xdf\xf5\x7f\xbb\x01\x00\x00\x00\xfa\x50\xcc\xfd\xbf\x13\x66\x52\x91" "\xbf\xff\xd7\xff\xf7\xf9\xff\x3e\xff\x7f\xf5\xf6\xff\x7d\xfe\xbf\xfe\xbf" "\xfe\xff\x42\xd7\xae\xff\x1f\xdf\x79\xf4\xff\xf5\xff\xf5\xff\x23\xfd\x7f" "\xfd\x7f\xfd\x7f\x5a\xf5\x5b\xff\x3f\xe6\xfe\xdf\x0d\x33\xa9\x48\xfe\x07" "\x00\x00\x80\x2a\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x56\x85\x76" "\xff\x4f\x76\xab\x98\xfb\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\x1f\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xef\xd3\xfe\xff\x9f\x6d" "\xfe\x97\xef\x7f\xf7\xc3\x87\x77\xe8\xff\xeb\xff\xeb\xff\x2f\xcb\x35\xfd" "\xfc\xff\xfa\x8b\xdf\xe7\xff\xeb\xff\xeb\xff\x27\xfa\xff\xfa\xff\xfa\xff" "\xb4\xea\xb7\xfe\x7f\xcc\xfd\x47\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a" "\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xa3\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x53\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\x7d\xda\xff\x5f\xc5\x9f\xff\x1f\xcf\x87\xfe\x7f\xb3\x9e\xf5" "\xff\xe3\x9b\xae\xfe\x7f\x5b\x45\xff\x3e\xad\xa2\xab\xdb\xff\xff\xf8\x7c" "\x4f\x5c\xff\x7f\xb9\xfd\xff\x91\xb6\x97\xea\xff\xeb\xff\xaf\xe6\xe3\xd7" "\xff\xd7\xff\x67\xa1\x7e\xeb\xff\xc7\xdc\x3f\x1d\x66\x52\x91\xfc\x0f\x00" "\x00\x00\x55\x10\x72\xff\xc0\xb1\x62\xce\x5f\x21\xff\x03\x00\x00\x40\x69" "\xc4\xdc\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xc1\x30\x93" "\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xdf\x7e\xff\x9d\xfa" "\xff\xb5\x21\x9f\xff\xdf\xaf\x52\xff\xfe\xe7\xf9\x0b\x45\xff\xbf\x45\xff" "\xf4\xff\xdb\xd3\xff\xd7\xff\x5f\xcd\xc7\xaf\xff\xaf\xff\xcf\x42\xfd\xd6" "\xff\x8f\xb9\x7f\x26\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x4f" "\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x3a\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x44\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\xfb\xfd\xa7\xfe\x7f\xf8\xd6\xd0\x37\x9f\xff\xaf\xff\xdf" "\xd1\x4a\xfb\xf7\xff\xc7\xde\x9d\x34\x59\x56\x6e\x75\x1c\xde\x79\x2d\xa8" "\xac\xc0\x30\x9c\x39\x70\x62\x84\x43\x3f\x02\x03\x1d\x6b\x38\x76\xe0\xc4" "\x89\x11\x86\x11\x62\x83\x8a\x3d\x85\x7d\x8b\x82\x62\xaf\x08\xf6\x0d\xa8" "\x20\x88\xa8\x60\xdf\x80\x8a\x08\xf6\xa0\x62\xdf\x37\xd8\x80\x28\x51\x37" "\xc8\x5c\x6b\x55\x36\x3b\xf7\xc9\xac\x3c\xcd\xde\xef\xfb\x3c\x03\xd6\x25" "\x6f\x25\xe7\x5c\xa2\x22\xab\xfe\x24\xbf\xbb\xf5\xff\x41\xff\xdf\x77\xff" "\xff\x96\xfe\x5f\xff\xaf\xff\x67\x3d\xe6\xd6\xff\xe7\xee\xff\x94\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x57\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x6a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x5a\xdc" "\xd2\xc9\xfe\xd7\xff\x5f\xa6\xff\xbf\x59\x29\xeb\xff\x8f\xbf\xff\xd5\xfd" "\x7f\xbe\xe2\x06\xfb\xff\x8f\xd4\xff\x9f\xf5\xfa\xfa\xff\xcb\x3f\xff\x7f" "\xd0\xff\xcf\x96\xfe\x7f\x9a\xfe\x7f\x85\xf1\xfe\xff\xf6\x61\x18\xfa\xea" "\xff\x3d\xff\x5f\xff\xaf\xff\x67\x4d\xe6\xd6\xff\xe7\xee\xff\xf4\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\x7f\x77\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x66\xdc" "\xd2\xc9\xfe\x3f\xd1\xff\xef\x0d\x7d\xf6\xff\x99\xf1\x7a\xfe\xbf\xe7\xff" "\xeb\xff\xf5\xff\xfa\xff\x85\xdb\x6e\xff\x7f\xdf\x7b\x5f\xf9\xf4\xff\xe7" "\xee\xff\x1f\x7f\x70\xd5\xcb\xce\xb4\xff\x6f\xf1\xf9\xff\xb7\x8f\x7d\x70" "\xd7\xfd\xfc\x65\xed\xfa\xfd\x9f\xb3\xff\xbf\x7a\xd6\xe7\xeb\xff\x69\xd1" "\xdc\xfa\xff\xdc\xfd\x9f\x15\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xef\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xcf\x89\x5b\x3a\xd9\xff\xeb\x7b\xfe\xff\xb5\x83" "\x8f\x2f\xb4\xff\x2f\xfa\x7f\xfd\xff\xc1\x07\xf4\xff\xfa\x7f\xfd\xff\x62" "\x79\xfe\xff\xb4\x05\x3e\xff\xff\xe0\x37\x18\xb7\xd2\xff\xdf\xfd\xea\x1d" "\x77\xbd\xf9\xf4\x87\x3e\x73\x91\xd7\xef\xa8\xff\x1f\xb5\xeb\x7e\x7e\xe9" "\xef\xdf\xf3\xff\xf5\xff\x9c\x36\xb7\xfe\x3f\x77\xff\xe7\xc6\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\xcf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xcf\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\x88\x5b\x5a" "\xdd\xff\xaf\x1c\xff\xd3\xf5\xf5\xff\x8b\x7e\xfe\x7f\xd1\xff\xeb\xff\x0f" "\x3e\xa0\xff\xd7\xff\xeb\xff\x17\x4b\xff\x3f\x6d\x81\xfd\xff\x01\xcf\xff" "\x3f\xa4\xff\x9f\xf7\xfb\xd7\xff\xeb\xff\x39\x6d\x6e\xfd\x7f\xee\xfe\x2f" "\x8c\x5b\x5a\xdd\xff\x00\x00\x00\xd0\xa1\xdc\xfd\x5f\x14\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xf7\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xf5\xb8\xa5\x93\xfd\xaf\xff\xdf\x7c\xff\xff\xae\xfe\x5f\xff\x1f\xb7\xbf" "\xfe\x7f\x5f\xff\x7f\x84\xfe\x7f\x3b\xf4\xff\xd3\xf4\xff\x2b\xe8\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x6b\x35\xb7\xfe\x3f\x77\xff\x7d\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x8b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x4b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x4b\xe3\x96\x4e\xf6" "\xbf\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xcf\xff\x1f\x7f\x7d\xfd\xff\x32\xe9" "\xff\xa7\xe9\xff\x57\xd0\xff\x5f\xb6\x9f\xbf\x4d\xff\xaf\xff\xd7\xff\x73" "\xd4\x05\xfb\xff\x77\x26\xbe\x6c\xaf\xa5\xff\xcf\xdd\xff\x65\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xcb\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x2b\xe3\x96" "\x4e\xf6\xbf\xfe\xff\x62\xfd\xff\x59\x35\x8a\xfe\xff\xf8\xfb\xd7\xff\x8f" "\xff\xfc\x68\xae\xff\x3f\xfd\x53\xef\x80\xfe\x7f\x9c\xfe\x7f\x3b\xf4\xff" "\xd3\x66\xd3\xff\xef\x5d\x19\xfd\xb0\xfe\x7f\xf1\xfd\xbf\xe7\xff\xeb\xff" "\xf5\xff\x1c\x33\xb7\xe7\xff\xe7\xee\xff\xaa\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\xd5\x71\xcb\xc4\xfe\xbf\xf0\x3f\xcc\x07\x00\x00\x00" "\x76\x2a\x77\xff\xd7\xc4\x2d\xbe\xff\x0f\x00\x00\x00\x8b\x97\xd5\x59\xee" "\xfe\xaf\x8d\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\x3d\xff\x7f" "\xfc\xf5\xa7\xfa\xff\x67\x8e\xbc\x3f\xfd\xff\xbc\xe8\xff\xa7\xcd\xa6\xff" "\x3f\x83\xfe\x5f\xff\xbf\xe4\xf7\xaf\xff\xd7\xff\x73\xda\xdc\xfa\xff\xdc" "\xfd\x5f\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8f\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x6f\x88\x5b\x3a\xd9\xff\xe3\xfd\xff\xcd\xff\x5e\xff\x7f\x3e\xfa" "\xff\xe3\xef\x5f\xff\x3f\xfe\xf3\x63\x5d\xfd\x7f\xfe\x15\xf5\xff\x93\xfd" "\xff\x47\x79\xfe\x7f\x9f\xf4\xff\xd3\xb6\xdf\xff\x5f\xd5\xff\x1f\xff\xeb" "\xeb\xff\x37\x68\xd7\xef\xbf\xf1\xfe\xff\xda\xaa\xcf\xd7\xff\x33\x66\x6e" "\xfd\x7f\xee\xfe\x07\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x83" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x8d\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x4d\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\xff\xe5" "\xf5\xff\x9e\xff\x7f\x68\x97\xcf\xff\x1f\xb6\xde\xff\x5f\xd1\xff\x9f\x93" "\xfe\x7f\x9a\xe7\xff\xaf\xa0\xff\xd7\xff\xeb\xff\x3d\xff\x9f\xb5\x9a\x5b" "\xff\x9f\xbb\xff\xa1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\x78\xe8\xed\xe1" "\x60\xf7\x7f\xf3\x30\xd8\xff\x00\x00\x00\xb0\x44\x47\xff\xdd\x81\x93\xff" "\x42\x69\xc8\xdd\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xad" "\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf\x7f\xd1" "\xfe\x7f\xd5\x83\x91\x3d\xff\x7f\x3b\xf4\xff\xd3\xf4\xff\x2b\xe8\xff\x37" "\xd1\xcf\x5f\x69\xac\xff\x7f\xf8\xac\xcf\x9f\x43\xff\x7f\xaf\xfe\x9f\x99" "\x39\xd6\xff\x3f\x77\xf3\xe3\xbb\xea\xff\x73\xf7\x7f\x5b\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xce\xb8\xa5\x93" "\xfd\xbf\xf1\xfe\x7f\x22\x88\xd5\xff\xeb\xff\xf5\xff\xfa\xff\x96\xfa\xff" "\x55\xf4\xff\xdb\xa1\xff\x9f\xa6\xff\x5f\x41\xff\xef\xf9\xff\x9e\xff\xaf" "\xff\x67\xad\x6e\xf6\xff\xc7\xbf\x1e\xee\xaa\xff\xcf\xdd\xff\x5d\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbb\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9e\xb8" "\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\xfa\xff" "\x65\xd2\xff\x4f\xd3\xff\xaf\x10\xbf\x15\xd4\xff\xeb\xff\xf5\xff\xfa\x7f" "\xd6\xe3\xd8\xf3\xff\x8f\xd8\x55\xff\x9f\xbb\xff\x91\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\x68\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x6f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x5f\xdc\xd2\xc9\xfe" "\xd7\xff\x6f\xb6\xff\xcf\x8f\xeb\xff\xf5\xff\x83\xfe\x5f\xff\xaf\xff\xdf" "\x8a\x6e\xfb\xff\xbd\xb1\x5f\x89\x4e\x3b\xa3\xff\x7f\xf1\x93\xae\x7f\xcc" "\xf1\x8f\xf4\xda\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x67\xad\x66\xd1\xff" "\xdf\xb8\xf9\xbb\xcb\xdc\xfd\xdf\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x30\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x28\x6e\xb9\xe0\xfe\xff\xe0\xb5\xbe" "\xab\xed\xd1\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x7f\x7d\xfd\xff\x32" "\x75\xdb\xff\x9f\x93\xe7\xff\xaf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5" "\x2c\xfa\xff\x23\x7f\x9e\xbb\xff\x87\xe3\x16\xdf\xff\x07\x00\x00\x80\x66" "\xe4\xee\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xd1\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xb1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xf1\xd7\xbf\xd5\xfe\x7f\x7f\x18\xa7\xff\xdf\x0e" "\xfd\xff\x34\xfd\xff\x0a\xfa\xff\xa6\xfa\xff\x8f\x1d\x86\x41\xff\xaf\xff" "\x67\xb7\xe6\xd6\xff\xe7\xee\x7f\x2c\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x3f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x1e\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\x9e\xff\xbf\x4c\xfa\xff\x69\xfa\xff\x61" "\x18\x9e\x98\x78\x03\x63\xfd\xff\x8d\xab\xfa\xff\x85\xf6\xff\x9e\xff\xaf" "\xff\x67\xf7\xe6\xd6\xff\xe7\xee\xff\xc9\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\xff\x44\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x19\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x15\xb7\x74\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xff\x8e\xfb\xff\xf7\xe9\xff\xf5\xff\xfa\xff\x75\xd2\xff\x4f\xd3" "\xff\xaf\xe0\xf9\xff\xfa\x7f\xfd\xbf\xfe\x9f\xb5\x9a\x5b\xff\x9f\xbb\xff" "\xa9\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x74\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xff\x74\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x13\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\x6f\xa4\xff\xbf" "\xae\xff\x3f\x49\xff\xbf\x1d\x9b\xeb\xff\x07\xfd\xff\x46\xfb\xff\x77\x3f" "\x68\xd0\xff\xeb\xff\x17\xfe\xfe\xf5\xff\xfa\x7f\x4e\xdb\x56\xff\xff\x4e" "\x7c\xbd\x5f\xd5\xff\xe7\xee\xff\x99\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d" "\xc8\xdd\xff\x6c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x6c\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x5c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xcf\xff\x1f\x7f\x7d\xfd\xff\x32\x79\xfe\xff\xb4\xf9\xf6" "\xff\x87\xf4\xff\xfa\xff\x25\xbf\x7f\xfd\xbf\xfe\x9f\xd3\xb6\xd5\xff\x9f" "\xd5\xfb\x9f\xfc\xf3\xdc\xfd\x3f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xe7\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x17\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f" "\xbc\xff\x1f\x06\xfd\xbf\xfe\x5f\xff\x7f\x68\x0b\xfd\xff\xfe\xa0\xff\x5f" "\x3b\xfd\xff\x34\xfd\xff\x0a\xfa\xff\x36\xfb\xff\xf7\x0d\x0d\xf5\xff\xd7" "\xce\xfc\x7c\xfd\x3f\x73\x34\xb7\xfe\x3f\x77\xff\x2f\xc6\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x5f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x5f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\x89\x5b\x5a\xda" "\xff\xef\x9e\x9d\xbe\x2d\xbf\xff\xbf\x7a\xe2\x13\xf5\xff\xc3\x30\xbc\x76" "\x8f\xe7\xff\xeb\xff\x27\x5e\x5f\xff\x3f\x9b\xfe\xbf\xfe\xae\xea\xff\xd7" "\x47\xff\x3f\x4d\xff\xbf\x82\xfe\xbf\xcd\xfe\xdf\xf3\xff\xf5\xff\xec\xcc" "\xdc\xfa\xff\xdc\xfd\xbf\x1a\xb7\xb4\xb4\xff\x01\x00\x00\xa0\x73\xb9\xfb" "\x7f\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x3d\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x7f\x23\x6e\xe9\x64\xff\x2f\xbf\xff\x3f\xf9\x89" "\xfa\xff\xe1\x52\xcf\xff\xd7\xff\x1f\x7c\x40\xff\xaf\xff\xd7\xff\x2f\xd6" "\x65\xfb\xfb\x47\xf6\xe3\xd7\x34\xfd\xbf\xfe\x5f\xff\x3f\xda\xcf\xef\x9d" "\xf1\xfb\x9e\x41\xff\xaf\xff\xd7\xff\x33\x62\x6e\xfd\x7f\xee\xfe\xdf\x8c" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\xc4\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x8b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x5b" "\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\x2f\xb3\xff\xdf\xd7\xff\xeb\xff" "\xf5\xff\xa3\xe6\xf2\xfc\xff\x3b\xef\xfc\xe8\x97\xf5\xff\xfa\xff\x16\xfb" "\xff\x29\xfa\x7f\xfd\xbf\xfe\x9f\x93\xe6\xd6\xff\xe7\xee\xff\xed\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x3b\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x5e\x3a\x08\x39\xf7" "\x87\xdf\x1d\x86\x2e\xf7\xff\xe9\xfe\xff\xb6\xe1\xb0\x50\x3d\x34\xd6\xff" "\x47\xa3\xa6\xff\x3f\x42\xff\x7f\xfc\xfd\xeb\xff\xc7\x7f\x7e\x78\xfe\xbf" "\xfe\x5f\xff\xbf\x79\x73\xe9\xff\x3d\xff\xff\xd6\xde\xbf\xfe\x5f\xff\xbf" "\xe4\xf7\x7f\xa1\xfe\xff\xc3\x4e\x7f\xbe\xfe\x9f\x16\xcd\xad\xff\xcf\xdd" "\xff\x72\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xbd\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x25\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x5f\x8d\x5b\x3a\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3" "\xaf\xaf\xff\x5f\x26\xfd\xff\x34\xfd\xff\x0a\xfa\xff\xcb\xf7\xf3\xf9\x55" "\x55\xff\xbf\xdc\xe7\xff\x7f\x80\xfe\x9f\xf5\x99\x5b\xff\x9f\xbb\xff\xf7" "\xe3\x96\x83\xe1\xf7\xe1\x1f\x78\x8b\xff\x33\x01\x00\x00\x80\x19\xc9\xdd" "\xff\x07\x71\x4b\x27\xdf\xff\x07\x00\x00\x80\x1e\xe4\xee\xff\xc3\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xa3\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xf1\xd7\xd7\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x85" "\x7e\xfa\xff\xfd\xb1\x0f\xee\xba\x9f\xbf\xac\x5d\xbf\xff\x66\xfa\x7f\xcf" "\xff\x67\x8d\xe6\xd6\xff\xe7\xee\xff\xe3\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x6d\x7b\xfb\xe0\x8f\xb9\xfb\xff\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xff\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x8b\x5b\x3a\xd9" "\xff\xfa\x7f\xfd\x7f\xfb\xfd\xff\x27\xe8\xff\x4f\xbc\xbe\xfe\x5f\xff\xdf" "\x32\xfd\x7f\xfe\x8a\x3e\x4e\xff\xbf\x42\x3f\xfd\xff\xa8\x5d\xf7\xf3\x4b" "\x7f\xff\xfa\x7f\xfd\x3f\xa7\xcd\xad\xff\xcf\xdd\xff\x7a\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\xf3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x8b\xb8\xa5\x89" "\xfd\x7f\x65\xe5\x8f\xd0\xff\xf7\xd5\xff\xef\x0d\x3d\xf6\xff\x9e\xff\xaf" "\xff\xd7\xff\x77\xa0\x92\xf7\xe5\xf4\xff\x8f\x8e\xfe\x22\xed\xf9\xff\xfa" "\x7f\xfd\xff\x72\xdf\xbf\xfe\x5f\xff\xcf\x69\x73\xeb\xff\x73\xf7\xbf\xb1" "\x77\xa5\xc1\xfd\x0f\x00\x00\x00\xed\xfa\xb8\x8f\xf8\xe4\xd7\xcf\xfb\x63" "\xdf\x38\xf8\xe3\xfe\xf0\x97\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x57\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd7\x71\x4b\x27\xfb\x5f" "\xff\xdf\x57\xff\xdf\xe7\xf3\xff\xf5\xff\xfa\x7f\xfd\x7f\x4f\x96\xd3\xff" "\x8f\xd3\xff\xeb\xff\xf5\xff\xcb\x7d\xff\xfa\x7f\xfd\x3f\xa7\xcd\xad\xff" "\xcf\xdd\xff\x37\x71\xcb\x91\xe1\xb7\xfa\xff\x45\x0f\x00\x00\x00\xd8\xaa" "\xdb\x2f\xf6\xc3\x73\xf7\xff\x6d\xdc\xd2\xc9\xf7\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\xff\x2e\x6e\x39\xb5\xff\x6f\x9c\xf3\xdf\x6a\x07\x00\x00\x00\xe6" "\x26\x77\xff\xdf\xc7\x2d\x9d\x7c\xff\x5f\xff\x3f\xf3\xfe\x7f\xd8\x50\xff" "\x1f\x3f\x4e\xff\x7f\x48\xff\xaf\xff\x1f\x7b\x7d\xfd\xff\x32\xe9\xff\xa7" "\x5d\xb2\xff\xbf\xb1\xa7\xff\xd7\xff\x4f\x58\x40\xff\xbf\xbf\xc9\xf7\xaf" "\xff\xd7\xff\x73\xda\xdc\xfa\xff\xdc\xfd\xcf\x3e\x35\x74\xb9\xff\x01\x00" "\x00\xa0\x51\xc7\xfe\x89\xc2\x3f\x1c\xfc\x71\x7f\xf8\xc7\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xa7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\xe7\xb8\xa5\x93\xfd\xaf\xff\x9f\x79\xff\x7f\x4b\xcf\xff\xbf\x56\xff" "\xc9\xf3\xff\x3b\xef\xff\xef\xdf\x1f\x7d\x7d\xfd\x7f\x13\xfd\xff\xde\xd8" "\xd7\x1d\xf4\xff\xab\x78\xfe\xff\x0a\xfa\xff\xd6\xfb\xff\x8d\xbe\x7f\xfd" "\xbf\xfe\x9f\xd3\x2e\xd0\xff\x1f\x0c\xd2\x4d\xf7\xff\xb9\xfb\xff\x25\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x6b\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x5b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x7b" "\xdc\xd2\xc9\xfe\xd7\xff\xef\xa0\xff\x7f\xe0\xea\x30\x6c\xb4\xff\x3f\xc7" "\xf3\xff\xf5\xff\x7d\xf4\xff\x67\xbc\x7e\x3b\xfd\xff\x87\xdc\x71\xfd\x85" "\x8f\xff\xc4\x27\x1f\xeb\xb2\xff\xf7\xfc\xff\x33\x6c\xb3\xff\xcf\x9f\x0b" "\xfa\x7f\xfd\xbf\xfe\xff\x90\xfe\x5f\xff\xaf\xff\xe7\xa4\xb9\x3d\xff\x3f" "\x77\xff\x7f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x37\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3f\xe3\x96\xf7\xf6\xff\xf3\xbb\x7a" "\x57\x00\x00\x00\xc0\x3a\xe5\xee\xff\xaf\xb8\xa5\x93\xef\xff\xeb\xff\x5b" "\x7c\xfe\xff\x32\xfb\xff\xfc\x7b\xbd\x83\xfe\xff\xfa\xf2\xfa\xff\x6c\x8a" "\x7b\xef\xff\xbb\x7e\xfe\xbf\xfe\xff\x0c\x9e\xff\x3f\x4d\xff\xbf\x82\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x73\xeb\xff\x73\xf7\xff\x77\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x9f\xb8\x25\xf7\xff\xde\x85\xff\xd1" "\x3d\x00\x00\x00\x30\x33\xb9\xfb\xdf\x8a\x5b\x7c\xff\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xed\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x6f\xa0\xff\xbf\xe6\xf9" "\xff\xe3\x3f\x3f\x3c\xff\x5f\xff\xaf\xff\xdf\x3c\xfd\xff\x34\xfd\xff\x0a" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\xff\xbf\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9d\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xff\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xcf\xe5\xf9\xff\x49\xff\x7f\xf3\xf3\xf4\xff" "\x87\xf4\xff\xfa\xff\x8b\xd0\xff\x4f\xd3\xff\xaf\xa0\xff\xd7\xff\xeb\xff" "\xf5\xff\xac\xd5\xdc\xfa\xff\xdc\xfd\xef\x0f\x00\x00\xff\xff\x0c\x79\x66" "\x84", 25273); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x2000000000c0, /*flags=*/0, /*opts=*/0x200000006600, /*chdir=*/1, /*size=*/0x62b9, /*img=*/0x2000000097c0); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // mode: open_mode = 0x18 (8 bytes) // ] // returns fd memcpy((void*)0x200000000e40, "./file1\000", 8); syscall(__NR_creat, /*file=*/0x200000000e40ul, /*mode=S_IXGRP|S_IWGRP*/ 0x18ul); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0x40441 (4 bytes) // mode: open_mode = 0x6 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=O_NOATIME|O_CREAT|O_APPEND|O_WRONLY*/ 0x40441, /*mode=S_IWOTH|S_IROTH*/ 6); // syz_mount_image$exfat arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x1420 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x2000000001c0, "./file0\000", 8); syz_mount_image(/*fs=*/0, /*dir=*/0x2000000001c0, /*flags=MS_REMOUNT|MS_NOATIME|MS_BIND*/ 0x1420, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000140); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); use_temporary_dir(); loop(); return 0; }