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