// https://syzkaller.appspot.com/bug?id=d7e13e816d5ba729b5232cfa81816187e468d7eb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 6f // 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 64 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 ad d4 ce ec 7c // b8 70 2b 1b b9 ec 93 0d ab fc 16 59 07 d7 47 8e 07 06 b0 04 08 dc // 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 84 4e f8 e6 97 2c db // 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a // 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a e6 4a 5a 52 1a a8 // 30 80 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // c0 97 10 07 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a c2 b2 2d 40 39 1a e3 // 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d // 78 16 e0 b9 39 81 de 11 47 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 // 65 b9 8a de 05 3b 2f 9b 79 18} (length 0x122) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x629b (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x629b) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000003c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\xb9\xec\x93\x0d\xab\xfc\x16\x59\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xc0\x97" "\x10\x07\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xc2\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9\x8a\xde\x05\x3b\x2f\x9b" "\x79\x18", 290); memcpy( (void*)0x200000000bc0, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x97\x10\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x40\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\x44\x23\x21" "\x16\x3c\x04\x08\x89\x25\x20\x96\xac\x78\x80\x2c\xd8\xb2\xe3\x01\xb0\x64" "\x23\x01\x59\xa5\x50\xcd\x9c\x33\xae\x69\xba\xdd\xbe\x4d\x57\xcf\x9c\xdf" "\x4f\x9a\x54\x7d\x75\xaa\xa6\x4f\xe5\xdf\x35\xdd\xed\xaa\xea\x13\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7c\xef\xbb\x3f\x38\x5d" "\x45\xc4\xc5\x9f\xa7\x05\x47\x23\x3e\x13\xfd\x88\x5e\xc4\x4a\x53\xaf\x45" "\xc4\xca\xda\xd1\xbc\xfe\x20\x22\x9e\x8f\xed\xe6\x78\x2e\x22\x86\x4b\x11" "\x55\x6e\x7c\x26\xe2\xf5\x88\xf8\xf8\x48\xc4\x9d\xbb\x37\xd7\x9b\x45\x67" "\x1e\xb0\x1f\xdf\xf9\xd3\xdf\x7f\xf7\xc3\xa7\xbe\xff\xb7\x3f\x0c\x4f\xfe" "\xe7\xcf\xd7\xfb\x6f\x4c\x5b\xef\xc6\x8d\x5f\xff\xfb\x2f\xb7\x1e\x7d\x7f" "\x01\x00\x00\xa0\x44\x75\x5d\xd7\x55\xfa\x98\x7f\x2c\x7d\xbe\xef\x75\xdd" "\x29\x00\x60\x2e\xf2\xeb\x7f\x9d\xe4\xe5\xea\x85\xab\x37\x17\xac\x3f\x6a" "\xb5\x5a\xad\x3e\x80\x75\x5b\x3d\xd9\xad\x76\x11\x11\x9b\xed\x6d\x9a\xf7" "\x0c\x4e\xc7\x03\xc0\x01\xb3\x19\x9f\x74\xdd\x05\x3a\x24\xff\xa2\x0d\x22" "\xe2\xa9\xae\x3b\x01\x2c\xb4\xaa\xeb\x0e\xb0\x2f\xee\xdc\xbd\xb9\x5e\xa5" "\x7c\xab\xf6\xeb\xc1\xda\x4e\x7b\xbe\x16\x64\x4f\xfe\x9b\xd5\xee\xfd\x1d" "\xd3\xa6\xb3\x8c\x5f\x63\x32\xaf\xe7\xd7\x56\xf4\xe3\xd9\x29\xfd\x59\x99" "\x53\x1f\x16\x49\xce\xbf\x37\x9e\xff\xc5\x9d\xf6\x51\x5a\x6f\xbf\xf3\x9f" "\x97\x69\xf9\x8f\x76\x6e\x7d\x2a\x4e\xce\xbf\x3f\x9e\xff\x98\xc3\x93\x7f" "\x6f\x62\xfe\xa5\xca\xf9\x0f\x1e\x2a\xff\xbe\xfc\x01\x00\x00\x00\x00\x60" "\x81\xe5\x7f\xff\x3f\xfa\x80\xe7\x7f\xb7\xdb\xf6\xe1\xfc\xcf\xd2\x93\xd9" "\x9d\x99\xee\x77\xfe\x77\x6d\x4e\x7d\x00\x00\x00\x00\x00\x00\x00\x80\x27" "\xed\x71\xc7\xff\xdb\x55\x19\xff\x0f\x00\x00\x00\x16\x55\xf3\x59\xbd\xf1" "\x9b\x23\xf7\x96\x4d\xfb\x2e\xb6\x66\xf9\x85\x2a\xe2\xe9\xb1\xf5\x81\xc2" "\xa4\x9b\x65\x56\xbb\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94" "\x64\xb0\x73\x0d\xef\x85\x2a\x62\x18\x11\x4f\xaf\xae\xd6\x75\xdd\xfc\xb4" "\x8d\xd7\x0f\xeb\x71\xb7\x3f\xe8\x4a\xdf\x7f\x28\x59\xd7\x7f\xe4\x01\x00" "\x60\xc7\xc7\x47\xc6\xee\xe5\xaf\x22\x96\x23\xe2\x42\xfa\xae\xbf\xe1\xea" "\xea\x6a\x5d\x2f\xaf\xac\xd6\xab\xf5\xca\x52\x7e\x3f\x3b\x5a\x5a\xae\x57" "\x5a\x9f\x6b\xf3\xb4\x59\xb6\x34\x9a\xfd\x7e\x78\x25\x46\x75\xf3\xcb\x96" "\x5b\xdb\xb5\xcd\xfa\xbc\x3c\xab\x7d\xfc\xf7\x35\x8f\x35\xaa\xfb\xb3\x3b" "\x36\x27\x1d\x06\x0e\x00\x11\xb1\xf3\x6a\x74\xc7\x2b\xd2\x21\x53\xd7\xcf" "\x44\xd7\xef\x72\x38\x18\x1c\xff\x87\x8f\xe3\x9f\x07\xd1\xf5\xf3\x14\x00" "\x00\x00\xd8\x7f\x75\x5d\xd7\x55\xfa\x3a\xef\x63\xe9\x9c\x7f\xaf\xeb\x4e" "\x01\x00\x73\x91\x5f\xff\xc7\xcf\x0b\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7c\x75" "\x5b\x3d\xd9\xad\x76\x11\x11\x9b\xed\x6d\x9a\xf7\x0c\x86\xe3\x07\x80\x03" "\x66\x33\x3e\x99\xb8\xfc\x97\x06\xf8\x2d\xc2\xb4\xfc\x29\xc2\x20\x22\x9e" "\xef\xba\x13\xc0\x42\xab\xba\xee\x00\xfb\xe2\xce\xdd\x9b\xeb\x55\xca\xb7" "\x6a\xbf\x1e\xa4\xf1\xdd\xf3\xb5\x20\x7b\xf2\xdf\xac\xb6\xb7\xcb\xdb\x4f" "\x9a\xce\x32\x7e\x8d\xc9\xbc\x9e\x5f\x5b\xd1\x8f\x67\xa7\xf4\xe7\xb9\x39" "\xf5\x61\x91\xe4\xfc\x7b\xe3\xf9\x5f\xdc\x69\x1f\xa5\xf5\xf6\x3b\xff\x79" "\x99\x96\x7f\xb3\x9f\x47\x3b\xe8\x4f\xd7\x72\xfe\xfd\xf1\xfc\xc7\x1c\x9e" "\xfc\x7b\x13\xf3\x2f\x55\xce\x7f\xf0\x50\xf9\xf7\xe5\x0f\x00\x00\x00\x00" "\x00\x0b\x2c\xff\xfb\xff\xd1\x85\x3a\xff\x3b\x7a\xd4\xdd\x99\xe9\x7e\xe7" "\x7f\xd7\xf6\xed\x51\x01\x00\x00\x00\x00\x00\x00\x60\x7f\xdd\xb9\x7b\x73" "\x3d\xdf\xf7\x9a\xcf\xff\x7f\x6e\xc2\x7a\xee\xff\x3c\x9c\x72\xfe\x95\xfc" "\x8b\x94\xf3\x4f\xf7\xff\xef\x5e\x78\xf3\xf2\xd8\x7a\xfd\xd6\xfc\xed\xb7" "\xef\xe5\xff\xaf\xbb\x37\xd7\x7f\x7f\xfd\x9f\x9f\xcd\xd3\x07\xcd\x7f\x29" "\xcf\x54\xe9\x99\x55\xa5\x67\x44\x95\x1e\xa9\x1a\xa4\xe9\x23\xee\xd8\x14" "\x5b\xc3\xfe\xa8\x79\xa4\x61\xd5\xeb\x0f\xd2\x35\x3f\xf5\xf0\xdd\xb8\x1c" "\x57\x62\x23\x4e\xed\x59\xb7\x97\x8e\x87\x7b\xed\xa7\xf7\xb4\x37\x3d\x1d" "\x6e\xb7\xd7\xfd\x9d\xf6\x33\x7b\xda\x07\xbb\xed\x79\xfb\xb3\x7b\xda\x87" "\xe9\x4a\xa7\x7a\x25\xb7\x9f\x88\xf5\xf8\x49\x5c\x89\x77\xb6\xdb\x9b\xb6" "\xa5\x19\xfb\xbf\x3c\xa3\xbd\x9e\xd1\x9e\xf3\xef\x3b\xfe\x8b\x94\xf3\x1f" "\xb4\x7e\x9a\xfc\x57\x53\x7b\x35\x36\x6d\xdc\xfe\xa8\xf7\x7f\xc7\x7d\x7b" "\x3a\xe9\x71\xde\xba\xfc\xf9\x5f\x9d\xda\xff\xdd\x99\x69\x2b\xfa\xbb\xfb" "\xd6\xd6\xec\xdf\x8b\x1d\xf4\x67\xfb\xff\xc9\x53\xa3\xf8\xd9\xb5\x8d\xab" "\x27\x6e\x5c\xba\x7e\xfd\xea\xe9\x48\x93\x3d\x4b\xcf\x44\x9a\x3c\x61\x39" "\xff\x61\xfa\xc9\xf9\xbf\xfc\xd2\x4e\x7b\xfe\xbb\xdf\x3e\x5e\x6f\x7f\x34" "\x7a\xe8\xfc\x17\xc5\x56\x0c\xa6\xe6\xff\x52\x6b\xbe\xd9\xdf\x57\xe6\xdc" "\xb7\x2e\xe4\xfc\x47\xe9\x27\xe7\xff\x4e\x6a\x9f\x7c\xfc\x1f\xe4\xfc\xa7" "\x1f\xff\xaf\x76\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xb8\x9f\xba\xae\xb7\x6f\x11\x7d\x2b\x22\xce\xa5\xfb\x7f\xba\xba\x37\x13" "\x00\x98\xaf\xfc\xfa\x5f\x27\x79\xf9\xbc\xea\xfe\xa3\x6e\xff\xc7\xbd\xfb" "\xd1\x55\xff\xd5\xea\x39\xd7\xd5\x82\xf5\x67\xae\xf5\xa7\xf5\x62\xf5\x47" "\xbd\x90\xf5\x7f\x17\xac\x3f\x0b\x57\xb7\xd5\x93\xbd\xd9\x2e\x22\xe2\xaf" "\xed\x6d\x9a\xf7\x0c\xbf\x98\xf4\xcb\x00\x80\x45\xf6\x69\x44\xfc\xa3\xeb" "\x4e\xd0\x19\xf9\x17\x2c\x7f\xdf\x5f\x33\x3d\xde\x75\x67\x80\xb9\xba\xf6" "\xc1\x87\x3f\xba\x74\xe5\xca\xc6\xd5\x6b\x5d\xf7\x04\x00\x00\x00\x00\x00" "\x00\x00\x78\x54\x79\xfc\xcf\xb5\xd6\xf8\xcf\xc7\xeb\xba\xbe\x35\xb6\xde" "\x9e\xf1\x5f\xdf\x8e\xb5\xc7\x1d\xff\x73\x90\x67\x76\x07\x18\x9d\x32\x50" "\x75\xff\xe1\xf7\xe9\x7e\xb6\x7a\xa3\x7e\xaf\x35\xdc\xf8\x0b\x31\x6d\xfc" "\xef\xe1\xee\xdc\xfd\xc6\xff\x1e\xcc\x78\xbc\xe1\x8c\xf6\xd1\x8c\xf6\xa5" "\x19\xed\xcb\x33\xda\x27\xde\xe8\xd1\x92\xf3\x7f\xa1\x35\xde\xf9\xf1\x88" "\x38\x36\x36\xfc\x7a\x09\xe3\xbf\x8e\x8f\x79\x5f\x82\x9c\xff\x8b\xad\xe7" "\x73\x93\xff\x97\xc6\xd6\x6b\xe7\x5f\xff\xf6\x20\xe7\xdf\xdb\x93\xff\xc9" "\xeb\xef\xff\xf4\xe4\xb5\x0f\x3e\x7c\xed\xf2\xfb\x97\xde\xdb\x78\x6f\xe3" "\xc7\x67\x4f\x9f\x3e\x75\xf6\xdc\xb9\xf3\xe7\xcf\x9f\x7c\xf7\xf2\x95\x8d" "\x53\x3b\xff\xed\xb0\xc7\xfb\x2b\xe7\x9f\xc7\xbe\x76\x1d\x68\x59\x72\xfe" "\x39\x73\xf9\x97\x25\xe7\xff\x85\x54\xcb\xbf\x2c\x39\xff\x2f\xa6\x5a\xfe" "\x65\xc9\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f\x59\x72\xfe" "\xaf\xa4\x5a\xfe\x65\xc9\xf9\x7f\x39\xd5\xf2\x2f\x4b\xce\xff\xd5\x54\xcb" "\xbf\x2c\x39\xff\xaf\xa4\x5a\xfe\x65\xc9\xf9\xbf\x96\x6a\xf9\x97\x25\xe7" "\x7f\x22\xd5\xf2\x2f\x4b\xce\xff\x64\xaa\x1f\x30\xff\x95\xfd\xee\x17\xf3" "\x91\xf3\xcf\x67\xb8\x1c\xff\x65\xc9\xf9\xe7\x2b\x1b\xe4\x5f\x96\x9c\xff" "\x99\x54\xcb\xbf\x2c\x39\xff\xb3\xa9\x96\x7f\x59\x72\xfe\xaf\xa7\x5a\xfe" "\x65\xc9\xf9\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x5c\xaa\xe5\x5f\x96\x9c\xff" "\xd7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x3d\xd5\xf2" "\x2f\x4b\xce\xff\x1b\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xc9\xf9" "\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\x5b\xa9\x96\x7f\x59\x72\xfe\xdf\x4e\xb5" "\xfc\xcb\x92\xf3\x7f\x33\xd5\xf2\x2f\xcb\xbd\xef\xff\x37\x63\xc6\x8c\x99" "\x3c\xd3\xf5\x5f\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xdc\x3c" "\x2e\x27\xee\x7a\x1f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc7\x0e" "\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x77\x31\x72\x9d\xf5\xfd\xc0\xcf\xec" "\x9b\x37\x0e\x24\x06\x42\xfe\x4e\xfe\x26\x6c\x1c\x13\x42\xb2\xc9\xae\xed" "\xc4\x2f\xb4\x29\x26\xbc\x36\xbc\x95\x84\x50\xe8\x0b\xb6\xeb\x5d\x9b\x05" "\xc7\x36\x5e\xbb\x04\x1a\xd5\x8e\x02\x25\x12\x46\x45\x15\x6d\xc3\x45\x5b" "\x40\xa8\xcd\x4d\x45\xd4\x72\x41\x2b\x40\xb9\x40\xad\xaa\x56\x82\xf6\x82" "\xde\x20\x2a\x54\x2e\xa2\x2a\xa0\x80\x84\x4a\x2b\x60\xab\x39\xe7\x79\x9e" "\x9d\x99\x3d\x3b\xb3\xeb\x9d\x6c\x66\xce\xf9\x7c\xa4\xe4\x97\x9d\x39\x33" "\xe7\xcc\x99\x67\x66\xf7\x6b\xe7\xbb\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xd0\xea\xc6\xd7\xcd\x7f\xa2\x91\x65\x59\xa3\xd1\x28" "\x2e\xd8\x96\x65\x2f\x68\xce\x2b\xa6\xb6\xe5\x97\xbc\xfa\xf9\x3d\x3e\x00" "\x00\x00\x60\xe3\x7e\x9e\xff\xfb\xd9\xab\xd3\x05\x87\xd6\x70\xa3\x96\x6d" "\xfe\xf1\x86\x6f\x7e\x79\x69\x69\x69\x29\x7b\xcf\xe8\x1f\x8f\x7f\x66\x69" "\x29\x5d\x31\x95\x65\xe3\x5b\xb2\x2c\xbf\x2e\x7a\xf2\x7b\xef\x6d\xb4\x6e" "\x13\x3c\x9a\x4d\x36\x46\x5a\xbe\x1e\xe9\xb1\xfb\xd1\x1e\xd7\x8f\xf5\xb8" "\x7e\xbc\xc7\xf5\x13\x3d\xae\xdf\xd2\xe3\xfa\xc9\x1e\xd7\xaf\x38\x01\x2b" "\x5c\x91\x35\xd2\x9d\xed\xca\xff\x73\x5b\x71\x4a\xb3\x6b\xb2\xf1\xfc\xba" "\x5d\x25\xb7\x7a\xb4\xb1\x65\xa4\x79\xee\xd2\x6d\xb3\x46\x7e\x9b\xa5\xf1" "\xe3\xd9\x42\x76\x32\x9b\xcf\x66\xdb\xb6\x2f\xb6\x6d\xe4\xdb\x7f\xf5\xc6" "\xe6\xbe\xde\x9c\xc5\x7d\x8d\xb4\xec\x6b\x47\x73\x85\xfc\xe8\xe1\x63\xf1" "\x18\x1a\xe1\x1c\xef\x6a\xdb\xd7\xf2\x7d\x46\x3f\x78\x6d\x36\xf5\xe3\x1f" "\x3d\x7c\xec\x2f\xcf\x3d\x73\x5d\xd9\xec\x79\x1a\xda\xee\xaf\x38\xce\x5b" "\x76\x36\x8f\xf3\x63\xe1\x92\xe2\x58\x1b\xd9\x96\x74\x4e\xe2\x71\x8e\xb4" "\x1c\xe7\x8e\x92\xe7\x64\xb4\xed\x38\x1b\xf9\xed\x9a\xff\xdd\x79\x9c\xcf" "\xae\xf1\x38\x47\x97\x0f\x73\x53\x75\x3e\xe7\x93\xd9\x48\xfe\xdf\xdf\xca" "\xcf\xd3\x58\x23\x2b\x39\x4f\x3b\xc2\x65\x3f\xbd\x29\xcb\xb2\x8b\xcb\x87" "\xdd\xb9\xcd\x8a\x7d\x65\x23\xd9\xd6\xb6\x4b\x46\x96\x9f\x9f\xc9\x62\x45" "\x36\xef\xa3\xb9\x94\x5e\x9c\x8d\xad\x6b\x9d\xde\xb8\x86\x75\xda\x9c\x73" "\xbb\xda\xd7\x69\xe7\x6b\x22\x3e\xff\x37\x86\xdb\x8d\xad\x72\x0c\xad\x4f" "\xd3\x0f\x1e\x99\x68\x79\xde\x7f\xb6\x74\x39\xeb\x34\x6a\x3e\xea\xd5\x5e" "\x2b\x9d\x6b\xb0\xdf\xaf\x95\x41\x59\x83\x71\x5d\x7c\x2b\x7f\xd0\x8f\x95" "\xae\xc1\x5d\xe1\xf1\x3f\x7c\xf3\xea\x6b\xb0\x74\xed\x94\xac\xc1\xf4\xb8" "\x5b\xd6\xe0\xce\x5e\x6b\x70\x64\x62\x34\x3f\xe6\xf4\x24\x34\xf2\xdb\x2c" "\xaf\xc1\xdd\x6d\xdb\x8f\xe6\x7b\x6a\xe4\xf3\xe9\x9b\xbb\xaf\xc1\x99\x73" "\x0f\x9e\x99\x59\xfc\xc8\x47\x6f\x5f\x78\xf0\xe8\x89\xf9\x13\xf3\xa7\xf6" "\xee\xde\x3d\xbb\x77\xdf\xbe\x03\x07\x0e\xcc\x1c\x5f\x38\x39\x3f\x5b\xfc" "\xfb\x32\xcf\xf6\xe0\xdb\x9a\x8d\xa4\xd7\xc0\xce\x70\xee\xe2\x6b\xe0\x95" "\x1d\xdb\xb6\x2e\xd5\xa5\xcf\x4f\xac\x78\xff\xbd\xdc\xd7\xe1\x64\x97\xd7" "\xe1\xb6\x8e\x6d\xfb\xfd\x3a\x1c\xeb\x7c\x70\x8d\xcd\x79\x41\xae\x5c\xd3" "\xc5\x6b\xe3\x5d\xcd\x93\x3e\x79\x69\x24\x5b\xe5\x35\x96\x3f\x3f\xb7\x6e" "\xfc\x75\x98\x1e\x77\xcb\xeb\x70\xac\xe5\x75\x58\xfa\x3d\xa5\xe4\x75\x38" "\xb6\x86\xd7\x61\x73\x9b\x33\xb7\xae\xed\x67\x96\xb1\x96\x7f\xca\x8e\x61" "\xf5\xef\x05\x1b\x5b\x83\xdb\x5a\xd6\x60\xe7\xcf\x23\x9d\x6b\xb0\xdf\x3f" "\x8f\x0c\xca\x1a\x9c\x0c\xeb\xe2\x3b\xb7\xae\xfe\xbd\x60\x47\x38\xde\xc7" "\xa6\xd7\xfb\xf3\xc8\xe8\x8a\x35\x98\x1e\x6e\x78\xef\x69\x5e\x92\x7e\xde" "\x9f\x3c\x90\x8f\xb2\x75\x79\x7d\xf3\x8a\x2b\x27\xb2\xf3\x8b\xf3\x67\xef" "\x78\xe8\xe8\xb9\x73\x67\x77\x67\x61\x6c\x8a\x97\xb4\xac\x95\xce\xf5\xba" "\xb5\xe5\x31\x65\x2b\xd6\xeb\xc8\xba\xd7\xeb\xa1\x85\x1b\x1e\xbb\xbe\xe4" "\xf2\x6d\xe1\x5c\x4d\xde\xde\xfc\xd7\xe4\xaa\xcf\x55\x73\x9b\x3b\xef\xe8" "\xfe\x5c\xe5\xdf\xdd\xca\xcf\x67\xdb\xa5\x7b\xb2\x30\xfa\x6c\xb3\xcf\x67" "\xd9\x77\xf3\xe6\xf9\x9c\xc8\xb2\xcf\x7e\xe3\x91\xfb\xbe\xf6\xf0\x67\x5f" "\xb7\xea\xf9\x6c\xe6\xcd\x8f\xcd\x6c\xfc\x67\xf1\x94\x4b\x5b\xde\x7f\xc7" "\x57\x79\xff\x8d\xb9\xff\x17\xc5\xfe\xd2\x5d\x3d\x3a\x3a\x3e\x56\xbc\x7e" "\x47\xd3\xd9\x19\x6f\x7b\x3f\x6e\x7f\xaa\xc6\xf2\xf7\xae\x46\xbe\xef\x67" "\x67\xd6\xf6\x7e\x3c\x1e\xfe\xd9\xec\xf7\xe3\x6b\xba\xbc\x1f\x6f\xef\xd8" "\xb6\xdf\xef\xc7\xe3\x9d\x0f\x2e\xbe\x1f\x37\x7a\xfd\x69\xc7\xc6\x74\x3e" "\x9f\x93\x61\x9d\x9c\x9c\xed\xfe\x7e\xdc\xdc\x66\xfb\x9e\xf5\xae\xc9\xb1" "\xae\xef\xc7\x37\x85\xd9\x08\xe7\xff\x55\x21\x29\xa4\x5c\xd4\xb2\x76\x4a" "\xd7\x6d\x4b\x80\x7a\x74\x6c\x6c\x3c\x3c\xae\xb1\xb8\x87\xf6\x75\xba\xb7" "\xed\x48\xc6\x43\x36\x6b\xde\xc5\x13\x7b\x2e\x6f\x9d\xde\x72\x53\x71\x5f" "\xa3\xe9\xd1\x2d\xdb\xac\x75\x3a\xd5\xb1\x6d\xbf\xd7\x69\xfa\xb3\xaf\xd5" "\xd6\x69\xa3\xd7\x9f\xbe\x5d\x9e\xce\xe7\x73\x32\xac\x8b\x6b\xf6\x76\x5f" "\xa7\xcd\x6d\x9e\xba\x73\xe3\xef\x9d\x57\xc4\xff\x6c\x79\xef\x9c\xe8\xf5" "\xb3\xeb\xf8\xe8\x44\xf3\x98\xc7\xd3\x22\xcc\xdf\xef\xb3\xa5\x2b\xe2\x1a" "\xbc\x23\x3b\x96\x9d\xce\x4e\x66\x73\xf9\xb5\x13\xf9\x7a\x6a\xe4\xfb\x9a" "\xbe\x6b\x6d\x6b\x70\x22\xfc\xb3\xd9\xef\x95\xdb\xbb\xac\xc1\x5b\x3a\xb6" "\xed\xf7\x1a\x4c\xdf\xc7\x56\x5b\x7b\x8d\xb1\x95\x0f\xbe\x0f\x3a\x9f\xcf" "\xc9\xb0\x2e\x1e\xbf\xab\xfb\x1a\x6c\x6e\xf3\xfa\xfd\xfd\xfd\xd9\xf5\x96" "\x70\x49\xda\xa6\xe5\x67\xd7\xce\x3f\x5f\x5b\xed\xcf\xbc\xae\xef\x38\x4d" "\xcf\xd5\x5a\x19\x0b\xc7\xf9\x8d\xfd\xdd\xff\x6c\xb6\xb9\xcd\xc9\x03\xeb" "\xcd\x99\xdd\xcf\xd3\x6d\xe1\x92\x2b\x4b\xce\x53\xe7\xeb\x77\xb5\xd7\xd4" "\x5c\xb6\x39\xe7\x69\x7b\x38\xce\x67\x0e\xac\x7e\x9e\x9a\xc7\xd3\xdc\xe6" "\x33\x07\xd7\xb8\x9e\x0e\x65\x59\x76\xe1\x43\xf7\xe4\x7f\xde\x1b\xfe\x7e" "\xe5\x6f\xce\x7f\xfb\xcb\x6d\x7f\xef\x52\xf6\x77\x3a\x17\x3e\x74\xcf\x0f" "\x5f\x78\xfc\x1f\xd6\x73\xfc\x00\x0c\xbf\x5f\x14\x63\x6b\xf1\xbd\xae\x25" "\x58\xad\xe5\xef\xff\x01\x00\x00\x80\xa1\x10\x73\xff\x48\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\x7f\xfc\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\xb1\x30\x93\x9a\xe4\xff\xed\xaf\x7f\x66\xe1\x17\x17\xb2\xd4\xcc" "\x5f\x0a\xe2\xf5\xe9\x34\xdc\x5b\x6c\x17\x3b\xae\xb3\xe1\xeb\xa9\xa5\x65" "\xcd\xcb\xef\xf9\xe2\xfc\x4f\xfe\xfe\xc2\xda\xf6\x3d\x92\x65\xd9\xcf\xee" "\xfd\xbd\xd2\xed\xb7\xdf\x1b\x8f\xab\x30\x15\x8e\xf3\xc9\x37\xb4\x5f\xbe" "\xc2\x97\x6f\x5f\xd3\xbe\x8f\x3c\x70\x21\xed\xb7\xb5\xbf\xfe\xb9\x70\xff" "\xf1\xf1\xac\x75\x19\x94\x55\x70\x67\xb3\x2c\xfb\xea\xd5\x9f\xca\xf7\x33" "\xf5\xde\x4b\xf9\x7c\xea\xde\x23\xf9\xbc\xef\xe2\x63\x8f\x36\xb7\x79\xf6" "\x60\xf1\x75\xbc\xfd\xd3\x2f\x29\xb6\xff\xb3\x50\xfe\x3d\x74\xfc\x68\xdb" "\xed\x9f\x0e\xe7\xe1\xfb\x61\xce\xbe\xa5\xfc\x7c\xc4\xdb\x7d\xe9\xd2\xab" "\x76\xec\x7f\xf7\xf2\xfe\xe2\xed\x1a\x3b\xaf\xca\x1f\xf6\xe3\xef\x2b\xee" "\x37\xfe\x9e\x9c\x4f\x3f\x5a\x6c\x1f\xcf\xf3\x6a\xc7\xff\xb5\x4f\x3e\xf1" "\xa5\xe6\xf6\x0f\xbd\xa2\xfc\xf8\x2f\x8c\x94\x1f\xff\x13\xe1\x7e\xbf\x18" "\xe6\xff\xbc\xac\xd8\xbe\xf5\x39\x68\x7e\x1d\x6f\xf7\xf1\x70\xfc\x71\x7f" "\xf1\x76\x77\x7c\xe1\xeb\xa5\xc7\xff\xe4\x27\x8a\xed\xcf\xbc\xb1\xd8\xee" "\x48\x98\x71\xff\xb7\x84\xaf\x77\xbd\xf1\x99\x85\xd6\xf3\xf5\x50\xe3\x68" "\xdb\xe3\xca\xde\x54\x6c\x17\xf7\x3f\xfb\xed\x3f\xcc\xaf\x8f\xf7\x17\xef" "\xbf\xf3\xf8\x27\x0f\x5f\x6a\x3b\x1f\x9d\xeb\xe3\xa9\x7f\x2b\xee\x67\xa6" "\x63\xfb\x78\x79\xdc\x4f\xf4\x77\x1d\xfb\x6f\xde\x4f\xeb\xfa\x8c\xfb\x7f" "\xe2\x0f\x8e\xb4\x9d\xe7\x5e\xfb\x7f\xf2\xbe\xa7\x5f\xd6\xbc\xdf\xce\xfd" "\xdf\xd6\xb1\xdd\x99\x0f\xdd\x9a\xef\x7f\xf9\xfe\xda\x7f\x63\xd3\x9f\x7f" "\xfc\x53\xa5\xfb\x8b\xc7\x73\xe8\xaf\xcf\xb4\x3d\x9e\x43\xef\x0c\xaf\xe3" "\xb0\xff\xc7\xdf\x17\xd6\x63\xb8\xfe\x7f\x9f\x2c\xee\xaf\xf3\xb7\x2b\x1c" "\x79\x67\xfb\xfb\x4f\xdc\xfe\x73\xdb\x2e\xb4\x3d\x9e\xe8\xcd\x3f\x2e\xf6" "\xff\xe4\x6b\x4e\xe4\x73\xcb\xe4\x15\x5b\xaf\x7c\xc1\x0b\xaf\xba\xf8\xf2" "\xe6\xb9\xcb\xb2\x6f\x6d\x29\xee\xaf\xd7\xfe\x4f\xfc\xc5\xe9\xb6\xe3\xff" "\xfc\xb5\xc5\xf9\x88\xd7\xc7\x8e\x7e\xe7\xfe\x57\x13\xf7\x7f\xf6\xc3\xd3" "\xa7\x4e\x2f\x9e\x5f\x98\x4b\x67\xf5\xe1\xab\xf3\xdf\x9d\xf3\xd6\xe2\x78" "\xe2\xf1\x5e\x1d\xde\x5b\x3b\xbf\x3e\x7c\xfa\xdc\xfb\xe7\xcf\x4e\xcd\x4e" "\xcd\x66\xd9\x54\x75\x7f\x85\xde\x65\xfb\x42\x98\x3f\x2c\xc6\xc5\xee\x5b" "\x2f\xad\x78\x07\xbd\xf5\x81\xf0\x7c\x5e\xff\xa7\x5f\xdd\x7a\xf3\xbf\x7e" "\x32\x5e\xfe\xef\xef\x2a\x2e\xbf\xf4\x96\xe2\xfb\xd6\x2b\xc3\x76\x9f\x0e" "\x97\x6f\x0b\xcf\xdf\xfa\xf6\xbf\xd2\xe3\x37\x5e\x9b\xbf\xbe\x1b\x4f\x85" "\x23\x5c\x5a\xf9\xfb\x82\x37\x62\xc7\xae\xff\x3a\xb0\xa6\x0d\xc3\xe3\xef" "\xfc\xb9\x20\xae\xf7\x33\x2f\x7d\x7f\x7e\x1e\x9a\xd7\xe5\xdf\x37\xe2\xeb" "\x7a\x83\xc7\xff\xdd\xb9\xe2\x7e\xbe\x12\xce\xeb\x52\xf8\xcd\xcc\x3b\xaf" "\x5d\xde\x5f\xeb\xf6\xf1\x77\x23\x5c\xba\xbf\x78\xbd\x6f\xf8\xfc\x85\xb7" "\xb9\xf8\xbc\xfe\x55\x78\xbe\xdf\xf6\xfd\xe2\xfe\xe3\x71\xc5\xc7\xfb\xdd" "\xf0\x73\xcc\xd7\xb7\xb7\xbf\xdf\xc5\xf5\xf1\x95\x0b\x23\x9d\xf7\x9f\xff" "\x16\x8f\x8b\xe1\xfd\x24\xbb\x58\x5c\x1f\xb7\x8a\xe7\xfb\xd2\xb3\xd7\x96" "\x1e\x5e\xfc\x3d\x24\xd9\xc5\xeb\xf2\xaf\xff\x28\xdd\xcf\x75\xeb\x7a\x98" "\xab\x59\xfc\xc8\xe2\xcc\xc9\x85\x53\xe7\x1f\x9a\x39\x37\xbf\x78\x6e\x66" "\xf1\x23\x1f\x3d\xfc\xe0\xe9\xf3\xa7\xce\x1d\xce\x7f\x97\xe7\xe1\x0f\xf4" "\xba\xfd\xf2\xfb\xd3\xd6\xfc\xfd\x69\x6e\x7e\xdf\x9d\x59\xfe\x6e\x75\xba" "\x18\xcf\xb1\xe7\xfb\xf8\xcf\x3c\x70\x6c\x6e\xff\xec\xcd\x73\xf3\xc7\x8f" "\x9e\x3f\x7e\xee\x81\x33\xf3\x67\x4f\x1c\x5b\x5c\x3c\x36\x3f\xb7\x78\xf3" "\xd1\xe3\xc7\xe7\x3f\xdc\xeb\xf6\x0b\x73\x77\xef\xde\x73\x70\xef\xfe\x3d" "\xd3\x27\x16\xe6\xee\x3e\x70\xf0\xe0\xde\x83\xd3\x0b\xa7\x4e\x37\x0f\xa3" "\x38\xa8\x1e\xf6\xcd\x7e\x70\xfa\xd4\xd9\xc3\xf9\x4d\x16\xef\xbe\xf3\xe0" "\xee\xbb\xee\xba\x73\x76\xfa\xc1\xd3\x73\xf3\x77\xef\x9f\x9d\x9d\x3e\xdf" "\xeb\xf6\xf9\xf7\xa6\xe9\xe6\xad\x7f\x77\xfa\xec\xfc\xc9\xa3\xe7\x16\x1e" "\x9c\x9f\x5e\x5c\xf8\xe8\xfc\xdd\xbb\x0f\xee\xdb\xb7\xa7\xe5\xb7\x01\xfe" "\xa4\xf4\xf6\x0f\x9e\x39\xbe\x38\x35\x73\xf6\xfc\xa9\x99\xf3\x8b\xf3\x67" "\x67\x8a\xc7\x32\x75\x2e\xbf\xb8\xf9\xbd\xaf\xd7\xfe\xa9\xa6\xc5\xff\x28" "\x7e\x9e\xed\xd4\x28\x7e\x11\x5f\xf6\x8e\xdb\xf6\xa5\xdf\xcf\xda\xf4\xc5" "\x47\x56\xbd\xab\x62\x93\x8e\x5f\x20\xfa\x4c\xf8\x5d\x34\xff\xf4\xa2\x33" "\x07\xd6\xf2\x75\xcc\xfd\xe3\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\x4f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x09\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x9f\x0c\x33\xa9\x49\xfe\xaf\x5c\xff\x7f\xfb" "\x85\x35\xed\x5f\xff\x5f\xff\xbf\xf5\x7c\xe9\xff\xd7\xac\xff\x7f\xff\xa0" "\xf5\xff\x8b\xf7\x0b\xfd\xff\xfe\xd8\x68\xff\x5e\xff\x3f\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\x5f\xb5\xff\x5f\x4e\xff\x9f\x32\x83\xd6\xff\x8f\xb9\xff" "\x8a\x2c\xab\x65\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x6b\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x2f\x08\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f" "\xdf\xbf\xfe\xff\x70\xd2\xff\xef\x4e\xff\xbf\x07\xfd\xff\x99\xac\x5e\xfd" "\xff\x8b\xfd\x3c\x7e\xfd\x7f\xfd\x7f\x56\x1a\xb4\xfe\x7f\xcc\xfd\x2f\x0c" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xaa\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xab\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xb7\x85\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x97\xef" "\x5f\xff\x7f\x38\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xcf\xff\xd7\xff\xd7" "\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\x8b\xc2\x4c\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x62\xee\x7f\x71\x98\x89\xfc\x0f\x00\x00\x00\x83\x67\xec\xf2\x6e" "\x16\x73\xff\x4b\xc2\x4c\x56\xe4\xff\xcb\xdc\x01\x00\x00\x00\xf0\xbc\x8b" "\xb9\xff\x9a\xac\xa3\x08\x5e\x93\xbf\xff\xd7\xff\xd7\xff\x1f\xfc\xfe\xff" "\x96\x74\x9d\xfe\xbf\xfe\x7f\x36\x90\xfd\xff\xd1\x4c\xff\x7f\x70\xe8\xff" "\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x35\x68\xfd\xff" "\x3c\xf7\x67\x93\xd9\x4b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xff\x85\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x6f\x0f\x33\xa9\x49\xfe\xd7\xff\xd7\xff\x1f" "\xfc\xfe\xbf\xcf\xff\xd7\xff\x1f\xf4\xfe\xbf\xcf\xff\x1f\x24\xfa\xff\xdd" "\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6" "\xfe\xeb\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3e\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xff\x87\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xef\x08\x33\xa9\x49\xfe\xd7\xff\x1f\xf0\xfe\x7f\x6c\x8e\xea" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x89\xfe\x7f\x77\xfa\xff\x3d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x83\xd6\xff\x8f\xb9\xff\x65\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\xf2\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xa9" "\x30\x93\x9a\xe4\x7f\xfd\xff\x01\xef\xff\x17\x3d\xf8\x09\x9f\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xbf\x36\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff" "\xdf\x97\xfe\xff\xd2\x05\xfd\x7f\xfd\x7f\x0a\x83\xd6\xff\x8f\xb9\xff\xc6" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x77\x86\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xbf\x2b\xcc\xa4\x26\xf9\x5f\xff\x7f\x28\xfa\xff\x99\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xff\xda\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xcf" "\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\x2b\xc2\x4c\x6a\x92\xff\x01" "\x00\x00\xa0\x0e\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x84\x99\xd4\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x97\xef\x5f\xff\x7f\x38\xe9" "\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x35\x68\xfd" "\xff\x98\xfb\x5f\x15\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xad" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x85\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x4f\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x2f\x3f\x87\xfa\xff\xc3\x4f\xff\xbf\x3b\xfd\xff\x1e\xf4\xff" "\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\x7f\x7b\x98\x49\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x77\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xcf\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xcf\x86\x99" "\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\xab\xff\xff\xf2\xe5\xfb" "\xad\x52\xff\xbf\x6c\xff\xfa\xff\xc3\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff" "\xf5\xff\x9f\xf7\xfe\xff\xb8\xfe\x3f\x95\x32\x68\xfd\xff\x98\xfb\x77\x87" "\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x27\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x9d\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x3e\xff\xbf\x7c" "\xff\xfa\xff\xc3\x49\xff\xbf\xbb\xfe\xf7\xff\xe3\x43\xd4\xff\xd7\xff\xd7" "\xff\xf7\xf9\xff\xfa\xff\xac\x34\x68\xfd\xff\x98\xfb\xef\x0a\x33\xa9\x49" "\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x03\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xe5\xfb\xd7\xff\x1f" "\x4e\xfa\xff\xdd\xf9\xfc\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xd9\xa0" "\xfb\x7f\xbf\xf5\xab\xcb\xeb\xff\x4f\x94\xdd\x71\x5f\xfa\xff\x31\xf7\x1f" "\x0c\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xd5\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\xbf\x94\xcf\x7f\x5e\xbe\x42\xfe\x07\x00\x00" "\x80\xca\x28\x72\xff\x64\xf6\xcb\x61\x26\x35\xc9\xff\xfa\xff\x6d\xdd\xf3" "\xe6\xc3\xd5\xff\xd7\xff\xd7\xff\xd7\xff\xcf\xe9\xff\x0f\x27\xfd\xff\xee" "\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x56\xed\xff\x87\xe8" "\x5d\xde\xff\x2f\xd5\x97\xfe\x7f\xcc\xfd\x77\x87\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\x2b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x14\x66\x52\x93\xfc" "\xaf\xff\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xcb\xf7\xbf\xd9\xfd\xff\xf8" "\x49\xb7\xfa\xff\x1b\xa3\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xf4\xd5\xe5\x7d\xfe\x7f\xa9\xbe\xf4\xff\x63\xee\x7f\x6d\x98\x49" "\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xf7\x84\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf5" "\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xe5\xfb\xf7" "\xf9\xff\xc3\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xab\x41\xeb\xff\xc7\xdc\xff\x86\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xa6\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x37\x87\x99\xd4\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x97\xef\x5f\xff\x7f\x38\xe9\xff\x77\xa7" "\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x35\x68\xfd\xff\x98\xfb" "\x7f\x35\xcc\xa4\x26\xf9\x1f\x00\x00\x00\x86\xd2\xe4\xfa\x36\x8f\xb9\xff" "\xde\xce\x1b\xcb\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x25\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\xad\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xe5\xfb\xd7\xff\x1f\x4e\xfa\xff\xdd\x0d\x59\xff\xff" "\xe7\x57\x85\xcb\xf5\xff\x0b\xfa\xff\x83\x7d\xfc\xeb\xed\xff\x8f\x75\x7c" "\xfd\x9c\xf4\xff\xbf\xb7\x5a\xff\x7f\x69\x4b\xe7\xed\xf5\xff\x79\x2e\x0c" "\x5a\xff\x3f\xe6\xfe\xb7\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc" "\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x77\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xff\x5a\x98\x49\x4d\xf2\xbf\xfe\x7f\xf3\x38" "\x96\xdb\xcb\xfa\xff\x55\xed\xff\x8f\xe8\xff\x0f\x5e\xff\xff\x6f\xbf\x93" "\x65\xfa\xff\xfa\xff\x7d\xa7\xff\xdf\xdd\x90\xf5\xff\x7d\xfe\x7f\x07\xfd" "\xff\xc1\x3e\x7e\x9f\xff\xaf\xff\xcf\x4a\x83\xd6\xff\x8f\xb9\xff\x9d\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x17\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xbb\xc2\x4c\x6a\x92\xff\xf5\xff\x7d\xfe\x7f\x3d\xfa\xff\x3e\xff\x3f\x1b" "\xbc\xfe\xbf\xcf\xff\x6f\x39\xab\xfa\xff\xfd\xa3\xff\xdf\x9d\xfe\x7f\x0f" "\xfa\xff\xfa\xff\x83\xd6\xff\xff\x4f\xfd\x7f\x86\xdb\xa0\xf5\xff\x63\xee" "\x7f\x20\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x77\x87\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x7a\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x7b\xc2\x4c\x6a\x92\xff\xf5\xff\x87\xa5\xff\x3f\x35\xa4\xfd" "\xff\x47\xf4\xff\x9f\xc3\xfe\xff\x0d\x57\x15\xdb\xe9\xff\xeb\xff\xb3\x4c" "\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\x07\xad\xff\xef\xf3\xff\x19\x72" "\x83\xd6\xff\x8f\xb9\xff\xbd\x61\x26\x6b\xcf\xff\x93\x6b\xde\x12\x00\x00" "\x00\x78\x5e\xc4\xdc\xff\x1b\x61\x26\x35\xf9\xfb\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb7\xc2\x4c" "\x6a\x92\xff\xf5\xff\x87\xa5\xff\xef\xf3\xff\x33\xfd\x7f\x9f\xff\xdf\xf1" "\x78\xf4\xff\xf5\xff\xcb\x6c\x5e\xff\x3f\xbe\xf3\xe8\xff\xeb\xff\xeb\xff" "\x47\xfa\xff\xfa\xff\xfa\xff\x74\x1a\xb4\xfe\x7f\xcc\xfd\xbf\x1d\x66\x52" "\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xfb\xc2\x4c\xe4\x7f\x00\x00\x00" "\x18\x0a\x65\xff\x4f\x76\xa7\x98\xfb\x0f\x87\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x1f\x09\x33\xa9\x49\xfe\xd7\xff\x5f\x43\xff\x7f\x4b\xef\xfb" "\xd3\xff\x6f\x3f\x7e\xfd\xff\xf2\xf5\xb1\xae\xfe\xff\x9f\xec\xfc\x97\xef" "\x7c\xf3\xed\x47\x76\xeb\xff\xeb\xff\xeb\xff\xaf\xcb\xa6\x7e\xfe\x7f\xf3" "\xc5\xef\xf3\xff\xf5\xff\xf5\xff\x13\xfd\xff\xaa\xf5\xff\xb3\x4c\xff\x9f" "\x8d\x1a\xb4\xfe\x7f\xcc\xfd\x47\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xff\x9d\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x63\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x73\x61\x26\x35\xc9\xff\xfa\xff\x3e" "\xff\x5f\xff\x7f\x40\xfb\xff\x43\xfc\xf9\xff\xf1\x7c\xe8\xff\xb7\xeb\x5b" "\xff\x3f\xbe\xe9\xea\xff\x97\x2a\xfa\xf7\x69\x15\x3d\xb7\xfd\xff\x77\x2f" "\xf7\xc4\xf5\xff\xd7\xdb\xff\x9f\x28\xbd\x54\xff\x5f\xff\x7f\x98\x8f\xbf" "\x7a\xfd\x7f\x9f\xff\xcf\xc6\x0d\x5a\xff\x3f\xe6\xfe\xf9\x30\x93\x9a\xe4" "\x7f\x00\x00\x00\xa8\x83\x90\xfb\x47\x8e\x17\x73\xf9\x0a\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x13\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef" "\x0f\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xe5\xfb" "\xef\xd6\xff\x6f\x8c\xf9\xfc\xff\x41\x95\xfa\xf7\x3f\xcd\x5f\x28\xfa\xff" "\x1d\x06\xa7\xff\x5f\xae\xbd\xff\xff\x88\xfe\x7f\x07\xfd\xff\xc1\x3e\x7e" "\xfd\x7f\xfd\x7f\x56\x1a\xb4\xfe\x7f\xcc\xfd\x0b\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x83\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x27\xc3\x4c\x6a\x92" "\xff\xf5\xff\x87\xaf\xff\x1f\xb7\xd5\xff\xd7\xff\xd7\xff\xaf\xe9\xe7\xff" "\xeb\xff\x77\xb5\xd1\xfe\xbd\xfe\x7f\x30\x10\xfd\x7f\x9f\xff\xdf\x69\xd3" "\xfa\xff\xff\xfd\x7f\xec\xdd\xc7\x93\x6c\xe5\x79\xc7\xf1\x1e\xfb\xe2\x3b" "\xb7\xf0\xc2\x0b\x57\x79\xe1\x8d\xab\xbc\xf4\xd2\x4b\x16\xf6\xda\xfe\x03" "\xbc\xf0\xc6\x1b\x57\xb9\x5c\x65\x1c\xb0\x8d\x33\x17\xe7\x88\x8d\x6d\x94" "\x25\x04\xca\x01\x05\x10\x08\x21\x09\x94\x03\x28\x21\xa1\x0c\x92\x50\xce" "\x01\x05\x10\x12\x75\x55\xcc\x3c\xcf\x33\x33\x3d\x67\xba\x27\xf4\xf4\x9c" "\xf3\xbe\x9f\xcf\x82\x07\x06\x86\x6e\xa8\x5b\x03\x3f\xe6\x7e\x39\xfa\x7f" "\xfd\xbf\xfe\x9f\xd5\x18\x5b\xff\x9f\xbb\xff\x0f\xe2\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x95\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x87\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x47\x71\x4b\x27\xfb\x5f" "\xff\x7f\x92\xfe\x7f\xa7\x52\xf6\xfc\xff\xbd\xef\x7f\x14\xfd\xff\xaf\xe9" "\xff\x0f\x7a\x7d\xfd\xbf\xfe\xbf\x65\xfa\xff\xc5\xf4\xff\x4b\xe8\xff\x3d" "\xff\x5f\xff\xaf\xff\x67\xa5\xc6\xd6\xff\xe7\xee\xff\xe3\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\x7f\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x69\xdc\xd2\xc9" "\xfe\x9f\xeb\xff\x37\x66\x7d\xf6\xff\x99\xf1\x4e\xe2\xf9\xff\xfa\x7f\xcf" "\xff\x9f\x46\xff\xbf\xa9\xff\x9f\xa3\xff\x5f\x8f\xf5\xf6\xff\xd7\x3e\xf9" "\x95\x4f\xff\xaf\xff\xd7\xff\x07\xfd\xff\xa1\xfa\xff\xf3\x07\x7d\xbe\xfe" "\x9f\x16\x8d\xad\xff\xcf\xdd\xff\x67\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\xcf\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xea\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x8b\xb8\xa5\x93\xfd\xbf\xba\xe7\xff" "\x5f\xd8\xfa\xf8\x44\xfb\xff\xa2\xff\xd7\xff\x6f\x7d\x40\xff\xef\xf9\xff" "\xfa\xff\xc9\xf2\xfc\xff\xc5\x7a\xea\xff\xaf\x7a\xe0\xf2\x2b\x1f\xb9\xe3" "\x17\xef\x3c\xca\xeb\xeb\xff\xf5\xff\x9e\xff\xaf\xff\x67\xb5\xc6\xd6\xff" "\xe7\xee\xff\xcb\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x57\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd7\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x37\x71\x4b\x27\xfb\x7f\x75\xfd\xff\xa4\x9f\xff\x5f\xf4" "\xff\xfa\xff\xad\x0f\xe8\xff\xf5\xff\xfa\xff\xc9\xd2\xff\x2f\xd6\x53\xff" "\x7f\x9c\xd7\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6b\x6c\xfd\x7f\xee\xfe" "\xbf\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x7f\x17\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xc5\xb8\xa5\x93\xfd\xaf\xff\x3f\xfd\xfe\xff\x09\xfd\xbf\xfe\x3f\xae" "\xfe\x5f\xff\xaf\xff\x3f\x7d\xfa\xff\xc5\xf4\xff\x4b\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x2b\x35\xb6\xfe\x3f\x77\xff\xb5\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\xe3\x96\x4e\xf6\xbf\xfe" "\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xa7\x49\xff\xbf\x98" "\xfe\x7f\x09\xfd\xff\x49\xfb\xf9\xcb\xf4\xff\xfa\x7f\xfd\x3f\xbb\x1d\xb1" "\xff\x7f\x7c\xc1\x97\xed\x95\xf4\xff\xb9\xfb\xff\x29\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\xff\x73\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xff\x4b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x6b\xdc\xd2\xc9\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x63\xf7\xff\xfb\x7f\xe8\x6d\xd1\xff\x0f" "\xd3\xff\xaf\x87\xfe\x7f\xb1\xd1\xf4\xff\x1b\xe7\x06\x3f\xac\xff\x9f\x7c" "\xff\xef\xf9\xff\xfa\x7f\xfd\x3f\x7b\x8c\xed\xf9\xff\xb9\xfb\xff\x2d\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x7b\xdc\xb2\x60\xff\x1f\xf9" "\x3f\xe6\x03\x00\x00\x00\x67\x2a\x77\xff\x7f\xc4\x2d\xbe\xff\x0f\x00\x00" "\x00\x93\x97\xd5\x59\xee\xfe\xff\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xef\xf9\xff\xc3\xaf\xbf\xa8\xff\xbf\x73\xd7\xfb\xd3\xff\x8f\x8b" "\xfe\x7f\xb1\xd1\xf4\xff\x07\xd0\xff\xeb\xff\xa7\xfc\xfe\xf5\xff\xfa\x7f" "\xf6\x1b\x5b\xff\x9f\xbb\xff\xbf\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xdf\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x3f\x71\x4b\x27\xfb\x7f\xb8\xff\xdf\xf9" "\xfd\xfa\xff\xc3\xd1\xff\xef\x7d\xff\xfa\xff\xe1\x1f\x1f\xab\xea\xff\xf3" "\xcf\xa8\xff\x5f\xd8\xff\xff\xba\xe7\xff\xf7\x49\xff\xbf\xd8\xfa\xfb\xff" "\xf3\xfa\xff\xbd\x7f\xfe\x63\xf6\xff\xdb\x5f\x71\xf4\xff\xe3\x7e\xff\x8d" "\xf7\xff\x17\x96\x7d\xbe\xfe\x9f\x21\x63\xeb\xff\x73\xf7\x5f\x1f\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xff\x37\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xff\x2f\x6e\xb1\xff\x01\x00\x00\x60\xd2\x7e\xf5\xe7\x77\x5a" "\xb0\xdc\xfd\xff\x1f\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\x9f\x5e\xff" "\xef\xf9\xff\xdb\xce\xf2\xf9\xff\xb3\xb5\xf7\xff\xe7\xf4\xff\x87\xa4\xff" "\x5f\xcc\xf3\xff\x97\x18\x6d\xff\xbf\x4d\xff\x3f\xee\xf7\xdf\x78\xff\xef" "\xf9\xff\x1c\xcb\xd8\xfa\xff\xdc\xfd\x37\xc4\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\xc1\x0d\x8f\xcd\xb6\x76\xff\x53\x66\x33\xfb\x1f\x00\x00\x00\xa6\x68" "\xf7\xcf\x1d\x98\xff\x09\xa5\x21\x77\xff\x53\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x69\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xc3\xaf\x3f\xae\xfe\xdf\xf3\xff\x0f\x6b\xd2\xfd\xff\xb9\x9d\x5f\xd5" "\xff\xeb\xff\x87\x4c\xb4\xff\x3f\xd7\x58\xff\x7f\xe3\x41\x9f\x3f\x86\xfe" "\xff\x1a\xfd\x3f\x23\xb3\xa7\xff\xbf\x7b\xe7\xe3\x67\xd5\xff\xe7\xee\x7f" "\x7a\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x46\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\x3f\x33\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x9f\x15\xb7\x74\xb2\xff\x4f\xbd\xff\xbf\x70\xf0\x6b\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\x6a\x93\xee\xff\x3d\xff\x5f\xff\xdf\x66\xff" "\xef\xf9\xff\x9e\xff\xaf\xff\xef\xd8\x4e\xff\xbf\xf7\xeb\xe1\x59\xf5\xff" "\xb9\xfb\x9f\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x13\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x73\xe3\x96\x4e\xf6\xbf\xe7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf0\xeb\xeb\xff\xa7\x49\xff\xbf\x98\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\xa5\xf6\x3c\xff\x7f\x97\xb3\xea\xff\x73\xf7\xdf\x14\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\xe7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf3\xe3\x96" "\x4e\xf6\xbf\xfe\xff\x74\xfb\xff\xfc\xb8\xfe\x5f\xff\x3f\xd3\xff\xeb\xff" "\xf5\xff\x6b\xd1\x6d\xff\xbf\x31\xf4\x4f\xa2\xfd\x0e\xe8\xff\xef\xfb\xbd" "\x8b\xbf\xb9\xf7\x23\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x05\x46\xd1" "\xff\x5f\xda\xf9\xb7\xcb\xdc\xfd\x2f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x17\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8b\xe3\x96\x23\xee\xff\x9f\x5b\xe9" "\xbb\x5a\x1f\xfd\xff\xf1\xfa\xff\xcd\xb9\xdf\xf6\xfc\xff\xbd\xef\x5f\xff" "\x3f\xfc\xe3\x43\xff\xaf\xff\xd7\xff\x9f\xbe\x6e\xfb\xff\x43\xf2\xfc\xff" "\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x3a\x95\xfe\xff\xd1\x9d\x2f\xee" "\x47\x7d\xfe\x7f\xee\xfe\x97\xc4\x2d\xbe\xff\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xd2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x59\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xbf\x3c\x6e\xe9\x64\xff\xeb\xff\x4f\xf7\xf9\xff" "\xfa\x7f\xfd\xff\x4c\xff\xbf\xf3\xe3\xb2\x93\xfe\x7f\xfe\xff\x0f\x92\xf4" "\xff\xeb\xa1\xff\x5f\x4c\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x52" "\xa7\xd2\xff\xef\x72\xd4\xfe\x3f\x77\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xca" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x55\xdc\xd2\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\x7b\xfe\xff\x34\xe9\xff\x17\xd3" "\xff\xcf\x66\xb3\x5b\x17\xbc\x81\xa1\xfe\xff\xd2\x79\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xe7\x98\xc6\xd6\xff\xe7\xee\x7f\x75\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\xbf\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8b" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xd7\xc4\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9a\xf4\xff\x8b\xe9\xff" "\x97\xf0\xfc\xff\x93\xf6\xf3\x97\xf4\xff\xfa\x7f\xfd\x3f\xbb\x8d\xad\xff" "\xcf\xdd\x7f\x7b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x23\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x77\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x95" "\xfe\xff\xa2\xfe\x7f\x9e\xfe\x7f\x3d\x4e\xaf\xff\x9f\xe9\xff\xf5\xff\xfa" "\xff\x25\x3c\xff\x5f\xff\xaf\xff\x67\xde\xba\xfa\xff\xc7\xe3\xeb\xfd\xb2" "\xfe\x3f\x77\xff\xeb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x5d" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x43\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xcf\xff\x1f\x7e\x7d\xfd\xff\x34\x79\xfe\xff\x62\xfa\xff\x25\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x95\x5a\x57\xff\x7f\x50\xef\x3f\xff\xdb\xb9\xfb\xdf" "\x18\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8e\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x4d\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xdf\xdb\xff\xcf\x66\xfa\x7f\xfd\xbf" "\xfe\x7f\xdb\x1a\xfa\xff\xcd\x99\xfe\x7f\xe5\xf4\xff\x8b\xe9\xff\x97\xd0" "\xff\xb7\xd9\xff\xff\xd4\xac\xa1\xfe\xff\xc2\x81\x9f\xaf\xff\x67\x8c\xc6" "\xd6\xff\xe7\xee\x7f\x73\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x4b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x35\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xdf\x16\xb7\xb4\xb4\xff\x9f\x38\x38\x7d\x9b\x7e\xff" "\x7f\x7e\xee\x13\xf5\xff\xb3\xd9\xec\xc1\xab\x3d\xff\x5f\xff\xbf\xe0\xf5" "\xf5\xff\xa3\xe9\xff\xeb\xef\xaa\xfe\x7f\x75\xf4\xff\x8b\xe9\xff\x97\xd0" "\xff\xb7\xd9\xff\x7b\xfe\xbf\xfe\x9f\x33\x33\xb6\xfe\x3f\x77\xff\xdb\xe3" "\x96\x96\xf6\x3f\x00\x00\x00\x74\x2e\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xae" "\xb8\xa5\x93\xfd\xbf\xa7\xff\x7f\x74\x27\x3c\xcb\xdf\x3f\xfe\xfe\x7f\xfe" "\x13\xf5\xff\xb3\x13\x3d\xff\x5f\xff\xbf\xf5\x01\xfd\xbf\xfe\x5f\xff\x3f" "\x59\x27\xed\xef\x6f\xda\x8c\x7f\xa6\xe9\xff\xf5\xff\xfa\xff\xc1\x7e\x7e" "\xe3\x80\x7f\xef\x99\xe9\xff\xf5\xff\xfa\x7f\x06\x8c\xad\xff\xcf\xdd\xff" "\xee\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x6f\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xef\x89\x5b\x3a\xd9\xff\xd3\x7f\xfe\xff\xfc\x27\xea\xff\x67\xfa\xff\x2e" "\xfa\xff\x4d\xfd\xbf\xfe\x5f\xff\x3f\x68\x2c\xcf\xff\xbf\xe2\x8a\xdf\xb8" "\x5f\xff\xaf\xff\x6f\xb1\xff\x5f\x44\xff\xaf\xff\xd7\xff\x33\x6f\x6c\xfd" "\x7f\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xf7\xc5" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xfb\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x03\x71\x4b\x27\xfb\x7f\x7f\xff\x7f\xd9\x6c\xbb\x50\xdd" "\x36\xd4\xff\x47\xa3\xa6\xff\xdf\x45\xff\xbf\xf7\xfd\xeb\xff\x87\x7f\x7c" "\x78\xfe\xbf\xfe\x5f\xff\x7f\xfa\xc6\xd2\xff\x7b\xfe\xff\xf1\xde\xbf\xfe" "\x5f\xff\x3f\xe5\xf7\x7f\xa4\xfe\xff\x97\xf6\x7f\xbe\xfe\x9f\x16\x8d\xad" "\xff\xcf\xdd\x7f\x7f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x60" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x28\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x1f\x88\x5b\x3a\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xc3\xaf\xaf\xff\x9f\x26\xfd\xff\x62\xfa\xff\x25\xf4\xff\x27\xef" "\xe7\xf3\xab\xaa\xfe\x7f\xba\xcf\xff\xff\x69\xfd\x3f\xab\x33\xb6\xfe\x3f" "\x77\xff\x87\xe3\x96\xad\xe1\xf7\xcb\x3f\x7b\xcc\xbf\x4c\x00\x00\x00\x60" "\x44\x72\xf7\x7f\x24\x6e\xe9\xe4\xfb\xff\x00\x00\x00\xd0\x83\xdc\xfd\x1f" "\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x8f\xc5\x2d\x9d\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9a\xf4\xff\x8b\xe9" "\xff\x97\xe8\xa7\xff\xdf\x1c\xfa\xe0\x59\xf7\xf3\x27\x75\xd6\xef\xbf\x99" "\xfe\xdf\xf3\xff\x59\xa1\xb1\xf5\xff\xb9\xfb\x3f\x1e\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x6d\x8f\x6d\xfd\x32\x77\xff\x27\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x93\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x60\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\xdb\xef\xff\x7f\x47\xff\x3f\xf7\xfa\xfa\x7f" "\xfd\x7f\xcb\xf4\xff\xf9\x4f\xf4\x61\xfa\xff\x25\xfa\xe9\xff\x07\x9d\x75" "\x3f\x3f\xf5\xf7\x5f\xfd\xff\xa5\xf3\xfa\x7f\xfd\x3f\x61\x6c\xfd\x7f\xee" "\xfe\x87\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xa7\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x99\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xdf\x98\xf5\xd8\xff\x7b" "\xfe\x7f\x2b\xfd\xff\xe6\xdc\x5f\x8f\xfe\x5f\xff\x3f\x64\x3a\xfd\xff\xcd" "\xe7\x86\x3e\xea\xf9\xff\xfa\x7f\xfd\xff\x74\xdf\xbf\xe7\xff\xeb\xff\xd9" "\x6f\x6c\xfd\x7f\xee\xfe\x87\x37\xce\x75\xb9\xff\x01\x00\x00\x60\xaa\x7e" "\xeb\x57\x7e\xff\xa1\xc3\xfe\xb1\x0f\x6f\xfd\x72\x73\xf6\xd9\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x7f\x3e\x6e\xe9\x64\xff\xeb\xff\xfb\xea\xff\xfb\x7c\xfe\xbf\xfe\xbf" "\x95\xfe\xdf\xf3\xff\xf5\xff\x87\x31\x9d\xfe\x7f\x98\xfe\x5f\xff\xaf\xff" "\x9f\xee\xfb\xd7\xff\xeb\xff\xd9\x6f\x6c\xfd\x7f\xee\xfe\x2f\xc4\x2d\xbb" "\x86\xdf\xe0\xff\xa0\x07\x00\x00\x00\x38\x3b\x3f\x73\xb4\x3f\x3c\x77\xff" "\x17\xe3\x96\x4e\xbe\xff\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa5\xb8\x65\xdf" "\xfe\xbf\x74\xc8\x9f\xd5\x0e\x00\x00\x00\x8c\x4d\xee\xfe\x2f\xc7\x2d\x9d" "\x7c\xff\x5f\xff\x3f\xf2\xfe\x7f\x76\x4a\xfd\x7f\xfc\x71\xfa\xff\x6d\xfa" "\x7f\xfd\xff\xd0\xeb\xeb\xff\xa7\x49\xff\xbf\xd8\x09\xfb\xff\x4b\x1b\xfa" "\x7f\xfd\xff\x02\xfa\x7f\xfd\xbf\xfe\x9f\x79\x63\xeb\xff\x73\xf7\xdf\x75" "\xfb\xac\xcb\xfd\x0f\x00\x00\x00\x8d\xda\xf3\x5f\x14\xbe\xb2\xf5\xcb\xcd" "\xd9\x57\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6b\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xf5\xb8\xa5\x93\xfd\xaf\xff\x1f\x79\xff\x7f" "\xac\xe7\xff\x5f\xa8\x5f\xf3\xfc\xff\xce\xfb\xff\xeb\x36\x07\x5f\x5f\xff" "\xaf\xff\x6f\x99\xfe\x7f\xb1\xb5\x3c\xff\x7f\x53\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\x3b\x42\xff\xbf\x35\x48\x4f\xbb\xff\xcf\xdd\xff\x8d\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xcd\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x56\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3b" "\x6e\xe9\x64\xff\xeb\xff\xcf\xa0\xff\xbf\xfe\xfc\x6c\x76\xaa\xfd\xff\x21" "\x9e\xff\xaf\xff\xef\xa3\xff\x3f\xe0\xf5\xdb\xe9\xff\x7f\xe1\xf2\x8b\xf7" "\xfe\xf6\xef\xde\x76\x8b\xfe\x9f\x1d\xeb\xec\xff\xf3\xc7\x82\xfe\xdf\xf3" "\xff\xf5\xff\xdb\xf4\xff\xfa\x7f\xfd\x3f\xf3\xc6\xf6\xfc\xff\xdc\xfd\xdf" "\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\xc4\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x77\xe3\x96\x27\xf7\xff\x3d\x67\xf5\xae\x00\x00" "\x00\x80\x55\xca\xdd\xff\xbd\xb8\xa5\x93\xef\xff\xeb\xff\x5b\x7c\xfe\xff" "\x34\xfb\xff\xfc\x7b\x7d\x06\xfd\xff\xc5\xe9\xf5\xff\xd9\x14\xf7\xde\xff" "\x7b\xfe\xbf\xfe\x7f\x3f\xcf\xff\x5f\x4c\xff\xbf\x84\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\x52\x63\xeb\xff\x73\xf7\x7f\x3f\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\xff\x20\x6e\xc9\xfd\xbf\x71\xe4\xff\x74\x0f\x00\x00\x00" "\x8c\x4c\xee\xfe\x47\xe3\x16\xdf\xff\x07\x00\x00\x80\x66\xe4\xee\x7f\x2c" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x63\xe9\xff\x93\xe7\xff\xef\x7c\x9e\xe7" "\xff\x6f\xd3\xff\xcf\xf7\xff\x97\xcd\xf4\xff\x07\xd3\xff\x2f\xa6\xff\x5f" "\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\xb1\xf5\xff\xb9\xfb\x7f\x18\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x8f\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xe3" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xa8\xff\xaf\x30\x52\xff" "\x3f\xcc\xf3\xff\xd7\x43\xff\xbf\x98\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xa5\x86\xfa\xff\xdd\x5f\x19\xd7\xdd\xff\xe7\xee\xff\x49\x00\x00" "\x00\xff\xff\xd1\x69\x6f\x15", 25243); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_NOSUID*/ 2, /*opts=*/0x2000000003c0, /*chdir=*/1, /*size=*/0x629b, /*img=*/0x200000000bc0); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x64842 (8 bytes) // mode: open_mode = 0x22 (8 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file1\000", 8); res = syscall( __NR_open, /*file=*/0x200000000080ul, /*flags=O_NONBLOCK|O_NOFOLLOW|O_NOATIME|O_DIRECT|O_CREAT|0x2*/ 0x64842ul, /*mode=S_IWOTH|S_IRGRP*/ 0x22ul); if (res != -1) r[0] = res; // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 62 66 71 2e 69 6f 5f 73 65 72 76 69 63 65 // 64 5f 72 65 63 75 72 73 69 76 65 00} (length 0x20) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000440, "blkio.bfq.io_serviced_recursive\000", 32); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000440ul, /*flags=*/0x275a, /*mode=*/0); // pwritev2 arguments: [ // fd: fd (resource) // vec: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {85} (length 0x1) // } // len: len = 0x140000 (8 bytes) // } // } // } // vlen: len = 0x1 (8 bytes) // off_low: int32 = 0x7800 (4 bytes) // off_high: int32 = 0x0 (4 bytes) // flags: rwf_flags = 0x3 (8 bytes) // ] *(uint64_t*)0x200000000240 = 0x200000000000; memset((void*)0x200000000000, 133, 1); *(uint64_t*)0x200000000248 = 0x140000; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x200000000240ul, /*vlen=*/1ul, /*off_low=*/0x7800, /*off_high=*/0, /*flags=RWF_HIPRI|RWF_DSYNC*/ 3ul); } 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; for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }