// https://syzkaller.appspot.com/bug?id=5bbb1db068d29f02e8ffae7409bf0bfb3235892a // 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_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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x1c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x5fb0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5fb0) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000380, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy( (void*)0x2000000080c0, "\x78\x9c\xec\xdd\x5b\x6f\x1c\x67\xfd\x07\xf0\xdf\x1e\xbc\x3e\xf4\xdf\x34" "\xaa\xfe\xaa\x42\xc4\x85\x9b\x42\x69\x29\xcd\x39\x81\x72\x6a\xca\x05\x17" "\x80\x04\x12\xca\x35\x89\x5c\xb7\x0a\xa4\x05\x25\x06\xd1\xca\x22\xae\x7c" "\x81\xb8\xe0\xf0\x12\xe0\xa6\x37\x5c\xf4\x8d\x14\x89\x57\x80\x78\x01\x44" "\xb2\xb9\xaa\x04\x65\xd0\xd8\xcf\x93\x8c\xd7\x6b\xaf\x43\xe2\x9d\xb5\x9f" "\xcf\x47\xda\xcc\xfc\xf6\x99\xf1\x3e\x93\xaf\xc7\x7b\x98\x99\x7d\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7c\xfb\x87\x17" "\x3a\x11\x71\xe3\x17\xe9\x8e\x93\x11\xff\x17\xbd\x88\x6e\xc4\x7c\x5d\x2f" "\x46\x3d\x73\x2d\x2f\xdf\x8f\x88\x53\xb1\xd5\x1c\xcf\x45\x44\x6f\x36\xa2" "\x5e\x7f\xeb\x9f\x67\x22\x2e\x47\xc4\xc7\x27\x22\x36\x36\x57\x97\xea\xbb" "\x2f\x1e\xb0\x1f\x57\xce\xaf\xdc\xf9\xf4\xbb\xdf\xfa\xdb\xaf\x7f\xbf\x7e" "\xea\xc7\x6f\xfe\xe8\xc3\xe1\xf6\x1f\xfc\xff\xa5\x8f\x7e\x73\x2f\xe2\xe4" "\xf7\x5f\xfb\xe8\xd3\x7b\x4f\x66\xdb\x01\x00\x00\xa0\x14\x55\x55\x55\x9d" "\xf4\x36\xff\x74\x7a\x7f\xdf\x6d\xbb\x53\x00\xc0\x44\xe4\xe7\xff\x2a\xc9" "\xf7\xab\xd5\x05\xd6\x9d\x74\x44\x6b\x5a\xfa\xa3\x3e\x5e\xf5\xef\xba\xd3" "\xd5\x1f\x75\xa1\x75\x53\x35\xda\xbd\x66\x11\x11\x6b\xcd\x75\xea\xd7\x0c" "\x0e\xc7\x03\xc0\x11\xb3\x16\x9f\xb4\xdd\x05\x5a\x24\xff\xa2\xf5\x23\xe2" "\xa9\xb6\x3b\x01\x4c\xb5\x4e\xdb\x1d\xe0\x50\x6c\x6c\xae\x2e\xe5\x0f\xbb" "\x3b\xcd\xe7\x83\xc5\xed\xf6\xfc\x39\xe5\x8e\xfc\xd7\x3a\x0f\xae\xef\xd8" "\x6b\x3a\xce\xf0\x39\x26\x93\xfa\xfd\x5a\x8f\x5e\x3c\xbb\x47\x7f\xe6\x27" "\xd4\x87\x69\x92\xf3\xef\x0e\xe7\x7f\x63\xbb\x7d\x90\x96\x3b\xec\xfc\x27" "\x65\xaf\xfc\x07\xdb\x97\x3e\x15\x27\xe7\xdf\x1b\xce\x7f\xc8\x8e\xfc\xff" "\x10\x11\x47\x36\xff\xee\xc8\xfc\x4b\x95\xf3\xef\x3f\x4a\xfe\x6b\xbd\x23" "\xbc\xff\xcb\x1f\x00\x00\x00\x00\x80\xe3\x2f\x7f\xfe\x7f\xb2\xe5\xe3\xbf" "\xb3\x8f\xbf\x29\x07\xb2\xdf\xf1\xdf\xc5\x09\xf5\x01\x00\x00\x00\x00\x00" "\x00\x00\x9e\xb4\xc7\x1d\xff\xef\x01\xe3\xff\x01\x00\x00\xc0\xd4\xaa\xdf" "\xab\xd7\xfe\x78\xe2\xe1\x7d\x7b\x7d\x17\x5b\x7d\xff\xf5\x4e\xc4\xd3\x43" "\xcb\x03\x85\x49\x17\xcb\x2c\xb4\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x28\x49\x7f\xfb\x1c\xde\xeb\x9d\x88\x99\x88\x78\x7a\x61\xa1\xaa" "\xaa\xfa\xd6\x34\x5c\x3f\xaa\xc7\x5d\xff\xa8\x2b\x7d\xfb\xa1\x64\x6d\xff" "\x91\x07\x00\x80\x6d\x1f\x9f\x48\xd7\xf2\xe7\x01\xf8\x3a\x11\x73\x11\x71" "\x3d\x7d\xd7\xdf\xcc\xc2\xc2\x42\x55\xcd\xcd\x2f\x54\x0b\xd5\xfc\x6c\x7e" "\x3d\x3b\x98\x9d\xab\xe6\x1b\xef\x6b\xf3\xb4\xbe\x6f\x76\x70\x80\x17\xc4" "\xfd\x41\x55\xff\xb0\xb9\xc6\x7a\x4d\xe3\xde\x2f\x8f\x6b\x1f\xfe\x79\xf5" "\x63\x0d\xaa\xde\x01\x3a\x36\x19\x2d\x87\x0e\x40\xf1\xb6\x9f\x8d\x36\x3c" "\x23\x1d\x33\x55\xf5\x4c\xb4\xfd\x2a\x87\xa3\xc1\xfe\x7f\xfc\xd8\xff\x39" "\x88\xb6\x7f\x4f\x01\x00\x00\x80\xc3\x57\x55\x55\xd5\x49\x5f\xe7\x7d\x3a" "\x1d\xf3\xef\xb6\xdd\x29\x00\x60\x12\xe6\xf2\xf3\xff\xf0\x71\x01\xb5\x5a" "\xad\x56\xab\xd5\xc7\xaf\x6e\xaa\x46\xbb\xd7\x2c\x22\x62\xad\xb9\x4e\xfd" "\x9a\xc1\x70\xfc\x00\x70\xc4\xac\xc5\x27\x6d\x77\x81\x16\xc9\xbf\x68\xfd" "\x88\x38\xd5\x76\x27\x80\xa9\xd6\x69\xbb\x03\x1c\x8a\x8d\xcd\xd5\xa5\x4e" "\xca\xb7\xd3\x7c\x3e\x48\xe3\xbb\xe7\x73\x41\x76\xe4\xbf\xd6\xd9\x5a\x2f" "\xaf\x3f\x6a\x3a\xce\xf0\x39\x26\x93\xfa\xfd\x5a\x8f\x5e\x3c\xbb\x47\x7f" "\x9e\x9b\x50\x1f\xa6\x49\xce\xbf\x3b\x9c\xff\x8d\xed\xf6\x41\x5a\xee\xb0" "\xf3\x9f\x94\xbd\xf2\xaf\xb7\xf3\x64\x0b\xfd\x69\x5b\xce\xbf\x37\x9c\xff" "\x90\xe3\x93\x7f\x77\x64\xfe\xa5\xca\xf9\xf7\x1f\x29\xff\x9e\xfc\x01\x00" "\x00\x00\x00\x60\x8a\xe5\xcf\xff\x4f\x96\x7b\xfc\xb7\x97\xfb\xb3\x38\xa1" "\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x93\xb6\xb1\xb9\xba\x94\xaf\x7b\xcd" "\xc7\xff\x3f\x3b\x62\xb9\x4e\x73\xce\xf5\x9f\xc7\x46\xce\xbf\x73\xe0\xfc" "\x5d\xff\x7b\x9c\xe4\xfc\xbb\xc3\xf9\x0f\x9d\x90\xd3\x6b\xcc\xdf\x7f\xe3" "\x61\xfe\xff\xdc\x5c\x5d\xfa\x70\xe5\x1f\x9f\xc9\xd3\xa9\xcf\x7f\xa6\x37" "\xa8\x1f\x7b\xa6\xd3\xed\xf5\xd3\x39\x3f\xd5\xcc\x5b\x71\x2b\x6e\xc7\x72" "\x9c\xdf\xb5\x7c\x7f\x47\xfb\x85\x5d\xed\x33\x3b\xda\x2f\x8e\x69\xbf\xb4" "\xab\x7d\x50\xb7\xcf\xe7\xf6\xb3\xb1\x14\x3f\x8d\xdb\xf1\xe6\x83\xf6\xd9" "\x31\x27\x46\xcd\x8d\x69\xaf\xc6\xb4\xe7\xfc\x7b\xf6\xff\x22\xe5\xfc\xfb" "\x8d\x5b\x9d\xff\x42\x6a\xef\x0c\x4d\x6b\xf7\x3f\xe8\xee\xda\xef\x9b\xd3" "\x51\x8f\x73\xed\xcf\xff\x7e\x71\xf7\xde\x35\x79\xeb\xd1\x7b\xb0\x6d\x4d" "\xf5\xf6\x9d\x69\xa1\x3f\x5b\xff\x27\x4f\x0d\xe2\xe7\x77\x97\xef\x9c\xfd" "\xe5\xcd\x95\x95\x3b\x17\x22\x4d\x76\xdc\x7b\x31\xd2\xe4\x09\xcb\xf9\xcf" "\xa4\x5b\xce\xff\xa5\x17\xb6\xdb\xf3\xdf\xfd\xe6\xfe\x7a\xff\x83\xc1\x23" "\xe7\x3f\x2d\xd6\xa3\xbf\x67\xfe\x2f\x34\xe6\xeb\xed\x7d\x79\xc2\x7d\x6b" "\x43\xce\x7f\x90\x6e\x39\xff\xfc\x0c\x34\x7a\xff\x3f\xca\xf9\xef\xbd\xff" "\xbf\xd2\x42\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x3f" "\x55\x55\x6d\x5d\x22\x7a\x2d\x22\xae\xa6\xeb\x7f\xda\xba\x36\x13\x00\x98" "\xa8\xdf\x7e\x2f\xcd\x54\x49\xa8\xd5\x6a\xb5\x5a\xad\x3e\xb6\x75\x53\x35" "\xda\xeb\xcd\x22\xe6\x76\xae\x73\x35\x22\x7e\x35\xea\x87\x01\x00\xd3\xec" "\x3f\x11\xf1\xf7\xb6\x3b\x41\x6b\xe4\x5f\xb0\xfc\x7d\x7f\xf5\xf4\x73\x6d" "\x77\x06\x98\xa8\xbb\xef\xbd\xff\x93\x9b\xb7\x6f\x2f\xdf\xb9\xdb\x76\x4f" "\x00\x00\x00\x00\x00\x00\x00\x80\xff\x55\x1e\xff\x73\xb1\x31\xfe\xf3\xd6" "\x79\x40\x43\xe3\x46\xef\x18\xff\xf5\x8d\x58\x3c\xb2\xe3\x7f\x76\x07\xbd" "\xad\xb1\xce\xd3\x06\x3d\x1f\xfb\x8f\xff\x7d\x26\xf6\x1f\xff\xbb\x3f\xe6" "\xf1\x66\xc6\xb4\x0f\xc6\xb4\xcf\x8e\x69\x9f\x1b\xd3\x3e\xf2\x42\x8f\x86" "\x9c\xff\xf3\x29\xe3\x9c\xff\xe9\xb4\x61\x25\x8d\xff\xfa\x52\x0b\xfd\x69" "\x5b\xce\xff\x4c\x1a\xeb\x39\xe7\xff\x85\xa1\xe5\x9a\xf9\x57\x7f\x3a\xca" "\xf9\x77\x77\xe4\x7f\x6e\xe5\x9d\x9f\x9d\xbb\xfb\xde\xfb\xaf\xde\x7a\xe7" "\xe6\xdb\xcb\x6f\x2f\xbf\x7b\xe1\xfc\xd5\xcb\x97\xae\x5c\xbe\x74\xe5\xca" "\xb9\xb7\x6e\xdd\x5e\x3e\xbf\xfd\x6f\x8b\x3d\x3e\x5c\x39\xff\x3c\xf6\xb5" "\xf3\x40\xcb\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff\xcf\xa7\x5a\xfe\x65\xc9" "\xf9\xbf\x98\x6a\xf9\x97\x25\xe7\x9f\x5f\xef\xc9\xbf\x2c\x39\xff\xfc\xde" "\x47\xfe\x65\xc9\xf9\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\xc5\x54\xcb\xbf\x2c" "\x39\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xbf\x94\x6a\xf9\x97\x25\xe7\xff\x6a" "\xaa\xe5\x5f\x96\x9c\xff\xd9\x54\xcb\xbf\x2c\x39\xff\x73\xa9\x96\x7f\x59" "\x72\xfe\xf9\x08\x97\xfc\xcb\x92\xf3\xcf\x67\x36\xc8\xbf\x2c\x39\xff\x8b" "\xa9\x96\x7f\x59\x72\xfe\x97\x52\x2d\xff\xb2\xe4\xfc\x2f\xa7\x5a\xfe\x65" "\xc9\xf9\x5f\x49\xb5\xfc\xcb\x92\xf3\xbf\x9a\x6a\xf9\x97\x25\xe7\xff\xe5" "\x54\xcb\xbf\x2c\x39\xff\xaf\xa4\x5a\xfe\x65\xc9\xf9\xbf\x96\x6a\xf9\x97" "\x25\xe7\xff\xd5\x54\xcb\xbf\x2c\x39\xff\xaf\xa5\x5a\xfe\x65\xc9\xf9\x7f" "\x3d\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc" "\xcb\x92\xf3\x7f\x3d\xd5\xf2\x2f\xcb\xc3\xef\xff\x37\x33\xe1\x99\x7f\xfd" "\x25\x62\x0a\xba\x61\xa6\xd4\x99\x77\xff\xba\xdf\x32\x6d\xff\x65\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x86\x4d\xe2\x4c\xe3\xb6\xb7\x11\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf8\x2f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46" "\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\x67" "\x00\x3f\xfb\x65\xaf\x9d\x40\x5c\x12\x42\x08\x86\xac\x1d\x27\x18\xb2\xf1" "\xee\xfa\x2b\x31\xc1\xe0\x00\xa1\x69\x68\x69\x1a\x08\x2d\x6d\xa8\x63\xec" "\xf5\x07\xf8\xab\xde\x35\x24\x51\xd4\x6c\x9a\xb4\x0d\x22\x52\x23\xb5\x17" "\xe9\x45\x29\x20\x8a\x90\xda\x2a\x11\x42\x2a\x95\x52\x14\xa9\x48\xed\x5d" "\x73\x05\xca\x0d\x6a\xa5\x5c\x58\x6a\x52\x99\x08\x2a\x51\x25\xd9\xea\xcc" "\x79\xdf\x77\x67\x66\x67\x67\xd6\x1f\x6b\xcf\x39\xe7\xf7\x8b\xe2\xbf\x77" "\xe6\xcc\xcc\x3b\x67\xce\xcc\xee\xb3\xd6\x33\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\x40\xb3\x0d" "\x1f\x9f\xfe\xf3\x81\x2c\xcb\xf2\xff\x1b\x7f\xac\xcb\xb2\x2b\xf3\xbf\xaf" "\xc9\xf6\xe4\x5f\xce\xed\xbc\xdc\x2b\x04\x00\x00\x00\x2e\xd4\x9b\x8d\x3f" "\xff\xe1\xaa\x74\xc2\x9e\x65\x5c\xa8\x69\x9b\x7f\x7b\xdf\x7f\xfc\x60\x7e" "\x7e\x7e\x3e\xfb\xe2\xeb\x67\xde\xfa\xcb\xf9\xf9\x74\xc6\x58\x96\x0d\xad" "\xce\xb2\xc6\x79\xd1\xbf\xff\xea\x97\xf3\xcd\xdb\x04\x4f\x64\xa3\x03\x83" "\x4d\x5f\x0f\xf6\xb8\xf9\xa1\x1e\xe7\x0f\xf7\x38\x7f\xa4\xc7\xf9\xab\x7a" "\x9c\xbf\xba\xc7\xf9\xa3\x3d\xce\x5f\xb4\x03\x16\x59\x53\xfc\x3e\xa6\x71" "\x65\x9b\x1a\x7f\x5d\x57\xec\xd2\xec\x9a\x6c\xa4\x71\xde\xa6\x0e\x97\x7a" "\x62\x60\xf5\xe0\x60\xfc\x5d\x4e\xc3\x40\xe3\x32\xf3\x23\x07\xb3\x23\xd9" "\xd1\x6c\x3a\x9b\x5c\x74\x99\x81\xc6\x7f\x59\xf6\xc2\x86\xfc\xb6\xee\xce" "\xe2\x6d\x0d\x36\xdd\xd6\xfa\x2c\xcb\xce\xfe\xfc\xd1\xfd\x71\x0d\x03\x61" "\x1f\x6f\xca\x5a\x6e\xac\xa1\xf9\xb1\x7b\xed\xce\x6c\xec\xf5\x9f\x3f\xba" "\xff\xbb\xb3\xaf\xbe\xbb\xd3\xec\xb9\x1b\x16\xad\x34\xcb\x36\x6f\xcc\xd7" "\xf9\x64\x96\x2d\xfc\xba\x2a\x1b\xc8\x56\xa7\x7d\x12\xd7\x39\xd8\xb4\xce" "\xf5\x1d\xd6\x39\xd4\xb2\xce\x81\xc6\xe5\xf2\xbf\xb7\xaf\xf3\xec\x32\xd7" "\x19\xef\xf7\x68\x58\xe7\x4b\x5d\xd6\xb9\x3e\x9c\xf6\xd0\x8d\x59\x96\xcd" "\x65\x4b\x6e\xd3\xee\x89\x6c\x30\x5b\xdb\x76\xab\x69\x7f\x8f\x16\x47\x44" "\x7e\x1d\xf9\x43\xf9\x8e\x6c\xf8\x9c\x8e\x93\x0d\xcb\x38\x4e\xf2\xcb\xbc" "\x72\x63\xeb\x71\xd2\x7e\x4c\xc6\xfd\xbf\x21\xec\x93\xe1\x25\xd6\xd0\xfc" "\x70\xbc\xf6\xf8\xaa\x45\xfb\xfd\x7c\x8f\x93\xfc\x5e\xf7\xc3\xb1\x9a\x5f" "\xf7\xbd\xf9\x8d\x8e\x8e\x36\xff\x6a\xb5\xe5\x58\xcd\xb7\x79\xf4\xa6\xa5" "\x8f\x81\x8e\x8f\x5d\x87\x63\x20\x1d\xcb\x4d\xc7\xc0\xc6\x5e\xc7\xc0\xe0" "\xaa\xa1\xc6\x31\x30\xb8\xb0\xe6\x8d\x2d\xc7\xc0\xd4\xa2\xcb\x0c\x66\x03" "\x8d\xdb\x3a\x73\x53\xf7\x63\x60\x62\xf6\xd8\xc9\x89\x99\x87\x1f\xb9\xf5" "\xc8\xb1\x7d\x87\xa6\x0f\x4d\x1f\x9f\x9a\xdc\xb9\x7d\xdb\x8e\xed\xdb\x76" "\xec\x98\x38\x78\xe4\xe8\xf4\x64\xf1\xe7\xb9\xed\xd2\x12\x59\x9b\x0d\xa6" "\x63\x70\x63\x78\xad\x89\xc7\xe0\xfb\xdb\xb6\x6d\x3e\x24\xe7\xbf\x75\xf1" "\x9e\x07\xa3\x7d\xf2\x3c\xc8\xef\xfb\x67\x6f\xce\x17\x74\xe5\x60\xb6\xc4" "\x31\x9e\x6f\xf3\xe4\xe6\x0b\x7f\x1e\xa4\xef\xfb\x4d\xcf\x83\xe1\xa6\xe7" "\x41\xc7\xd7\xd4\x0e\xcf\x83\xe1\x65\x3c\x0f\xf2\x6d\xce\x6e\x5e\xde\xf7" "\xcc\xe1\xa6\xff\x3b\xad\x61\xa5\x5e\x0b\xd7\x35\x1d\x03\x97\xf3\xfb\x61" "\x7e\x9b\x0f\x7c\x60\xe9\xd7\xc2\xf5\x61\x5d\x4f\x7d\xf0\x5c\xbf\x1f\x0e" "\x2d\x3a\x06\xe2\xdd\x1a\x08\xcf\xbd\xfc\x94\xf4\xf3\xde\xe8\xed\x61\xbf" "\x2c\x3e\x2e\xae\xcf\xcf\xb8\x62\x55\x76\x7a\x66\xfa\xd4\x96\x87\xf6\xcd" "\xce\x9e\x9a\xca\xc2\xb8\x24\xae\x6e\x7a\xac\xda\x8f\x97\xb5\x4d\xf7\x29" "\x5b\x74\xbc\x0c\x9e\xf3\xf1\xb2\xe7\xef\xdf\xb8\xf9\xfa\x0e\xa7\xaf\x0b" "\xfb\x6a\xf4\x96\xee\x8f\x55\xbe\xcd\xf6\xf1\xee\x8f\x55\xe3\xd5\xbd\x75" "\x7f\xae\xca\x8a\xfd\xd9\x72\xea\xd6\x2c\x8c\x8b\xec\x52\xef\xcf\x4e\xdf" "\xcd\xf2\xfd\x99\xb2\x44\x97\xfd\x99\x6f\xf3\xe4\xad\x17\xfe\xb3\x60\xca" "\x25\x4d\xaf\x7f\x23\xbd\x5e\xff\x86\x46\x86\x8b\xd7\xbf\xa1\xb4\x37\x46" "\x5a\x5e\xff\x16\x3f\x34\x43\x8d\x95\x65\xd9\xd9\x5b\x97\xf7\xfa\x37\x12" "\xfe\xbf\xd4\xaf\x7f\xd7\xf4\xc9\xeb\x5f\xbe\xaf\x1e\xd8\xd2\xfd\x18\xc8" "\xb7\x79\x6a\xe2\x5c\x8f\x81\xe1\xae\xaf\x7f\x37\x86\x39\x10\xd6\xf3\x81" "\x90\x18\x46\x9b\x72\xff\x5b\x8d\xf3\xe7\x8a\xc3\xb4\xe9\xb1\xec\x79\xdc" "\x0c\x0f\x8f\x84\xe3\x66\x38\xde\x62\xeb\x71\xb3\x6d\xd1\x65\xf2\x6b\xcb" "\x6f\x7b\xf3\xe4\xf9\x1d\x37\x9b\x6f\x6c\x7d\xac\x5a\x7e\x6e\xa9\xe0\x71" "\x93\xef\xab\xbf\x9a\xec\x7e\xdc\xe4\xdb\xbc\x38\x75\xe1\xaf\x1d\x6b\xe2" "\x5f\x9b\x5e\x3b\x56\xf5\x3a\x06\x46\x86\x56\xe5\xeb\x1d\x49\x07\x41\xf1" "\x7a\x37\xbf\x26\x1e\x03\x5b\xb2\xfd\xd9\x89\xec\x68\x76\x20\x5d\x26\x7f" "\x94\xf3\xdb\x1a\xdf\xba\xbc\x63\x60\x55\xf8\xff\x52\xbf\x76\x5c\xd7\x27" "\xc7\x40\xbe\xaf\x9e\xdd\xda\xfd\x18\xc8\xb7\xf9\xf1\xb6\x8b\xfb\xb3\xd3" "\xe6\x70\x4a\xda\xa6\xe9\x67\xa7\xf6\xdf\x2f\x2c\x95\xf9\xaf\x1f\x5e\xb8" "\xbe\xf6\xdd\x76\xb1\x33\x7f\xbe\xce\x4f\xfc\xe4\xd3\xe9\xb4\x4e\x19\x22" "\xdf\xe6\xd5\xed\xe7\x9a\x33\xba\xef\xa7\x5b\xc2\x29\x57\x74\xd8\x4f\xed" "\xcf\x9f\xa5\x8e\xe9\x03\xd9\xa5\xd9\x4f\xd7\x85\x75\x1e\xdd\xd1\xfd\x77" "\x53\xf9\x36\xd7\xec\x5c\xe6\xf1\xb4\x27\xcb\xb2\x97\xa7\x5e\x6e\xfc\xbe" "\x2b\xfc\x7e\xf7\xfb\xa7\x7f\xf2\x83\x96\xdf\xfb\x76\xfa\x9d\xf2\xcb\x53" "\x2f\xdf\x33\x71\xdf\x4f\xcf\x65\xfd\x00\x00\x9c\xbf\xb7\x1a\x7f\xce\xad" "\x2a\x7e\xd6\x6c\xfa\x17\xeb\xe5\xfc\xfb\x3f\x00\x00\x00\x50\x0a\x31\xf7" "\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x0f\x85\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x0f\x87\x99\xd4\x24\xff\x1f\xbe\x7d\xd7\x73\x6f" "\x3e\x96\xa5\x77\x03\x9c\x0f\xe2\xf9\x71\x37\xdc\xfb\x91\x62\xbb\xd8\xf1" "\x9e\x0b\x5f\x8f\xcd\x2f\xc8\x4f\xff\xd8\x77\x46\x9e\xfb\xda\x63\xcb\xbb" "\xed\xc1\x2c\xcb\xde\xb8\xe7\x3d\x1d\xb7\x3f\xfc\x91\xb8\xae\xc2\xc9\xb8" "\xce\x0f\xb5\x9e\xbe\xc8\x75\x37\x2c\xeb\xf6\x1f\xbc\x7f\x61\xbb\xe6\xf7" "\x4f\x38\xbb\xab\xb8\xfe\x78\x7f\x96\x7b\x18\xc4\xae\xf2\x0b\x13\x5b\x1b" "\xd7\x3b\xf6\xf0\x54\x63\xbe\x78\x4f\xd6\x98\xf7\xcd\x3d\xf5\x44\x71\xfd" "\xc5\xd7\x71\xfb\x33\xdb\x8a\xed\xff\x26\xbc\x69\xc9\x9e\x83\x03\x2d\x97" "\xdf\x1c\xd6\xb3\x29\xcc\xb1\xf0\x9e\x32\xf7\xee\x59\xd8\x0f\xf9\x8c\x97" "\x7b\x6e\xfd\xfb\xfe\xf5\xea\xcf\x2d\xdc\x5e\xbc\xdc\xc0\xc6\xb7\x37\xee" "\xe6\xb3\x7f\x5c\x5c\x6f\x7c\x8f\xa8\x67\xae\x2e\xb6\x8f\xf7\x7b\xa9\xf5" "\xff\xcb\xd7\xbf\xf7\x5c\xbe\xfd\x43\x37\x75\x5e\xff\x63\x83\x9d\xd7\x7f" "\x26\x5c\xef\x2b\x61\xfe\x6a\x77\xb1\x7d\xf3\x3e\xff\x5a\xd3\xfa\xff\x34" "\xac\x3f\xde\x5e\xbc\xdc\x96\x6f\xff\xa8\xe3\xfa\x9f\x7f\x57\xb1\xfd\xf3" "\xe1\xb8\xf8\x66\x98\xed\xeb\xbf\xf3\x2f\xde\xfb\x66\xa7\xc7\x2b\xde\xce" "\x9e\x3b\x8a\xcb\xc5\xdb\x9f\xfc\xdf\xed\x8d\xcb\xc5\xeb\x8b\xd7\xdf\xbe" "\xfe\xd1\xc7\xa6\x5a\xf6\x47\xfb\xf5\xbf\xf8\x7a\x71\x3d\xbb\xbf\xf2\x8b" "\xa1\xe6\xed\xe3\xe9\xf1\x76\xa2\x07\xef\x68\x3d\xbe\x07\xc2\xe3\xdb\xd2" "\x23\xcf\xb2\xec\x7b\x7f\x96\xb5\xec\xe7\xec\xc3\xc5\xe5\xfe\xb9\x6d\xfd" "\xf1\xfa\x4e\xde\xd1\x79\xfd\xb7\xb4\xad\xf3\xe4\xc0\x0d\x8d\xcb\x2f\xdc" "\x9f\x75\x2d\xf7\xeb\x1b\x7f\xb7\xb5\xe3\xfd\x8d\xeb\xd9\xf3\x8f\xeb\x5a" "\xee\xcf\x33\x77\x85\xfd\xf7\xfa\xc4\x8f\xf3\xeb\x3d\x73\x5f\x38\x1e\xc3" "\xf9\xff\xf7\x52\x71\x7d\xed\xef\x65\xfa\xfc\x5d\xad\xaf\x37\x71\xfb\x6f" "\xae\x2b\x9e\xb7\xf1\xfa\x26\xda\xd6\xff\x4c\xdb\xfa\xe7\x6e\xc8\xf7\x5d" "\xef\xf5\xdf\xfd\x7a\xb1\xfe\xe7\x3f\xba\xba\x65\xfd\x7b\x3e\x19\x8e\xa7" "\xbb\x8b\xd9\x6b\xfd\x87\xfe\xf6\xaa\x96\xcb\x7f\xeb\xbb\xc5\xe3\x71\xea" "\xab\xe3\xc7\x4f\xcc\x9c\x3e\x72\xa0\x69\xaf\x36\x3f\x8f\x57\x8f\xae\x59" "\x7b\xc5\x95\x6f\x7b\xfb\x55\xe1\xb5\xb4\xfd\xeb\xbd\x27\x66\x0f\x4f\x9f" "\x1a\x9b\x1c\x9b\xcc\xb2\xb1\x12\xbe\x65\xe0\x4a\xaf\xff\xdb\x61\xfe\x4f" "\x31\xe6\x2e\xfe\x2d\x14\x7e\xfa\x8b\xe2\xb8\x7b\xfa\x53\xc5\xf7\xad\xf7" "\xff\xb2\xf8\xfa\x99\x70\xfa\x83\xe1\xf1\x8c\xdf\x1f\xbf\xf1\xd7\x23\x2d" "\xc7\x6b\xfb\xe3\x3e\xf7\xd1\x62\x5e\xe8\xfa\x3f\x18\xd6\xb1\x5c\xef\xfa" "\xfa\x7f\xdd\xb0\xac\x0d\xcf\x7c\xe1\x85\xd3\xff\xf4\x27\xaf\xb6\xff\x5c" "\x10\xef\xcf\xc9\x77\x8e\x36\xee\xdf\xb3\x1b\xae\x6d\x9c\x37\xf0\x62\x71" "\x7e\xfb\xeb\x55\x2f\xff\xf9\xce\xd6\xe7\xf5\xcf\x86\x27\x1b\xf3\x87\x61" "\xbf\xce\x87\x77\x66\xde\x78\x6d\x71\x7b\xed\xd7\x1f\xdf\x9b\xe4\xe9\xcf" "\x14\xcf\xdf\xf8\x93\x5c\xbc\x7c\xd6\xf6\x7e\x22\xeb\x86\x5a\xef\xc7\x85" "\xae\xff\x67\xe1\xe7\x98\x1f\x5d\xd7\xfa\xfa\x17\x8f\x8f\x1f\x3e\xd6\xf6" "\x6e\xce\xeb\xb2\x81\x7c\x09\x73\xe1\xf5\x21\x9b\x2b\xce\x8f\x5b\xc5\xfd" "\xfd\xf4\xd9\x6b\x3b\xde\x5e\x7c\x1f\x9e\x6c\xee\xdd\xe7\xb2\xcc\x25\xcd" "\x3c\x3c\x33\x71\xf4\xc8\xf1\xd3\x0f\x4d\xcc\x4e\xcf\xcc\x4e\xcc\x3c\xfc" "\xc8\xde\x63\x27\x4e\x1f\x9f\xdd\xdb\x78\xef\xd2\xbd\x5f\xea\x75\xf9\x85" "\xe7\xf7\xda\xc6\xf3\xfb\xc0\xf4\xce\xed\x59\xe3\xd9\x7e\xa2\x18\x2b\xec" "\x72\xaf\xff\xe4\xfd\xfb\x0f\xdc\x36\x79\xf3\x81\xe9\x83\xfb\x4e\x1f\x9c" "\xbd\xff\xe4\xf4\xa9\x43\xfb\x67\x66\xf6\x4f\x1f\x98\xb9\x79\xdf\xc1\x83" "\xd3\x5f\xed\x75\xf9\x23\x07\x76\x4f\x6d\xdd\xb5\xed\xb6\xad\xe3\x87\x8e" "\x1c\xd8\x7d\xfb\xae\x5d\xdb\x76\x8d\x1f\x39\x7e\x22\x5f\x46\xb1\xa8\x1e" "\x76\x4e\x7e\x79\xfc\xf8\xa9\xbd\x8d\x8b\xcc\xec\xde\xbe\x6b\x6a\xc7\x8e" "\xed\x93\xe3\xc7\x4e\x1c\x98\xde\x7d\xdb\xe4\xe4\xf8\xe9\x5e\x97\x6f\x7c" "\x6f\x1a\xcf\x2f\xfd\x95\xf1\x53\xd3\x47\xf7\xcd\x1e\x39\x36\x3d\x3e\x73" "\xe4\x91\xe9\xdd\x53\xbb\x76\xee\xdc\xda\xf3\xdd\x1f\x8f\x9d\x3c\x38\x33" "\x36\x71\xea\xf4\xf1\x89\xd3\x33\xd3\xa7\x26\x8a\xfb\x32\x36\xdb\x38\x39" "\xff\xde\xd7\xeb\xf2\xd4\xc3\xcc\x89\xf0\x7a\xd7\x66\x20\xfc\x74\xfe\xf9" "\x5b\x76\xa6\xf7\xc7\xcd\x7d\xe7\xf1\x25\xaf\xaa\xd8\xa4\xf5\xc7\xd3\xec" "\xb5\xf0\x5e\x50\xf1\xfb\x5b\xaf\xaf\x63\xee\x1f\x09\x33\xa9\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xb9\x3f\xbc\xf1\xff\xc2\x19\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xab\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8b\xe4\x3f" "\x9a\x3e\xfe\xbd\x2e\xf9\xff\x62\xf5\xff\x1f\xd7\xff\x6f\xd0\xff\xd7\xff" "\xcf\xf4\xff\x13\xfd\x7f\xfd\xff\x4c\xff\x5f\xff\xbf\x07\xfd\x7f\xfd\xff" "\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x1f\x72\x7f\xb6\x26\xcb\xfc" "\xfb\x3f\x00\x00\x00\x54\x54\xcc\xfd\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xaf\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x32\xcc" "\xa4\x26\xf9\xdf\xe7\xff\xeb\xff\xeb\xff\x77\xeb\xff\xc7\x6d\xf5\xff\x33" "\xfd\xff\xcb\xd8\xff\x5f\x13\xfb\xf3\x9b\xfe\x5b\xff\x7f\x11\xfd\x7f\xfd" "\xff\x4c\xff\xff\xbc\x5d\xee\xfe\x7c\xd9\xd7\xdf\x87\xfd\xff\x35\xfa\xff" "\xf4\x9b\x7e\xeb\xff\xc7\xdc\xff\xb6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\xdf\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x55\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xba\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xdf\xef\xfd\x7f\x9f\xff\xdf\x8d\xfe\xbf" "\xfe\x7f\xa6\xff\x7f\xde\x2e\x77\x7f\xbe\xec\xeb\xef\xc3\xfe\xbf\xcf\xff" "\xa7\xef\xf4\x5b\xff\x3f\xe6\xfe\x5f\x0b\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\x1d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x13\x66\x52\x93\xfc\x5f\xcf" "\xfe\xff\x2b\x59\x96\xe9\xff\x67\xfa\xff\xfa\xff\x6d\xeb\xd4\xff\xd7\xff" "\x5f\x09\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff" "\xf4\xd6\x6f\xfd\xff\x98\xfb\xdf\x19\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\xb5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2e\xcc\xa4\x26\xf9\xbf\x9e\xfd" "\x7f\x9f\xff\xaf\xff\x5f\xd0\xff\x6f\x5d\xa7\xfe\xbf\xfe\xff\x4a\xa8\x75" "\xff\xff\x8d\xc3\xfa\xff\x3d\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff" "\xf4\xd6\x6f\xfd\xff\x98\xfb\xdf\x1d\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x09\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x5f\x1f\x66\x52\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xca\xd5\xff\x1f\x5c\xf2\x1c" "\x9f\xff\x5f\xd0\xff\x6f\x75\xf1\xfa\xff\x73\x0b\x0b\xd0\xff\x2f\xcd\xfa" "\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\xbf\x37\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x16\x66\x52\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xca\xd5\xff" "\x5f\x9a\xfe\x7f\x41\xff\xbf\x95\xcf\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xbb" "\x7e\xeb\xff\xc7\xdc\xbf\x21\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6" "\xfe\x8d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x86\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x6f\x0a\x33\xa9\x4c\xfe\x7f\x5b\xd7\x73\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92\xfe\xbf\xfe\x7f\x37" "\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe" "\x9b\xc2\x4c\x2a\x93\xff\x01\x00\x00\x80\x98\xfb\x6f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xe6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf7\xff\x87\xf4" "\xff\x33\xfd\xff\xbe\xa7\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x99\xd7\xaf" "\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x03\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf1\x30\x93\x9a\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf7\xff\x7d\xfe\x7f\xcb\xfa\xf5\xff\xfb" "\x93\xfe\x7f\x59\xfa\xff\x23\xad\x5f\xea\xff\x2f\x8b\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\xdd\xf5\x5b\xff\x3f\xe6\xfe\x5b\xc3\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f" "\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x19\x66\x52\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\xcb\xd2\xff" "\x6f\xa3\xff\xbf\x2c\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\xd7\x6f\xfd\xff" "\x98\xfb\xa7\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1a\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x7b\x98\x49\x4d\xf2\x7f\x49\xfa\xff\x5b\x52\x01\x4a\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x54\xf4\xff\xf5\xff\xbb\xd1\xff\xd7" "\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\x69\x35\xd8\xe1\xb4\x7e\xeb\xff\xc7\xdc" "\xbf\x23\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x9d\x61\x26\x0b" "\xf9\x7f\xdd\xa5\x5f\x15\x00\x00\x00\x70\x31\xc5\xdc\x7f\x5b\x98\x89\x7f" "\xff\x07\x00\x00\x80\xca\x88\xb9\xff\xf6\x30\x93\x9a\xe4\xff\x92\xf4\xff" "\x7d\xfe\xbf\xfe\xbf\xfe\x7f\x13\xfd\x7f\xfd\xff\x32\xd1\xff\xd7\xff\xef" "\x46\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xc7\xdc" "\xbf\x2b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x0f\x85\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\xa9" "\x74\xfa\x1c\xc2\x28\xe6\xfe\x0f\x87\x99\xd4\x24\xff\xeb\xff\x57\xbd\xff" "\x3f\xbf\x5a\xff\x5f\xff\x5f\xff\xbf\xfb\xfa\xf5\xff\x57\x96\xfe\xbf\xfe" "\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x41\xff\x7f" "\x3e\x5c\x77\xe3\xeb\x98\xfb\x77\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d" "\xc4\xdc\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x8f\x86\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x09\x33\xe9\x90\xff\xcf\xa9\x10" "\x56\x12\xfa\xff\x55\xef\xff\xfb\xfc\x7f\xfd\x7f\xfd\xff\x5e\xeb\xd7\xff" "\x5f\x59\xfa\xff\xfa\xff\xdd\xe8\xff\x97\xb3\xff\x1f\x7e\x6c\xd1\xff\xef" "\xa3\xfe\x7f\x7e\x0c\xe9\xff\xd3\x8f\xfa\xa0\xff\xdf\xf2\x75\xcc\xfd\x77" "\x86\x99\xf8\xf7\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x16\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x4f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x97\xb3\xff" "\x3f\xa2\xff\x5f\x12\xfa\xff\x2b\xd6\xff\x6f\xbc\x14\xea\xff\x17\xf4\xff" "\xcf\xcf\xe5\xee\xcf\x97\x7d\xfd\xfd\xd4\xff\xf7\xf9\xff\xf4\xab\x7e\xeb" "\xff\xc7\xdc\x7f\x57\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x9f" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xf5\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xbb\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xeb\xdd\xff\x1f\x69\x7a\x1c\xca\xd5\xff\xf7\xf9\xff\x65\xa1\xff\xef\xf3" "\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff" "\x31\xf7\xff\x46\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xf7\x84" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x2a\xcc\x44\xfe\x07\x00\x00" "\x80\x92\x59\xb5\xe4\x39\x31\xf7\xff\x66\x98\x49\x4d\xf2\x7f\xf9\xfa\xff" "\x63\xa5\xec\xff\x0f\xa6\xeb\xd7\xff\xd7\xff\xef\xaf\xfe\x7f\x56\xda\xcf" "\xff\xd7\xff\x2f\x0b\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd" "\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\xbf\x15\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x7f\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xde\x30\x93\x9a\xe4" "\xff\x8b\xdd\xff\x6f\xbf\x7c\x37\x3e\xff\x5f\xff\x3f\xd3\xff\xd7\xff\xd7" "\xff\xd7\xff\xbf\x40\xfa\xff\xfa\xff\x99\xfe\xff\x79\xbb\xdc\xfd\xf9\x12" "\xaf\x3f\xfe\x28\xa2\xff\xaf\xff\x4f\x0f\xfd\xd6\xff\x8f\xb9\xff\x77\xc2" "\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00" "\x00\x80\x3e\x75\xf8\x9c\x2f\x11\x73\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x3f\x1b\x66\x52\x93\xfc\x5f\xbe\xcf\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x2f\x13\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xcb" "\xbc\x7e\x9f\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\xfe\x30\x93\x9a" "\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x17\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xbb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x17" "\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92" "\xf4\xff\x17\xf7\xff\xf3\xd7\x30\xfd\xff\x82\xfe\xbf\xfe\x7f\x99\xd7\xaf" "\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\xf3\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\xff\x7e\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x1f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x3f\x10\x66\x52\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x49\xfa\xff\x23\xcd\x7b" "\x55\xff\xff\xe2\x29\x63\xff\xdf\xe7\xff\x2f\xd0\xff\xd7\xff\x2f\xf3\xfa" "\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\x7f\x21\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x3f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x60\x98\x49\x4d" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\x5f\x49\xfa\xff" "\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd" "\xff\x98\xfb\xf7\x85\x99\xec\x69\xbd\x19\x00\x00\x00\xa0\xbc\x62\xee\xff" "\x62\x98\x49\x4d\xfe\xfd\x1f\x00\x00\x00\xea\x20\xe6\xfe\xfd\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x07\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa" "\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\xe9\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1c" "\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\x5f\xdb\xfe\xff\x4b\xdf\x6f\x5b" "\xa7\xfe\xbf\xfe\xff\x4a\xd0\xff\xd7\xff\xef\x46\xff\x5f\xff\xbf\xcc\xeb" "\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xc7\xdc\x7f\x24\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x7f\x39\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x68\x98\x49\x4d" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x6d\xfb\xff\xcb\xfb\xfc\xff\x35\x0b\xb7" "\xab\xff\xaf\xff\x7f\x3e\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa" "\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\x1f\x0b\x33\xa9\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xb9\xff\x78\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x93\x61\x26\x35\xc9" "\xff\xfa\xff\xe7\xd6\xff\x1f\x58\xa2\x1b\xa8\xff\xdf\x79\xfd\xfa\xff\x15" "\xe8\xff\x37\xd1\xff\xd7\xff\x3f\x1f\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff" "\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\xff\x28\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x53\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x33\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb3\x61" "\x26\x35\xc9\xff\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25" "\xe9\xff\xeb\xff\xff\x3f\x7b\xf7\xb9\xeb\x69\x59\xf5\x71\x7c\x33\x3c\xf3" "\x30\x84\x78\x0e\xc4\x33\xf0\xa5\xaf\x3c\x04\x8f\xc1\xc4\x78\x06\xf6\x06" "\x76\xec\x8a\xbd\x37\xec\x0d\xbb\x62\xef\xbd\x77\xec\x5d\x14\xc5\x5e\x13" "\x0d\x7b\xd6\x5a\x38\xc3\x9e\xfb\xde\xc3\xec\xff\xde\xd7\x7d\xad\xcf\xe7" "\x05\x0b\x07\x08\x17\x01\x13\x7e\x19\xbf\xde\x4b\xf4\xff\xfa\xff\x2d\xbf" "\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xfb\xc7\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x01\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xc0\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x50\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd\xff\x12\xfd" "\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xc1\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\x3f\x34\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x16" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x92\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff" "\xe7\xee\x7f\x78\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x11\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x8c\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x6b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x6f\xb0\xff\xff" "\x3f\xfd\xbf\xfe\x7f\x3b\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf" "\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xb5\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\xc0\xe6\xdc\xfd\x7e\x07" "\xff\x78\xee\xfe\x47\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x63\xe2" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x6f\xb0\xff\xf7\xfd\x7f\xfd\xff\x86" "\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68" "\xfd\x7f\xee\xfe\xc7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x71" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf8\xb8\xc5\xfe\x07\x00\x00" "\x80\xad\x3b\x9d\xbf\x92\xbb\xff\x09\x71\x4b\x93\xfd\xaf\xff\x3f\xbe\xfe" "\xff\x32\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x39\xfd\xbf\xfe\x7f\x4f" "\xff\x7f\x97\x9d\x74\x3f\xbf\xf5\xf7\xeb\xff\xf5\xff\xac\xdb\x79\xff\x7f" "\xef\xeb\xf6\xef\x61\xfb\xff\xdc\xfd\xd7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa4\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x72\xdc\xd2\x64\xff\xeb\xff\x7d" "\xff\xff\x8e\xfe\xff\x3f\x97\xe9\xff\xf5\xff\xfa\xff\x3b\x7e\x5c\xff\x7f" "\x34\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e" "\xe7\xfd\xff\x4a\xef\x7f\xfe\x7f\xce\xdd\xff\x94\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\x3f\x35\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f" "\x16\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8f\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\x87\xed\xff\xcf" "\xff\xaf\xde\xb9\xf4\xff\x87\xa2\xff\xd7\xff\x5f\xa8\xff\xbf\xd7\x21\xde" "\xaf\xff\xa7\x83\xd1\xfa\xff\xdc\xfd\xcf\x88\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x33\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xfa\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x56\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\xb9\xfd\xff\xa9\x96\xfd\xff\xed\x3f\xa6\xff\xdf\x0d" "\xfd\xff\xb0\xfd\xff\x32\xfd\xff\xa1\xe8\xff\xf5\xff\xbe\xff\xaf\xff\x67" "\xd9\x68\xfd\x7f\xee\xfe\x67\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x39\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xdc\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x5e\xdc\x72\xea\xa4\x5e\x74\xbc\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\xff\x92\xbe\xff\x7f\xf9\x1c\xfd\xbf\xef\xff\xef\x8e\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff" "\xe7\xee\x7f\x7e\xdc\xe2\xe7\xff\x01\x00\x00\x60\x0e\xa7\xf6\x6a\xf7\xbf" "\x20\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x18\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x2f\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xbf\xa4\xfe\x7f\x92\xef\xff\xeb\xff\x77\x47\xff\xaf\xff\x5f\x72\xd8\xfe" "\x7f\x4f\xff\x5f\x7f\x2d\xfa\xff\x71\xde\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe" "\x3f\x77\xff\x8b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x92\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x69\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xbf\x2c\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\x25\xfd\xbf\xfe\x7f\x89\xef\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf" "\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x5f\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x2b\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x55\x71\xcb\xf9\xfb\xff\xd4\x71\xbe" "\xea\xf8\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd" "\xff\x12\xfd\xff\xc1\xfd\xff\x99\x0b\xfc\xf9\xf4\xff\x63\xbd\x5f\xff\xaf" "\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x1b\xe2\x16\x3f\xff\x0f\x00\x00\x00\xd3" "\xc8\xdd\xff\xea\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x4d\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x36\x6e\x69\xb2\xff\x2f\xd4\xff\xdf" "\x76\xd5\xd9\xdf\xae\xff\x3f\x1c\xfd\xff\xc1\xef\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x89\xfe\xdf\xf7\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f" "\x75\xa3\xf5\xff\xb9\xfb\x5f\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x1b\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x8d\x71\x4b\x93\xfd\x7f\xf4\xdf\xff\xbf\x5a" "\xff\xaf\xff\xd7\xff\xc7\xd5\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x32\xfd" "\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x4d\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x1a" "\xb7\x34\xd9\xff\x47\xdf\xff\xfb\xfe\xbf\xfe\xff\x22\xfb\xff\x53\xfa\xff" "\xa4\xff\x8f\xbf\xaf\xfa\x7f\xfd\xff\x45\xd8\x6a\xff\x7f\x4a\xff\xbf\x4f" "\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xbf\x71" "\x7f\xea\xf5\xdb\xff\x00\x00\x00\xd0\xc1\x8d\xfb\xbf\x3c\xb3\xf7\xb6\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x7b\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xbf\x23\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x13\xef\xff\x7d\xff" "\xbf\xe8\xff\xe3\xef\xab\xfe\x5f\xff\x7f\x11\xb6\xda\xff\x6f\xf0\xfb\xff" "\xfb\xff\xa2\xa0\xff\x3f\x97\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x6c\xb4\xfe" "\x3f\x77\xff\x3b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xae\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xc4\xee\x3f\xfb\x3f\x7e\xb7\xff\x01\x00\x00" "\x60\x4a\xef\xde\xff\xe5\x99\xbd\xf7\xc4\x2d\x4d\xf6\x7f\xe3\xfe\xff\xea" "\x4b\xed\xff\xaf\xfc\x9f\x5f\xd7\xff\x1f\xfc\x7e\xfd\xff\x91\xf4\xff\x37" "\x9e\xff\xcf\x9e\xfe\x5f\xff\xbf\x25\xfa\xff\x69\xfa\xff\x7d\xfa\xff\x73" "\xe9\xff\xf5\xff\x63\xf4\xff\xf1\x03\xd7\xe8\xff\x19\xcf\x68\xfd\x7f\xee" "\xfe\xf7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x7d\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\xbf\x3f\x6e\x69\xb2\xff\x1b\xf7\xff\x93\x7c\xff\xff\x3e\xb7\xc6\x0b" "\xf4\xff\xf3\xf6\xff\xbe\xff\x1f\x57\xff\xaf\xff\x3f\x88\xfe\x7f\x82\xfe" "\xff\xf6\x7f\xfd\xd2\xff\xd7\x9f\x7f\xae\xfe\xff\x4e\xff\x17\x36\x47\x4a" "\xff\xef\xfb\xff\x8c\x6f\xb4\xfe\x3f\x77\xff\x07\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff" "\x50\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x38\x6e\x69\xb2\xff\xf5" "\xff\x5b\xef\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\x8f\x4d\xff\xaf\xff\x5f" "\xe2\xfb\xff\xb3\xf7\xff\xbb\x75\xd2\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff" "\x9f\xbb\xff\x23\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x68\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x3f\x1e\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xae\xfa\xff\xdb\xff" "\x24\xfa\xff\x26\xfd\xff\xb5\x57\xe4\xef\xaf\xff\xd7\xff\xdf\x89\xfe\x5f" "\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7" "\xee\xff\x44\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x19\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46" "\xee\xfe\x4f\xc7\x0d\xf7\xb8\xdb\xc9\x3d\xe9\x68\x9d\xbe\xc0\x8f\x47\xae" "\xab\xff\xd7\xff\xfb\xfe\xbf\xfe\xdf\xf7\xff\xf5\xff\xbb\xa4\xff\xd7\xff" "\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb" "\x3f\x13\xb7\xf8\xf9\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\xf3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x37\xdb\xff\x5f\xa9\xff" "\x3f\xf7\xfd\xfa\xff\x31\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\xff" "\xd0\xfd\xff\xcd\x07\xff\xf1\xfa\x7f\x3a\x18\xad\xff\xcf\xdd\xff\x85\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x31\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xbf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8e" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf\xd9\xfe\xdf\xf7\xff\xcf\x7b\xbf" "\xfe\x7f\x4c\xfa\x7f\xfd\xff\x59\xb7\x1c\xf8\xa3\xfa\x7f\xfd\xff\x96\xdf" "\xef\xfb\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x4a\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xbf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\x5f\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xaf\xc7\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x2f\xd1" "\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x11" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xdb" "\x71\x4b\x93\xfd\x3f\x73\xff\xbf\xf4\xbb\xe9\xff\xcf\xd2\xff\xeb\xff\xf7" "\xf4\xff\xfa\xff\x1d\xd3\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe" "\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xdf\x89\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x77\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xe6\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x5e\xdc\xd2\x64\xff\xcf\xdc\xff" "\x2f\xd1\xff\x9f\xa5\xff\xd7\xff\xef\xe9\xff\xf5\xff\x3b\xa6\xff\xd7\xff" "\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\x27\xd4\xff\x9f\xde" "\xbb\x40\xff\x9f\xbb\xff\xfb\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x41\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x30\x6e\xb1\xff\x01" "\x00\x00\x60\x1a\xb9\xfb\x7f\x14\xb7\xcc\xb3\xff\xef\x7b\xd3\xc2\x6f\xd4" "\xff\x1f\x79\xff\xbf\xff\x0f\x91\xfe\x5f\xff\xbf\xa7\xff\xd7\xff\xeb\xff" "\xf7\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd" "\x68\xdf\xff\xcf\xdd\xff\xe3\xb8\x65\x9e\xfd\x0f\x00\x00\x00\xed\xe5\xee" "\xff\x49\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x34\x6e\xb1\xff\x01" "\x00\x00\x60\x1a\xb9\xfb\x7f\x16\xb7\x34\xd9\xff\xfa\x7f\xdf\xff\xd7\xff" "\xb7\xea\xff\x2f\xdf\xd3\xff\xeb\xff\x8f\x99\xfe\x5f\xff\xbf\x44\xff\xaf" "\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x79\xdc\x92" "\xc3\xef\xaa\xbb\xf2\x57\x09\x00\x00\x00\x8c\x24\x77\xff\x2f\xe2\x96\x26" "\x3f\xff\x0f\x00\x00\x00\x1d\xe4\xee\xff\x65\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xff\x2a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\x7f\xab\xfe\xdf" "\xf7\xff\xf5\xff\xc7\x4e\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xd9" "\xff\xe7\x3f\x77\xfa\x7f\xfd\x3f\x77\x36\x5a\xff\x9f\xbb\xff\xd7\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x7f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8d\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff\xaf" "\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xbe\xff\xaf\xff\x67\xdd\x68\xfd\x7f" "\xee\xfe\x5b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xbb\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x7d\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xdf\x16\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x94\xfd\xff\x15\xfa\x7f" "\xfd\xbf\xfe\x7f\x14\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff" "\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x0f\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x63\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x29\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1c\xb7\x34\xd9\xff\xfa\x7f\xfd" "\xff\xc5\xf7\xff\xa7\xeb\xaf\x7b\xd8\xfe\xdf\xf7\xff\xf5\xff\xfa\xff\x61" "\xcc\xd8\xff\x5f\xb6\xdf\x77\xff\xbf\xfe\xff\xa0\xfe\xff\xcc\xc5\xbd\xbf" "\x7b\xff\x7f\xfd\x0d\x67\x7f\x58\xff\xbf\xcd\xf7\xeb\xff\xf5\xff\xac\x1b" "\xad\xff\xcf\xdd\xff\x97\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff" "\x35\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x16\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x7f\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\x33\xdf\xff" "\xbf\x67\xfc\x01\xfa\x7f\xfd\xbf\xfe\x7f\x53\x66\xec\xff\x7d\xff\xdf\xf7" "\xff\x93\xef\xff\xeb\xff\xf5\xff\xfa\x7f\x96\x8d\xd6\xff\xe7\xee\xff\x47" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xff\x19\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\xff\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x7f" "\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\x99\xfe\xdf\xf7\xff\x8b\xfe\x5f\xff" "\xbf\x25\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59" "\x37\x5a\xff\x9f\xbb\xff\xbf\x01\x00\x00\xff\xff\xe6\x4d\x26\x9a", 24496); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000380, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x200000002740, /*chdir=*/3, /*size=*/0x5fb0, /*img=*/0x2000000080c0); // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000000300, "./bus\000", 6); syscall(__NR_mkdir, /*path=*/0x200000000300ul, /*mode=*/0ul); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 00} (length 0x101) // } // mode: open_mode = 0x26 (8 bytes) // ] // returns fd memcpy((void*)0x2000000009c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 257); syscall(__NR_creat, /*file=*/0x2000000009c0ul, /*mode=S_IWOTH|S_IROTH|S_IRGRP*/ 0x26ul); // openat$incfs arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 6c 6f 67 00} (length 0x5) // } // flags: open_flags = 0x1c10c1 (4 bytes) // mode: open_mode = 0x9c37611dc13d0db7 (2 bytes) // ] // returns fd memcpy((void*)0x200000000100, ".log\000", 5); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000100ul, /*flags=O_SYNC|O_NOATIME|O_EXCL|O_CREAT|O_CLOEXEC|0x1*/ 0x1c10c1, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IWGRP|S_IRGRP|S_IWUSR|S_IRUSR|0xc00*/ 0xdb7); // symlinkat arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 00} (length 0xfd) // } // ] memcpy((void*)0x200000000440, "./file0\000", 8); memcpy((void*)0x200000000980, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253); syscall(__NR_symlinkat, /*old=*/0x200000000440ul, /*newfd=*/0xffffff9c, /*new=*/0x200000000980ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }