// https://syzkaller.appspot.com/bug?id=5d745d691f199cac6bfcfaf0b47ce55937c500a9 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x60f4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x60f4) // } // ] // returns fd_dir memcpy((void*)0x200000000700, "jfs\000", 4); memcpy((void*)0x200000000300, "./bus\000", 6); memcpy( (void*)0x200000008180, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\xae\xd7\x2f\xa5\xa9" "\xd5\x43\x55\x22\x84\xdc\x94\xb7\x52\x9a\xd7\x12\x02\x05\x9a\x1e\xe0\xc0" "\x85\x03\xca\x15\x25\x72\xdd\x2a\xc2\x05\x94\x04\x94\x56\x11\x71\x65\x0e" "\x1c\xf8\x23\x40\x48\x1c\x11\xe2\xc8\x89\x3f\xa0\x07\xae\xdc\xf8\x03\x88" "\x94\x20\x81\x7a\x62\xd0\x78\x9f\xc7\x1e\x4f\x76\xb3\x8e\x1c\xef\xac\x3d" "\x9f\x8f\xe4\xcc\xfe\xe6\x99\x59\x3f\x93\xef\x8e\xf7\x65\x66\xf6\x09\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x7e\xf0\xfd\x1f\x5d" "\x28\x22\xe2\xfa\x2f\xd3\x8c\xd5\x88\xcf\x44\x3f\xa2\x17\xb1\x5c\xd5\x6b" "\x11\xb1\xbc\xb6\x9a\x97\x1f\x44\xc4\xcb\xb1\xd3\x1c\x2f\x45\xc4\xc2\x62" "\x44\xb5\xfe\xce\x3f\x2f\x44\xbc\x19\x11\x9f\x9c\x8a\x78\xf8\xe8\xde\x7a" "\x35\xfb\xe2\x01\xfb\xf1\xbd\x3f\xff\xe3\x0f\x3f\x7e\xee\x87\x7f\xff\xd3" "\xc2\xb9\xff\xfe\xe5\x4e\xff\xad\x49\xcb\xdd\xbd\xfb\xdb\xff\xfc\xf5\xfe" "\xe1\xb6\x19\x00\x00\x00\xba\xa6\x2c\xcb\xb2\x48\x6f\xf3\x4f\xa7\xf7\xf7" "\xbd\xb6\x3b\x05\x00\xcc\x44\x7e\xfe\x2f\x93\x3c\xff\x38\xd4\xc3\xda\x76" "\xcc\x43\x7f\xd4\xea\x9d\x62\xb8\x37\x63\x2e\xfa\xa3\x9e\x61\xbd\xb9\x54" "\x9f\xd3\x7e\x7f\xd4\xea\xc7\xeb\xba\xb2\xe6\xd7\x4b\xbb\xf5\xfd\xfa\xfc" "\x88\xd8\xaa\xaf\x53\xbd\x66\x70\x38\x1e\x00\x8e\x99\xad\xf8\xb4\xed\x2e" "\xd0\x22\xf9\x77\xda\x20\x22\x9e\x6b\xbb\x13\xc0\x5c\x2b\xda\xee\x00\x47" "\xe2\xe1\xa3\x7b\xeb\x45\xca\xb7\xa8\x3f\x1f\xac\x8d\xda\xf3\xb9\x20\xfb" "\xf2\xdf\x2a\x76\xaf\xef\x98\x34\x9d\xa6\x79\x8e\xc9\xac\x1e\x5f\xdb\xd1" "\x8f\x17\x27\xf4\x67\x79\x46\x7d\x98\x27\x39\xff\x5e\x33\xff\xeb\xa3\xf6" "\x7c\x6c\xed\xa8\xf3\x9f\x95\x49\xf9\x0f\x47\x97\x3e\x75\x4e\xce\xbf\xdf" "\xcc\xbf\xe1\xe4\xe4\xdf\x1b\x9b\x7f\x57\xe5\xfc\x07\x4f\x95\x7f\x5f\xfe" "\x00\x00\x00\x00\x00\x30\xc7\xf2\xe7\xff\xab\x2d\x1f\xff\x5d\x3c\xfc\xa6" "\x1c\xc8\x93\x8e\xff\xae\x1d\xec\x2e\xae\x3e\xeb\x3e\x01\x00\x00\x00\x00" "\x00\x00\xc0\x61\x1d\x76\xfc\xbf\x5d\xc6\xff\x03\x00\x00\x80\xb9\x55\xbd" "\x57\xaf\xfc\xee\xd4\xde\xbc\x49\x27\xb8\x57\x6f\xf1\xaf\x15\x11\xcf\x37" "\x96\x07\x3a\x26\x5d\x2c\xb3\xd2\x76\x3f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\x4b\x06\xa3\x73\x78\xaf\x15\x11\x0b\x11\xf1\xfc\xca\x4a\x59" "\x96\xd5\x4f\x5d\xb3\x7e\x5a\x87\x5d\xff\xb8\xeb\xfa\xf6\x43\x97\xb5\xfd" "\x47\x1e\x00\x00\x46\x3e\x39\xd5\xb8\x96\xbf\x88\x58\x8a\x88\x6b\xe9\xbb" "\xfe\x16\x56\x56\x56\xca\x72\x69\x79\xa5\x5c\x29\x97\x17\xf3\xeb\xd9\xe1" "\xe2\x52\xb9\x5c\x7b\x5f\x9b\xa7\xd5\xbc\xc5\xe1\x01\x5e\x10\x0f\x86\x65" "\x75\x67\x4b\xb5\xf5\xea\xa6\xbd\x5f\x9e\xd6\xde\xbc\xbf\xea\x77\x0d\xcb" "\xfe\x01\x3a\x36\x1b\x2d\x06\x0e\x00\x11\x31\x7a\x36\x7a\xe8\x19\xe9\x84" "\x29\xcb\x17\xa2\xed\x57\x39\x1c\x0f\xf6\xff\x93\xc7\xfe\xcf\x41\xb4\xfd" "\x38\x05\x00\x00\x00\x8e\x5e\x59\x96\x65\x91\xbe\xce\xfb\x74\x3a\xe6\xdf" "\x6b\xbb\x53\x00\xc0\x4c\xe4\xe7\xff\xe6\x71\x01\xb5\x5a\xad\x56\xab\xd5" "\x27\xaf\xae\x2b\xc7\xbb\x5f\x2f\x22\x62\xab\xbe\x4e\xf5\x9a\xc1\x70\xfc" "\x00\x70\xcc\x6c\xc5\xa7\x6d\x77\x81\x16\xc9\xbf\xd3\x06\x11\xf1\x72\xdb" "\x9d\x00\xe6\x5a\xd1\x76\x07\x38\x12\x0f\x1f\xdd\x5b\x2f\x52\xbe\x45\xfd" "\xf9\x20\x8d\xef\x9e\xcf\x05\xd9\x97\xff\x56\xb1\xb3\x5e\x5e\x7f\xdc\x74" "\x9a\xe6\x39\x26\xb3\x7a\x7c\x6d\x47\x3f\x5e\x9c\xd0\x9f\x97\x66\xd4\x87" "\x79\x92\xf3\xef\x35\xf3\xbf\x3e\x6a\x1f\xa6\xe5\xf6\xe5\x53\x4c\xce\xfd" "\x80\xf9\x17\x8d\x8f\x11\x67\x66\x52\xfe\xd5\x76\xae\xb6\xd0\x9f\xb6\xe5" "\xfc\xfb\xcd\xfc\x1b\x8e\x7a\xff\x9f\x95\xed\xe8\x8d\xcd\xbf\xab\x72\xfe" "\x83\xa7\xca\xbf\x2f\x7f\x00\x00\x00\x00\x00\x98\x63\xf9\xf3\xff\x55\xc7" "\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\xb1\xf3\xf0\xd1\xbd\xf5\x7c" "\xdd\x6b\x3e\xfe\xff\xb9\x31\xcb\xb9\xfe\xf3\x64\xca\xf9\x17\xf2\xef\xa4" "\x9c\x7f\xaf\x91\xff\x57\x1a\xcb\xf5\x6b\xb7\x1f\xbc\xb3\x97\xff\xbf\x1f" "\xdd\x5b\xff\xe3\x9d\x7f\x7d\x36\x4f\x0f\x9a\xff\x62\xbe\x51\xa4\x47\x56" "\x91\x1e\x11\x45\xfa\x4d\xc5\x20\x4d\x0f\xb3\x75\x8f\xdb\x5e\xe8\x0f\x47" "\xdb\x3a\xba\xe3\xb5\x88\x28\x17\xde\x8b\x9b\xb1\x19\x1b\x71\x7e\xdf\xb2" "\xbd\xf4\xff\xb1\xd7\x7e\x61\x5f\x7b\xd5\xd3\x85\x7d\xed\x17\xf7\xb5\x0f" "\x1e\x6b\xbf\xb4\xaf\x7d\x21\x7d\xef\x40\xb9\x9c\xdb\xcf\xc6\x7a\xfc\x2c" "\x36\xe3\xdd\x9d\xf6\xaa\x6d\x71\xca\xf6\x2f\x4d\x69\x2f\xa7\xb4\xe7\xfc" "\xfb\xf6\xff\x4e\xca\xf9\x0f\x6a\x3f\x55\xfe\x2b\xa9\xbd\x68\x4c\x2b\x0f" "\x3e\xee\x3d\xb6\xdf\xd7\xa7\xe3\x7e\xcf\xd5\x9b\x9f\xff\xcd\xf9\xa3\xdf" "\x9c\xa9\xb6\xa3\xbf\xbb\x6d\x75\xd5\xf6\x9d\x69\xa1\x3f\x3b\xff\x27\xcf" "\x0d\xe3\x17\xb7\x37\x6e\x9d\xbd\x7b\xe3\xce\x9d\x5b\x17\x22\x4d\xf6\xcd" "\xbd\x18\x69\xf2\x8c\xe5\xfc\x17\xd2\xcf\xee\xdf\xff\x57\x47\xed\xf9\xef" "\x7e\x7d\x7f\x7d\xf0\xf1\xf0\xa9\xf3\x9f\x17\xdb\x31\x98\x98\xff\xab\xb5" "\xdb\xd5\xf6\xbe\x36\xe3\xbe\xb5\x21\xe7\x3f\x4c\x3f\x39\xff\x77\x53\xfb" "\xf8\xfd\xff\x38\xe7\x3f\x79\xff\x7f\xbd\x85\xfe\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x93\x94\x65\xb9\x73\x89\xe8\xd5\x88\xb8\x9c" "\xae\xff\x69\xeb\xda\x4c\x00\x60\xb6\xf2\xf3\x7f\x99\xe4\xf9\xea\x2e\xd5" "\x4b\xbb\x73\xe7\xa3\x3f\x6a\xb5\x5a\xad\x3e\xaa\xba\xae\x1c\xef\xed\x7a" "\x11\x11\x7f\xab\xaf\x53\xbd\x66\xf8\xd5\xb8\x3b\x03\x00\xe6\xd9\xff\x22" "\xe2\x9f\x6d\x77\x82\xd6\xc8\xbf\xc3\xf2\xf7\xfd\x0d\xf6\xbe\x91\x17\xe8" "\x88\xdb\x1f\x7e\xf4\x93\x1b\x9b\x9b\x1b\xb7\x6e\xef\x7d\xfa\x0b\x00\x00" "\x00\x00\x00\x00\x00\x1c\x2f\x79\xfc\xcf\xb5\xda\xf8\xcf\x5f\x88\x88\xd5" "\xc6\x72\xfb\xc6\x7f\x7d\x27\xd6\x0e\x3b\xfe\xe7\x20\xdf\xd8\x1d\x60\xf4" "\x19\x0f\xf4\x3d\xc1\x76\x6f\xd8\xef\xd5\x86\x1b\x7f\x25\x9e\x3c\xfe\xf7" "\x99\x78\xf2\xf8\xdf\x83\x29\xbf\x6f\x61\x4a\xfb\x70\x4a\xfb\xb4\xb3\xb2" "\xa6\x9d\xb3\x31\xf6\x42\x8f\x9a\x9c\xff\x2b\xb5\xf1\xce\xab\xfc\x4f\x37" "\x86\x5f\x3f\x19\xe3\xbf\x0e\x9e\x38\xfe\x6b\x73\xcc\xfb\x2e\xc8\xf9\x9f" "\xa9\x3d\x9e\xab\xfc\xbf\xdc\x58\xae\x9e\x7f\xf9\xfb\xe3\x9a\xff\x68\xfc" "\xf7\x7a\xfe\xe7\xee\x7c\xf0\xf3\x73\xb7\x3f\xfc\xe8\x8d\x9b\x1f\xdc\x78" "\x7f\xe3\xfd\x8d\x9f\x5e\xba\x70\xe1\xfc\xa5\xcb\x97\xaf\x5c\xb9\x72\xee" "\xbd\x9b\x9b\x1b\xe7\x47\xff\xb6\xd8\xe3\xa3\x95\xf3\xcf\x63\x5f\xe7\xfc" "\xe9\x86\x9c\x7f\xce\x5c\xfe\xdd\x92\xf3\xff\x62\xaa\xe5\xdf\x2d\x39\xff" "\x2f\xa5\x5a\xfe\xdd\x92\xf3\xcf\xaf\xf7\xe4\xdf\x2d\x39\xff\xfc\xde\x47" "\xfe\xdd\x92\xf3\x7f\x2d\xd5\xf2\xef\x96\x9c\xff\x57\x53\x2d\xff\x6e\xc9" "\xf9\xbf\x9e\x6a\xf9\x77\x4b\xce\xff\x6b\xa9\x96\x7f\xb7\xe4\xfc\xdf\x48" "\xf5\xc1\xf2\xef\x1f\x79\xbf\x98\x8d\x9c\xff\xd9\x54\xdb\xff\xbb\x25\xe7" "\x7f\x2e\xd5\xf2\xef\x96\x9c\x7f\x3e\xc2\x25\xff\x6e\xc9\xf9\xe7\x33\x1b" "\xe4\xdf\x2d\x39\xff\x8b\xa9\x96\x7f\xb7\xe4\xfc\x2f\xa5\x5a\xfe\xdd\x92" "\xf3\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xd7\x53\x2d\xff\x6e\xc9\xf9\x5f\x4e" "\xb5\xfc\xbb\x25\xe7\xff\x8d\x54\xcb\xbf\x5b\x72\xfe\x57\x52\x2d\xff\x6e" "\xc9\xf9\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xb7\x52\x2d\xff\x6e\xc9\xf9\xbf" "\x95\x6a\xf9\x77\x4b\xce\xff\xdb\xa9\x96\x7f\xb7\xe4\xfc\xbf\x93\xea\x31" "\xf9\x3b\xd8\x7f\x82\xe5\xfc\xbf\x9b\x6a\xfb\x7f\xb7\xe4\xfc\xdf\x4e\xb5" "\xfc\xbb\x65\xef\xfb\xff\xdd\x70\xe3\xb8\xdc\x88\x88\xad\x39\xe8\xc6\x89" "\xbe\xd1\xf6\x5f\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x69\x46" "\x67\x6b\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\xd9\x81\x03" "\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xc2\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x15\xf6\xee\x2d\x46\xae\xfa\xbe\x03\xf8\xd9\xf5\xae" "\xbd\x36\x37\x27\x10\x6a\xa8\x21\x6b\xe3\x18\x63\x16\x76\x7d\xc1\x97\xb4" "\x2e\x0e\x21\x84\x42\x2e\xe5\x96\x86\x5e\xb0\x5d\xef\xda\x6c\xe2\xcb\xe2" "\xb5\x1b\xa0\x48\x76\x44\xd2\x20\xc5\x51\xa3\x2a\x6d\x79\x69\x73\x11\x6a" "\x79\xa9\x62\x55\x79\x48\x2b\x1a\xf1\xd0\x8b\x22\x55\x0a\xed\x43\xfa\x12" "\xa5\xaa\x94\x07\x54\x91\x88\x44\xaa\x94\x46\x2d\x5b\xcd\x99\xff\xff\xbf" "\x33\xb3\x73\xd9\xb5\xc7\xeb\x99\x73\x3e\x1f\x09\xff\xbc\x33\x67\xe6\x9c" "\x39\x73\xe6\xf2\x5d\xf3\x9d\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\x80\x9e\xb1\xe1\x83\x53\x5f\x18\xc8\xb2\xac\xf2\x5f\xfe\xc7\xda\x2c" "\xbb\xba\xf2\xf7\xd5\xa3\x6b\xf3\xd3\xde\x7f\xa5\xb7\x10\x00\x00\x00\xb8" "\x54\xff\x97\xff\xf9\xf6\x75\xe9\x84\xfd\x8b\xb8\x50\xcd\x32\xff\x7c\xeb" "\xf7\xbe\x35\x37\x37\x37\x97\x7d\x72\xc5\x9f\x0c\x7f\x65\x6e\x2e\x9d\x31" "\x9a\x65\xc3\xab\xb2\x2c\x3f\x2f\xba\xf0\x9f\x4f\x0e\xd4\x2e\x13\xbc\x98" "\x8d\x0c\x0c\xd6\xfc\x3c\xd8\x61\xf5\x2b\x3a\x9c\x3f\xd4\xe1\xfc\xe1\x0e" "\xe7\xaf\xec\x70\xfe\xaa\x0e\xe7\x8f\x74\x38\x7f\xc1\x0e\x58\x60\x75\xf5" "\xf7\x31\xf9\x95\x6d\xca\xff\xba\xb6\xba\x4b\xb3\x1b\xb2\xe1\xfc\xbc\x4d" "\x4d\x2e\xf5\xe2\xc0\xaa\xc1\xc1\xf8\xbb\x9c\xdc\x40\x7e\x99\xb9\xe1\x23" "\xd9\x74\x76\x2c\x9b\xca\x26\xea\x96\xaf\x2e\x3b\x90\x2f\xff\xda\x86\xca" "\xba\x1e\xcc\xe2\xba\x06\x6b\xd6\xb5\xbe\x72\x84\xfc\xf4\x85\xc3\x71\x1b" "\x06\xc2\x3e\xde\x54\xb7\xae\xf9\xeb\x8c\x7e\xfc\x81\x6c\xf4\x67\x3f\x7d" "\xe1\xf0\x5f\x9e\x7e\xeb\xa6\x66\xb3\xe3\x6e\xa8\xbb\xbe\xea\x76\x6e\xd9" "\x58\xd9\xce\xcf\x85\x53\xaa\xdb\x3a\x90\xad\x4a\xfb\x24\x6e\xe7\x60\xcd" "\x76\xae\x6f\x72\x9f\xac\xa8\xdb\xce\x81\xfc\x72\x95\xbf\x37\x6e\xe7\xdb" "\x8b\xdc\xce\x15\xf3\x9b\xb9\xac\x1a\xef\xf3\x91\x6c\x30\xff\xfb\x1b\xf9" "\x7e\x1a\xaa\xfd\xb5\x5e\xda\x4f\xeb\xc3\x69\x3f\xbf\x2d\xcb\xb2\x73\xf3" "\x9b\xdd\xb8\xcc\x82\x75\x65\x83\xd9\x9a\xba\x53\x06\xe7\xef\x9f\x91\xea" "\x11\x59\xb9\x8e\xca\xa1\xf4\xee\x6c\x68\x49\xc7\xe9\x86\x45\x1c\xa7\x95" "\x39\xb9\xa9\xfe\x38\x6d\x7c\x4c\xc4\xfb\x7f\x43\xb8\xdc\x50\x8b\x6d\xa8" "\xbd\x9b\x7e\xfc\xd9\x95\x0b\xee\xf7\xa5\x1e\xa7\x51\xe5\x56\xb7\x7a\xac" "\x34\x1e\x83\xdd\x7e\xac\xf4\xca\x31\x18\x8f\x8b\x37\xf2\x1b\xfd\x52\xd3" "\x63\x70\x53\xb8\xfd\x2f\x6c\x6e\x7d\x0c\x36\x3d\x76\x9a\x1c\x83\xe9\x76" "\xd7\x1c\x83\x1b\xd3\x31\xb8\xba\xf9\x36\x0f\xae\x5c\x91\x6f\x73\xba\x13" "\x06\xf2\xcb\xcc\x1f\x83\xdb\xea\x96\x5f\x91\xaf\x69\x20\x9f\x6f\x6e\x6e" "\x7f\x0c\x8e\x9f\x3e\x3e\x33\x3e\xfb\xdc\xf3\x77\x4d\x1f\x3f\x74\x74\xea" "\xe8\xd4\x89\x1d\xdb\xb6\x4d\xec\xd8\xb5\x6b\xcf\x9e\x3d\xe3\x47\xa6\x8f" "\x4d\x4d\x54\xff\xbc\xa8\x7d\xdd\x0f\xd6\x64\x83\xe9\x31\xb0\x31\xec\xbb" "\xf8\x18\xb8\xbd\x61\xd9\xda\x43\x75\xee\xeb\xdd\x7b\x1c\x8e\xb4\x79\x1c" "\xae\x6d\x58\xb6\xdb\x8f\xc3\xa1\xc6\x1b\x37\xb0\x3c\x0f\xc8\x85\xc7\x74" "\xf5\xb1\xf1\x78\x65\xa7\x8f\x9c\x1f\xcc\x5a\x3c\xc6\xf2\xfb\x67\xeb\xa5" "\x3f\x0e\xd3\xed\xae\x79\x1c\x0e\xd5\xbc\x16\x34\x7d\x4d\x69\xf2\x38\x1c" "\x5a\xc4\xe3\xb0\xb2\xcc\xcc\xd6\xc5\xbd\x67\x19\xaa\xf9\xaf\xd9\x36\x5c" "\xae\xd7\x82\xb5\x35\xc7\x60\xe3\xfb\x91\xc6\x63\xb0\xdb\xef\x47\x7a\xe5" "\x18\x1c\x09\xc7\xc5\x0f\xb6\xb6\x7e\x2d\x58\x1f\xb6\xf7\xa5\xb1\xa5\xbe" "\x1f\x59\xb1\xe0\x18\x4c\x37\x37\x3c\xf7\x54\x4e\x49\xef\xf7\x47\xf6\xe4" "\xa3\xd9\x71\x79\x73\xe5\x8c\xab\x56\x66\x67\x66\xa7\x4e\xdd\xfd\xec\xa1" "\xd3\xa7\x4f\x6d\xcb\xc2\x58\x16\xd7\xd7\x1c\x2b\x8d\xc7\xeb\x9a\x9a\xdb" "\x94\x2d\x38\x5e\x07\x97\x7c\xbc\xee\x9f\xbe\xf5\xa5\x9b\x9b\x9c\xbe\x36" "\xec\xab\x91\xbb\x2a\x7f\x8c\xb4\xbc\xaf\x2a\xcb\xec\xbc\xbb\xfd\x7d\x95" "\xbf\xba\x35\xdf\x9f\x75\xa7\x6e\xcf\xc2\xe8\xb2\xe5\xde\x9f\xcd\x5e\xcd" "\x2b\xfb\x33\x65\xc9\x36\xfb\xb3\xb2\xcc\xe7\xc6\x2f\xfd\xbd\x78\xca\xa5" "\x35\xcf\xbf\xc3\x2d\x9e\x7f\x63\xee\x7f\xa7\xba\xbe\x74\x55\x2f\xae\x18" "\x1e\xaa\x3e\x7e\x57\xa4\xbd\x33\x5c\xf7\x7c\x5c\x7f\x57\x0d\xe5\xcf\x5d" "\x03\xf9\xba\xdf\x1e\x5f\xdc\xf3\xf1\x70\xf8\x6f\xb9\x9f\x8f\x6f\x68\xf3" "\x7c\xbc\xae\x61\xd9\x6e\x3f\x1f\x0f\x37\xde\xb8\xf8\x7c\x3c\xd0\xe9\xb7" "\x1d\x97\xa6\xf1\xfe\x1c\x09\xc7\xc9\xb1\x89\xf6\xcf\xc7\x95\x65\xd6\x6d" "\x5f\xea\x31\x39\xd4\xf6\xf9\xf8\xb6\x30\x07\xc2\xfe\xbf\x23\x24\x85\x94" "\x8b\x6a\x8e\x9d\x56\xc7\x6d\x5a\xd7\xd0\xd0\x70\xb8\x5d\x43\x71\x0d\xf5" "\xc7\xe9\x8e\xba\xe5\x87\x43\x36\xab\xac\xeb\xd5\xed\x17\x77\x9c\x6e\xb9" "\xad\x7a\x5d\x2b\xd2\xad\x9b\xb7\x5c\xc7\xe9\x68\xc3\xb2\xdd\x3e\x4e\xd3" "\xf3\x55\xab\xe3\x74\xa0\xd3\x6f\xdf\x2e\x4e\xe3\xfd\x39\x12\x8e\x8b\x1b" "\x76\xb4\x3f\x4e\x2b\xcb\xbc\xbe\xf3\xd2\x9f\x3b\x53\x4a\xac\x79\xee\x5c" "\xd9\xe9\x18\x1c\x5e\xb1\xb2\xb2\xcd\xc3\xe9\x20\xac\x3e\xdf\xcf\xad\x8e" "\xc7\xe0\xdd\xd9\xe1\xec\x64\x76\x2c\x9b\xcc\xcf\x5d\x99\x1f\x4f\xd5\x44" "\x3a\x76\xcf\xe2\x8e\xc1\x95\xe1\xbf\xe5\x7e\xae\x5c\xd7\xe6\x18\xdc\xd2" "\xb0\x6c\xb7\x8f\xc1\xf4\x3a\xd6\xea\xd8\x1b\x18\x5a\x78\xe3\xbb\xa0\xf1" "\xfe\x1c\x09\xc7\xc5\xcb\xf7\xb4\x3f\x06\x2b\xcb\xdc\xbf\xbb\xbb\xef\x5d" "\xb7\x84\x53\xd2\x32\x35\xef\x5d\x1b\x7f\xbf\xd6\xea\x77\x5e\x37\x37\xec" "\xa6\xcb\xf9\x3b\xaf\xca\x76\xfe\xc3\xee\xf6\xbf\x9b\xad\x2c\x73\x6c\xcf" "\x52\x73\x66\xfb\xfd\x74\x67\x38\xe5\xaa\x26\xfb\xa9\xf1\xf1\xdb\xea\x31" "\x35\x99\x2d\xcf\x7e\x5a\x17\xb6\xf3\xad\x3d\xad\xf7\x53\x65\x7b\x2a\xcb" "\x7c\x65\xef\x22\x8f\xa7\xfd\x59\x96\x9d\x7d\xe6\xbe\xfc\xf7\xbd\xe1\xdf" "\x57\xfe\xe6\xcc\xf7\xbf\x55\xf7\xef\x2e\xcd\xfe\x4d\xe7\xec\x33\xf7\xfd" "\xe4\x9a\x23\xff\xb4\x94\xed\x07\xa0\xff\xbd\x53\x1d\x6b\xaa\xaf\x75\x35" "\xff\x32\xb5\x98\x7f\xff\x07\x00\x00\x00\xfa\x42\xcc\xfd\x83\x61\x26\xf2" "\x3f\x00\x00\x00\x14\x46\xcc\xfd\xf1\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x28" "\x8c\x98\xfb\x87\xc2\x4c\x4a\x92\xff\xd7\xdd\xff\xd6\xf4\x3b\x67\xb3\xd4" "\xcc\x9f\x0b\xe2\xf9\x69\x37\x3c\x54\x5d\x2e\x76\x5c\x27\xc2\xcf\xa3\x73" "\xf3\x2a\xa7\xdf\xf7\xca\xd4\x7f\xff\xdd\xd9\xc5\xad\x7b\x30\xcb\xb2\xff" "\x7d\xe8\x0f\x9a\x2e\xbf\xee\xa1\xb8\x5d\x55\xa3\x61\x3b\x2f\x7c\xa8\xfe" "\xf4\x85\x17\x3c\xbb\xa8\xf5\x1f\x7c\x62\x7e\xb9\xda\xfe\xfa\xd7\xc2\xf5" "\xc7\xdb\xb3\xd8\xc3\xa0\x59\x05\x77\x22\xcb\xb2\xd7\xae\xfb\x52\xbe\x9e" "\xd1\x27\xcf\xe7\xf3\xf5\x87\x0e\xe6\xf3\xd1\x73\x2f\xbd\x58\x59\xe6\xed" "\xbd\xd5\x9f\xe3\xe5\xdf\xbc\xbe\xba\xfc\x9f\x87\xf2\xef\xfe\x23\x87\xea" "\x2e\xff\x66\xd8\x0f\x3f\x0a\x73\xe2\xe1\xe6\xfb\x23\x5e\xee\x9b\xe7\xef" "\x58\xbf\xfb\x13\xf3\xeb\x8b\x97\x1b\xd8\x78\x6d\x7e\xb3\x5f\x7e\xaa\x7a" "\xbd\xf1\x73\x72\xbe\xfc\x62\x75\xf9\xb8\x9f\x5b\x6d\xff\xdf\x7f\xf1\xd5" "\x6f\x56\x96\x7f\xf6\x7d\xcd\xb7\xff\xec\x60\xf3\xed\x7f\x35\x5c\xef\x2b" "\x61\xfe\xcf\x2d\xd5\xe5\x6b\xef\x83\xca\xcf\xf1\x72\x9f\x0f\xdb\x1f\xd7" "\x17\x2f\x77\xf7\x37\xbe\xd3\x74\xfb\x2f\x7c\xa1\xba\xfc\xcc\x03\x6f\x4d" "\x57\x1e\xce\x07\x1f\x08\xc7\x69\x58\xff\x96\xf0\xf3\xa6\xca\xf9\x35\x9e" "\x1d\x38\x54\x77\xbb\xb2\x0f\x57\x97\x8b\xeb\x9f\xf8\xfe\x1f\xe5\xe7\xc7" "\xeb\x9b\x79\xa0\xf9\xf6\x8f\x1c\x38\x5f\xb7\x3f\x1a\x8f\x8f\xd7\xff\xad" "\x7a\x3d\xe3\x0d\xcb\xc7\xd3\xe3\x7a\xa2\xbf\x6d\x58\x7f\xe5\x7a\x6a\x8f" "\xcf\xb8\xfe\x57\xff\xf0\x60\xdd\x7e\xee\xb4\xfe\x0b\x8f\xbe\x79\x4b\xe5" "\x7a\x1b\xd7\x7f\x67\xc3\x72\x33\xcf\x6c\xcd\xd7\x3f\x7f\x7d\xf5\x9f\xd8" "\xf4\x17\x9f\xff\x52\xd3\xf5\xc5\xed\xd9\xff\xd7\x33\x75\xb7\x67\xff\x23" "\xe1\x71\x1c\xd6\xff\xf2\x53\xe1\x78\x0c\xe7\xff\xe2\x42\xf5\xfa\x1a\x3f" "\x5d\xe1\xe0\x23\xf5\xcf\x3f\x71\xf9\xaf\xad\x3d\x5b\x77\x7b\xa2\x07\x7f" "\x56\x5d\xff\x85\x7b\x8f\xe6\x73\xd5\xc8\xea\x35\x57\x5d\x7d\xcd\xb5\xe7" "\xde\x5b\xd9\x77\x59\xf6\xc6\x63\xd5\xeb\xeb\xb4\xfe\xa3\x5f\x3d\x59\xb7" "\xfd\x5f\xbf\xb1\xba\x3f\xe2\xf9\xb1\xa3\xdf\xb8\xfe\x56\xe2\xfa\x4f\x7d" "\x66\xec\xc4\xc9\xd9\x33\xd3\x93\x35\x7b\x35\xff\xec\x9c\x8f\x54\xb7\x27" "\x6e\xef\x75\xe1\xb9\xb5\xf1\xe7\x03\x27\x4f\x3f\x3d\x75\x6a\x74\x62\x74" "\x22\xcb\x46\x8b\xfb\x11\x7a\x17\xed\x1b\x61\xfe\xa4\x3a\xce\x2d\xf5\xf2" "\x5b\x9f\x08\xf7\xe7\xcd\x7f\xf6\xda\x9a\xcd\xff\xfa\xc5\x78\xfa\xbf\x3f" "\x5e\x3d\xfd\xfc\xc3\xd5\xd7\xad\xdb\xc3\x72\x5f\x0e\xa7\xaf\x0d\xf7\xdf" "\xa5\xae\xff\xe5\x0d\x37\xe6\x8f\xef\x81\xd7\xf3\x1f\x87\xb3\xb9\x85\x9f" "\x17\x7c\x29\xd6\x6f\xfa\xaf\x3d\x8b\x5a\x30\xdc\xfe\xc6\xf7\x05\xf1\x78" "\x9f\x79\xcf\xd3\xf9\x7e\xa8\x9c\x97\xbf\x6e\xc4\xc7\x75\xfd\xf6\xd7\x7f" "\xfe\xf1\x22\xfc\x70\xb2\x7a\x3d\xdf\x0e\xfb\x75\x2e\x7c\x32\xf3\xc6\x1b" "\xe7\xd7\x57\xbb\x7c\xfc\x6c\x84\xf3\x8f\x55\x1f\xef\x97\xba\xfe\xf8\x34" "\x17\xef\xd7\xbf\x0a\xf7\xf7\x47\x7f\x54\xbd\xfe\xb8\x5d\xf1\xf6\xfe\x30" "\xbc\x8f\xf9\xce\xba\xfa\xe7\xbb\x78\x7c\x7c\xfb\xec\x60\xe3\xf5\xe7\x9f" "\xe2\x71\x2e\x3c\x9f\x64\xe7\xaa\xe7\xc7\xa5\xe2\xfe\x3e\xff\xf6\x8d\x4d" "\x37\x2f\x7e\x0e\x49\x76\xee\xa6\xfc\xe7\x3f\x4e\xd7\x73\xd3\x92\x6e\x66" "\x2b\xb3\xcf\xcd\x8e\x1f\x9b\x3e\x71\xe6\xd9\xf1\xd3\x53\xb3\xa7\xc7\x67" "\x9f\x7b\xfe\xc0\xf1\x93\x67\x4e\x9c\x3e\x90\x7f\x96\xe7\x81\x4f\x75\xba" "\xfc\xfc\xf3\xd3\x9a\xfc\xf9\x69\x72\x6a\xd7\xce\x2c\x7f\xb6\x3a\x59\x1d" "\x97\xd9\x95\xde\xfe\x99\x27\xee\xcd\xb2\x6c\xf3\xe4\xd4\x91\x43\x67\x8e" "\x9c\x7e\x62\x66\xea\xd4\xd1\xc3\xb3\xb3\x87\xa7\x26\x67\x37\x1f\x3a\x72" "\x64\xea\x33\x9d\x2e\x3f\x3d\xb9\x6f\xdb\xf6\xbd\x3b\x76\x6f\x1f\x3b\x3a" "\x3d\xb9\x6f\xcf\xde\xbd\x3b\xf6\x8e\x4d\x9f\x38\x59\xd9\x8c\xea\x46\x75" "\xb0\x6b\xe2\xd3\x63\x27\x4e\x1d\xc8\x2f\x32\xbb\x6f\xe7\xde\x6d\xf7\xdc" "\xb3\x73\x62\xec\xf8\xc9\xc9\xa9\x7d\xbb\x27\x26\xc6\xce\x74\xba\x7c\xfe" "\xda\x34\x56\xb9\xf4\xef\x8f\x9d\x9a\x3a\x76\xe8\xf4\xf4\xf1\xa9\xb1\xd9" "\xe9\xe7\xa7\xf6\x6d\xdb\xbb\x6b\xd7\xf6\x8e\x9f\x06\x78\x7c\xe6\xc8\xec" "\xe8\xf8\xa9\x33\x27\xc6\xcf\xcc\x4e\x9d\x1a\xaf\xde\x96\xd1\xd3\xf9\xc9" "\x95\xd7\xbe\x4e\x97\xa7\x98\x66\xff\xa3\xfa\x7e\xb6\xd1\x40\xf5\x83\xf8" "\xb2\x8f\xdf\xb9\x2b\x7d\x3e\x6b\xc5\x2b\x9f\x6d\x79\x55\xf9\x22\x8d\xef" "\x13\xdf\x0a\x9f\x45\xf3\xdd\x77\xcd\xec\x59\xcc\xcf\x31\xf7\x0f\x87\x99" "\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xbf\x32\xcc\x44\xfe\x07\x00\x00" "\x80\xc2\x88\xb9\x7f\x55\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x48" "\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\x7f\x51\xfb\xff\xef\x9c\xd5\xff\x6f\xb5" "\x7e\xfd\x7f\xfd\xff\x22\x2b\x58\xff\x7f\xe9\xfd\xf5\x0e\xf4\xff\x3b\xd0" "\xff\xd7\xff\xbf\xa4\xfe\xff\xe1\xc9\xdd\x13\x3d\xd9\xff\x9f\x6b\x7c\x6d" "\x6d\x46\xff\x9f\xcb\xa1\xdb\xfd\xff\x86\xb7\xa3\x4b\xee\xff\xc7\xdc\xbf" "\x3a\xcb\x4a\x99\xff\x01\x00\x00\xa0\x0c\x62\xee\x5f\x13\x66\x22\xff\x03" "\x00\x00\x40\x61\xc4\xdc\x7f\x55\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\xd5\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcd" "\xd7\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\xbf\x98\xfd" "\x7f\xdf\xff\xcf\x15\xd3\x6b\xfd\xff\x98\xfb\xaf\x09\x33\x29\x49\xfe\x07" "\x00\x00\x80\x32\x88\xb9\xff\xda\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6" "\xfe\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\xd7\x86\x99\x94\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x37\x5f\xbf\xfe\x7f\x7f\xba" "\x88\xfe\xfd\xcf\x6b\x2b\xe2\xbd\xdb\xff\x5f\xbd\xd4\xab\x6a\x4a\xff\xbf" "\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\xbf\x2b" "\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x77\x87\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\x7f\x43\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf3" "\xf5\xeb\xff\xf7\xa7\xb2\x7e\xff\xff\xca\x45\x5e\xbf\xfe\x7f\x6b\xf9\x82" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x7f\x4f\x98" "\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\xff\x52\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff" "\xba\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6\xeb" "\xd7\xff\xef\x4f\x97\xb1\xff\x9f\x37\x12\x7b\xb5\xff\xbf\x58\xfa\xff\x1d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xa6\x30" "\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x30\x62\xee\xff\xe5\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe" "\xf5\x61\x26\x25\xc9\xff\xfa\xff\x5d\xed\xff\xdf\x51\x5b\xcc\xd2\xff\xd7" "\xff\x6f\x38\x3e\xf4\xff\xf5\xff\xf5\xff\x97\x41\x59\xbf\xff\x7f\xb1\xf4" "\xff\x3b\xd0\xff\xbf\x88\xfe\xfc\x70\xfa\x9b\xfe\xbf\xfe\xbf\xfe\x3f\x8d" "\x7a\xad\xff\x1f\x73\xff\x2d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31" "\xf7\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xde\x30\x13\xf9" "\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xd1\x30\xb3\x95\xe1\x8c\x92\xe4\x7f\xfd" "\x7f\xdf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7c\xfd\xfa\xff\xfd\x49\xff\xbf" "\x3d\xfd\xff\x0e\x2e\x77\xff\xbf\xfa\xc6\xb3\x60\xfd\xff\x79\xfa\xff\xfa" "\xff\xfa\xff\x34\xea\xb5\xfe\x7f\xcc\xfd\x1b\xc2\x4c\x4a\x92\xff\x01\x00" "\x00\xa0\x0c\x62\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f" "\x5b\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xa6\x30\x93\x92\xe4\xff" "\x3e\xed\xff\x0f\xb6\xbe\x41\xfa\xff\x99\xfe\xbf\xfe\x7f\x87\xf5\xeb\xff" "\xeb\xff\x17\x59\xef\xf6\xff\x9b\xbd\x52\x2c\xa4\xff\x5f\xf0\xfe\x7f\x21" "\xbf\xff\x7f\x9e\xfe\xff\x65\xeb\xff\x7f\xb7\xe6\x70\x6f\x49\xff\x9f\x5e" "\xd4\x6b\xfd\xff\x98\xfb\xdf\x17\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10" "\x73\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xdb\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8c\x98\xfb\xb7\x84\x99\x94\x24\xff\xf7\x69\xff\xbf" "\xcd\x0d\xd2\xff\xcf\xf4\xff\x2f\x7f\xff\x7f\xeb\x57\xab\x17\xd4\xff\xd7" "\xff\xd7\xff\xef\x39\x2d\xfa\xf7\xc3\x8b\xbd\xbc\xef\xff\x0f\xf4\xff\xf5" "\xff\xf5\xff\x7b\xa9\xff\xef\xfb\xff\xe9\x5b\xbd\xd6\xff\x8f\xb9\xff\x8e" "\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xb7\x86\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\xdf\x19\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\x3f\x16\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xfb\xff\xf5\xff\x9b" "\xaf\x5f\xff\xbf\x3f\xf5\xee\xf7\xff\x2f\x8e\xfe\xbf\xfe\xbf\xfe\x7f\xaf" "\x6e\xff\x35\x1d\xd7\xaf\xff\xaf\xff\xcf\x42\xbd\xd6\xff\x8f\xb9\xff\xae" "\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xef\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x30\x62\xee\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\x9f\x08\x33\x29\x49\xfe\x5f\xee\xfe\x7f\xcd\x1e\xd6\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\x3a\xfd\xff\xf6\xae\x5c\xff\xbf\xd9\x2b\xe5" "\x42\xfa\xff\xfa\xff\xfd\xbc\xfd\xfa\xff\xfa\xff\x2c\xd4\x6b\xfd\xff\x98" "\xfb\xb7\x85\x99\xde\xd1\x95\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xbf\x3d" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00" "\x00\x85\x11\x73\xff\xce\x30\x93\x92\xe4\x7f\xdf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xdf\x7c\xfd\xfa\xff\xfd\xa1\xb1\x60\xaf\xff\xdf\x9e\xef\xff" "\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\xf7" "\x84\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xbf\x2b\xcc\x44\xfe\x07" "\x00\x00\x80\xc2\x88\xb9\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\x9e\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6" "\xeb\xd7\xff\xef\x4f\xfa\xff\xed\x95\xa5\xff\x1f\xe9\xff\x2f\xcd\x95\xee" "\xcf\xf7\xfb\xf6\xeb\xff\xeb\xff\xb3\x50\xaf\xf5\xff\x63\xee\xdf\x1b\x66" "\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xfb\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x7f\x25\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff" "\x57\xc3\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xaf\x6c\xff\xff\x9c\xfe" "\xbf\xfe\xbf\xfe\x7f\x57\xe9\xff\xb7\x57\x96\xfe\xff\xe5\xf9\xfe\xff\x11" "\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\x69\xd4\x6b\xfd\xff\x98\xfb\xf7\x85" "\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00" "\x00\x00\x14\x46\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7" "\xef\x0f\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xf7\xfd\xff\xfa\xff\xcd" "\xd7\xaf\xff\xdf\x9f\xf4\xff\xdb\xeb\xdd\xfe\x7f\x7c\x64\xf5\x72\xff\xdf" "\xf7\xff\x77\xba\xbc\xfe\xbf\xfe\xbf\xfe\x3f\x8d\x7a\xad\xff\x1f\x73\xff" "\x07\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xbf\x2f\xcc\x64\x61" "\xfe\x1f\x5c\xbe\xad\x02\x00\x00\x00\xba\x29\xe6\xfe\x0f\x86\x99\xf8\xf7" "\x7f\x00\x00\x00\x28\x8c\x98\xfb\xef\x0f\x33\x29\x49\xfe\xd7\xff\xd7\xff" "\x6f\xd9\xff\xaf\xdc\xd9\xfa\xff\xfa\xff\xfa\xff\x89\xfe\x7f\x7f\xd0\xff" "\x6f\xaf\x77\xfb\xff\x55\xbd\xfd\xfd\xff\xfa\xff\x9d\x2e\xaf\xff\xaf\xff" "\xaf\xff\x4f\xa3\x5e\xeb\xff\xc7\xdc\xff\xa1\x30\x93\x92\xe4\x7f\x00\x00" "\x00\x28\x83\x98\xfb\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff" "\x70\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x83\x61\x26\x25\xc9\xff" "\xfa\xff\xfa\xff\xbe\xff\x7f\xd9\xfa\xff\x13\x99\xfe\x7f\xe1\xfb\xff\x8d" "\xcf\xa1\xb5\xf4\xff\x97\x87\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\x17\xaf\xff" "\xbf\x2a\xd3\xff\xd7\xff\xe7\x0a\xea\xb5\xfe\x7f\xcc\xfd\xbf\x1e\x66\x52" "\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x43\x61\x26\xf2\x3f\x00\x00\x00" "\x14\x46\xcc\xfd\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x7f\x24" "\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\xdf\xf7\xff\xeb\xff\x37\x5f\xbf" "\xef\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\x5f\xbc\xfe\xbf\xef\xff" "\xd7\xff\xe7\x8a\xea\xb5\xfe\x7f\xcc\xfd\x1f\x0d\x33\x29\x49\xfe\x07\x00" "\x00\x80\x32\x88\xb9\xff\x63\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd" "\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x8d\x30\x93\x92\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6\xeb\xd7\xff\xef\x4f\xfa" "\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff" "\x3f\xe6\xfe\x47\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x34" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xb1\x30\x13\xf9\x1f\x00\x00" "\x00\x0a\x23\xe6\xfe\xc7\xc3\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x9b\xaf\x5f\xff\xbf\x3f\xe9\xff\xb7\x57\xd7\xff\xff\xc5\x48" "\xeb\x05\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xe9\x82\x5e\xeb\xff\xc7" "\xdc\xff\x44\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\x9f\x08\x33" "\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00" "\x0a\x23\xe6\xfe\x4f\x86\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x37\x5f\xbf\xfe\x7f\x7f\xd2\xff\x6f\xcf\xf7\xff\x77\xa0\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x27\xc3\x4c\x4a\x92" "\xff\x01\x00\x00\xa0\x0c\x62\xee\xff\xad\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\xdf\x0e\x33\x89\xf9\x7f\x91\xff\x2f\x3b\x00\x00\x00\xd0\xbb" "\x62\xee\xff\x9d\x30\x93\x92\xfc\xfb\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\xf3\xf5\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\xef\x86\x99\x94\x24\xff" "\x03\x00\x00\x40\x19\xc4\xdc\xff\x54\x98\x89\xfc\x0f\x00\x00\x00\x85\x11" "\x73\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x83\x61\x26\x25" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x3d\xda\xff\xff\xd3\x8d\xff\xf2\x83\xef" "\x7d\xec\xe0\x36\xfd\x7f\xfd\x7f\xfd\xff\x25\xd1\xff\x6f\x4f\xff\xbf\x03" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\x1f\x0a\x33" "\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\xf7\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x4f" "\x86\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x68\xff\xdf\xf7\xff\x27" "\xfa\xff\xfa\xff\x4b\xa1\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x74\xd5\x92\xfb\xff\xa3\x2d\xaf\xaa\x2b\xfd\xff\x98\xfb\xa7\xc2" "\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x3f\x12\x66\x22\xff\x03\x00" "\x00\x40\x61\xc4\xdc\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff" "\xe9\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6\xeb" "\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x57\xf5\xda\xf7\xff\xc7\xdc\x3f\x1d\x66\x52\x92\xfc\x0f\x00\x00\x00" "\x65\x10\x73\xff\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x3f\x1d" "\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x2c\xcc\xa4\x24\xf9\x5f\xff" "\x5f\xff\x5f\xff\xff\x32\xf4\xff\xff\xb1\xf9\xf1\xa1\xff\xaf\xff\xaf\xff" "\x7f\xf9\xe9\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d" "\xd5\x9d\xfe\xff\x5c\xd6\xad\xfe\x7f\xcc\xfd\xc7\xc3\x4c\x4a\x92\xff\x01" "\x00\x00\xa0\x0c\x62\xee\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x26\xcc\xff\x67\xef" "\x3e\x9e\x34\xab\xab\x3f\x8e\xf7\xd4\x8f\xf9\x81\xc5\x42\xcb\x8d\x0b\x17" "\x6e\xfc\x03\xdc\xb3\x61\x65\x15\x56\xf9\x17\x58\x2e\xd5\x95\x11\xcc\x01" "\xcc\x39\xe7\x88\x39\x23\x0a\x8a\x98\x73\xc2\x88\x62\xce\x18\x50\x54\x54" "\x0c\xa8\xb8\xb0\x86\x39\xe7\x4c\x75\xf7\x33\xcf\x9d\x70\x67\xfa\xde\xef" "\x79\xbd\x36\xa7\xac\xb1\xe7\x3e\x30\x3d\x43\x7d\x6a\xea\x5d\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\xf5\xff\x9b\x9f\xaf\xff\x5f\x27\xfd" "\xff\x76\xfa\xff\x09\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xac\x96\xf6\xfe\xff" "\xdc\xfd\x0f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x23\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe2\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xbf\x24\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x83\xeb\xff\x0f\x9d\xa3" "\xff\xd7\xff\xeb\xff\xf5\xff\x73\x1b\xb6\xff\xdf\xfb\x1b\xe3\x14\xe9\xff" "\x27\xe8\xff\x1b\xf4\xff\xc7\xff\xcd\xa4\xff\xd7\xff\x33\xbf\xa5\xf5\xff" "\xb9\xfb\x1f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x47\xc5\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa3\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x31\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x7b\xff\xbf\xfe\x5f\xff" "\xbf\xf9\xf9\xfa\xff\x75\x1a\xb6\xff\x9f\x49\xa7\xfe\xff\xe2\x1b\xce\x7f" "\xc8\xad\xd7\xdc\xfd\xda\x93\x79\xbe\xfe\xbf\x43\xff\x7f\xe6\x3e\xbf\xfe" "\x5f\xff\xcf\x7e\x4b\xeb\xff\x73\xf7\x3f\x36\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x8f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xc7\xc7" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x13\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x9b\x9f\xaf\xff\x5f\xa7\x99\xfa\xff\x23\xff" "\x51\xd4\xff\xaf\xbc\xff\x3f\x95\xe7\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xf3" "\x5a\x5a\xff\x9f\xbb\xff\x89\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\x7f\x52\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x5f\x1a\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x97\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x37\x3f\xff\x41\x97\x3f\x74\x57\xb8\x7b\x90\xfd\xff\x91\x1f" "\xd6\xff\x9f\x98\x05\xbd\xff\xff\xb0\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x2f\x79\xf0\xc3\x1e\x78\xae\xfe\xbf\xb1\xa5\xf5\xff\xb9\xfb\x9f\x1c\xb7" "\x4e\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4a\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x3f\x35\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x16" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfc\x7c\xef\xff" "\x5f\xa7\xe9\xfe\xff\xae\x17\x6d\xfb\xfa\x19\xfb\xff\xe3\x3c\x7f\x3b\xfd" "\xbf\xfe\x5f\xff\xbf\xde\xcf\xaf\xff\xf7\xfe\x7f\xf6\x5b\x5a\xff\x9f\xbb" "\xff\xe9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x46\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x3f\x33\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x9f\x15\xb7\x34\xd9\xff\xfa\xff\x33\xd3\xff\x67\xaf\xa8\xff\xd7\xff" "\xef\xe8\xff\x8f\x7d\x5f\xea\xff\xf5\xff\x67\xc1\x82\xde\xff\x7f\x4a\xcf" "\xd7\xff\xeb\xff\xf5\xff\xeb\xfd\xfc\xfa\x7f\xfd\x3f\xfb\x2d\xad\xff\xcf" "\xdd\xff\xec\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x27\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xcf\x8b\x5b\x9a\xec\x7f\xfd\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\xff" "\xcd\xcf\xd7\xff\xaf\x93\xfe\x7f\x3b\xfd\xff\x04\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\x56\x4b\xeb\xff\x73\xf7\x3f\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x17\xc6\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe2\x96\x26\xfb\x7f\x8e\xfe\xff" "\x32\xfd\xbf\xfe\x7f\xcf\xe7\xd7\xff\x6f\xfe\xfe\xd0\xff\xeb\xff\xf5\xff" "\x67\x9e\xfe\x7f\x3b\xfd\xff\x04\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x56\x4b" "\xeb\xff\x73\xf7\xbf\x38\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f" "\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xcb\xe2\x96\xc9\xfd\x7f\xdb\xcc\x45\xde\xc1\xd8\xdd" "\xff\x1f\xf2\xfe\x7f\xfd\xbf\xfe\x7f\x47\xff\xaf\xff\x3f\x4a\xff\xbf\x4e" "\xfa\xff\xed\xf4\xff\x13\xf4\xff\xfa\xff\x45\xf4\xff\x57\xea\xff\x19\xc6" "\xd2\xfa\xff\xdc\xfd\x2f\x8f\x5b\xfc\xfd\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x95\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xaa\xb8\xa5\xc9\xfe\x9f\xe3\xfd\xff\x03\xf7\xff" "\xe7\xe9\xff\xf5\xff\x2d\xfa\xff\x23\xff\x00\xfa\x7f\xfd\xff\x20\xe6\xeb" "\xff\xef\x79\x67\xfd\xbf\xfe\x7f\x6f\xff\x7f\x78\xcf\xbf\x07\xfd\xff\x6e" "\xfa\x7f\xef\xff\x3f\xa1\xfe\xff\x9c\xa9\x9f\x89\x91\x2c\xad\xff\xcf\xdd" "\xff\xea\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x26\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xaf\x8b\x5b\x9a\xec\x7f\xfd\xbf\xf7\xff\xeb\xff\x97\xd9\xff\x5f\xea" "\xfd\xff\x45\xff\xaf\xff\x3f\x19\xde\xff\xbf\xdd\x29\xf5\xff\x3b\xfa\x7f" "\xef\xff\xd7\xff\xeb\xff\xbd\xff\x9f\x53\xb3\xb4\xfe\x3f\x77\xff\xeb\xe3" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x86\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xbf\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x18" "\xb7\x34\xd9\xff\xb3\xf6\xff\x47\xbe\x4a\xff\x5f\xf4\xff\xfa\xff\xbd\xdf" "\x1f\x8b\x7d\xff\xbf\xfe\x7f\xe3\xf3\xf5\xff\xeb\xa4\xff\xdf\xce\xfb\xff" "\x27\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xb3\x5a\x5a\xff\x9f\xbb\xff\x4d\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1a" "\xb7\x34\xd9\xff\xde\xff\xbf\x73\x0f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xf4" "\x7c\xfd\xff\x3a\xe9\xff\xb7\xd3\xff\x4f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x66\xb5\xb4\xfe\x3f\x77\xff\xdb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x47\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x33\x6e\x69\xb2\xff\xf5\xff\xa7\xfd\xfe" "\xff\x3b\x12\x60\xfd\xff\xee\xcf\x7f\x9c\xfe\xbf\xfe\x35\xe9\xff\x77\xff" "\xff\xf5\xff\x47\xe9\xff\xf5\xff\x73\xd0\xff\x6f\xa7\xff\x9f\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\xcc\x6a\x69\xfd\x7f\xee\xfe\x77\xc5\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6f\xdc\xd2\x64\xff" "\xeb\xff\x4f\xbb\xff\xbf\xc3\x68\xfd\xff\xff\x45\x67\xee\xfd\xff\xfa\x7f" "\xfd\xff\xb1\x9f\x57\xff\xbf\x0e\xfa\xff\xed\xf4\xff\x13\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\x59\x2d\xad\xff\xcf\xdd\x7f\x45\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x57" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xfb\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\x3f\x8b\xef\xff\xd7\xff\x1f\x58\xff\x9f\xbf\x73\xf5\xff\xfa\xff" "\xf1\xe9\xff\xb7\xd3\xff\xef\xec\xec\x5c\xb5\xe5\x03\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\xb3\x5a\x5a\xff\x9f\xbb\xff\x03\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xbf\x2a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xaf\x8e" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc6\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xef\xd0\xff\xef\x7e\xbe\xfe\x5f\xff\x3f\xb2\xde\xfd\x7f\xd6" "\xf2\xc7\xa7\xff\x9f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xcc\x6a\x69\xfd\x7f" "\xee\xfe\x0f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9a\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x70\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x5f\x1b\xb7\x34\xd9\xff\xbb\xfa\xff\x8c\x5a\xf5\xff\xfa\xff\x33" "\xd8\xff\xdf\x7e\x0a\xfd\xff\xe1\xf8\x31\xfd\xff\x7c\xfd\xff\x45\x1b\x9e" "\xaf\xff\xd7\xff\x8f\xa0\x77\xff\x3f\x4d\xff\x3f\xe1\x2e\x47\xff\x48\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\xe6\xb1\xb4\xfe\x3f\x77\xff\x47\xe2\x96\x0b" "\xf7\x0c\x43\x00\x00\x00\x60\xb5\x72\xf7\x7f\x34\x6e\x69\xf2\xf7\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x8f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xc7\xe3\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xde\xff\xdf\xb3\xff\xf7\xfe\x7f" "\xfd\xff\xa8\xf4\xff\xdb\xe9\xff\x27\x78\xff\xbf\xfe\x5f\xff\xaf\xff\x67" "\x56\x4b\xeb\xff\x73\xf7\x7f\x22\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x4f\xc5\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xa7\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x9b\x9f\xaf\xff\x5f\x27\xfd\xff\x76\xfa\xff\x09\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\xac\x96\xd6\xff\xe7\xee\xff\x4c\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc7\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x3f\x5f\xff\xbf\x4e\xfa\xff" "\xed\xf4\xff\x13\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x59\x2d\xad\xff\xcf\xdd" "\xff\x85\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x31\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xbf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x5f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7e" "\xbe\xfe\x7f\x9d\xf4\xff\xdb\xe9\xff\x27\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\xb3\x5a\x5a\xff\x9f\xbb\xff\x2b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\xbf\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1a\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff" "\x3f\x6a\xff\x7f\xa7\xe3\x3e\x5f\xff\xaf\xff\x1f\xd9\x52\xfa\xff\x0b\x2e" "\xb8\xcf\xf5\xfa\x7f\xfd\xbf\xfe\x7f\x25\xfd\x7f\x7c\xa3\xe9\xff\xf5\xff" "\xcc\x6f\x69\xfd\x7f\xee\xfe\xaf\xc7\x2d\xc7\x1d\x7e\xb7\xdd\xf7\x04\xfe" "\x31\x01\x00\x00\x80\x05\xc9\xdd\xff\x8d\xb8\xa5\xc9\xdf\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xbf\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8a" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\x3f\x6a\xff\xbf\xfb\xf9\xf7\xd6\xff" "\xeb\xff\x9b\x58\x4a\xff\xef\xfd\xff\xa7\xf6\xf9\xf5\xff\xfa\xff\x35\x7f" "\x7e\xfd\xbf\xfe\x9f\xfd\x96\xd6\xff\xe7\xee\xbf\x3e\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\xdf\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xef\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x0d\x71\x4b\x93\xfd\xaf" "\xff\xdf\xd6\xff\xff\xbf\xfe\x5f\xff\x3f\x4c\xff\xbf\xa3\xff\xd7\xff\x37" "\xb1\xea\xfe\xff\x3c\xfd\xbf\xfe\xff\x20\xfb\xff\x0b\xcf\x62\x3f\x7f\xd3" "\x0c\x9f\x77\x9f\xfc\x63\x59\xff\xaf\xff\x67\x41\x96\xd6\xff\xe7\xee\xff" "\x6e\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x17\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xdf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x1f\xc4\x2d\x4d\xf6\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\xe6\xe7" "\xeb\xff\xd7\x69\xd5\xfd\xbf\xf7\xff\xeb\xff\xbd\xff\x7f\xd5\x9f\x5f\xff" "\xaf\xff\x67\xbf\xa5\xf5\xff\xb9\xfb\x7f\x18\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f\xe3" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x27\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xcd\xcf\xd7\xff\xaf\x93\xfe\x7f\x3b\xfd\xff" "\x04\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x56\x4b\xeb\xff\x73\xf7\xff\x34\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x3f\x8b\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x9f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x2f\xe2" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9b\x9f\xaf\xff\x5f" "\x27\xfd\xff\x76\xfa\xff\x09\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xac\x96\xd6" "\xff\xe7\xee\xff\x65\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x6f\x8c" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xaf\xe3\x96\x26\xfb\xbf\x65\xff\x7f\x48\xff\x7f\x12\xfd" "\xff\x8d\x37\x1f\xfd\xa1\xc6\xfd\xff\xb1\x5f\x5d\xfd\xbf\xfe\xff\x6c\xf4" "\xff\x87\xf4\xff\xa7\x45\xff\xbf\x9d\xfe\x7f\x82\xfe\x5f\xff\x3f\xf1\xf9" "\x0f\x6f\xf9\xfa\xe1\xfb\xff\x73\xb6\x7f\xfd\x54\xff\x3f\xf1\xe5\x0c\x6a" "\x69\xfd\x7f\xee\xfe\xdf\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xff\x2e\x6e\x69\xb2\xff\x5b\xf6\xff\xde\xff\xef\xfd" "\xff\xde\xff\xaf\xff\x5f\x70\xff\xef\xfd\xff\xa7\x47\xff\xbf\xdd\x41\xf6" "\xff\xb7\x9c\xc0\x63\xf5\xff\xfa\xff\x35\x7f\xfe\xe1\xfb\xff\x09\xde\xff" "\xcf\x26\x4b\xeb\xff\x73\xf7\xff\x3e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x1f\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x8f\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xcd\xcf\xd7\xff\xaf\x93\xfe\x7f\x3b\xef\xff\x9f\xa0" "\xff\xd7\xff\xeb\xff\xf5\xff\xcc\x6a\x69\xfd\x7f\xee\xfe\x3f\xc5\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x73\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x25\x6e\x69" "\xb2\xff\xf5\xff\x0b\xe9\xff\xe3\x43\xe8\xff\xf5\xff\xfa\xff\x93\xe9\xff" "\xef\x76\xfe\x65\xd7\xdd\xef\x01\x57\x5f\xa1\xff\xe7\x18\xfd\xff\x76\xfa" "\xff\x09\xf3\xf5\xff\xf7\xbf\x97\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xb6\xfa" "\xff\xf3\x4e\xb4\xff\xcf\xdd\xff\xd7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xdf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8b\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc7\x2d\x4d\xf6\xbf\xfe\x7f\x21\xfd" "\x7f\x7c\x8d\xfe\x5f\xff\xbf\xe8\xfe\xff\xdc\xdd\x3f\xef\xc1\xf7\xff\xde" "\xff\xaf\xff\xdf\x4f\xff\xbf\x9d\xfe\x7f\xc2\x89\xf6\xff\x47\xfe\xe0\xf0" "\xfe\xff\x7d\xf4\xff\xfa\x7f\xfd\x3f\x7b\x9d\xa5\xfe\xff\xb8\xbd\xff\xde" "\xff\x9d\xbb\xff\x1f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x67" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x16\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xff\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f" "\xef\xfb\xff\xcf\x58\xff\x7f\xc7\x2f\xa9\xfe\x7f\x9d\xf4\xff\xdb\xe9\xff" "\x27\xcc\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x81\xfd\x7f\xee\xfe" "\x7f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x3f\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xf9\xf9" "\xfa\xff\x75\xd2\xff\x6f\xa7\xff\x9f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xcc" "\x6a\x69\xfd\x7f\xee\xfe\xff\x05\x00\x00\xff\xff\x8f\xcf\x5d\xe9", 24820); syz_mount_image(/*fs=*/0x200000000700, /*dir=*/0x200000000300, /*flags=MS_NOSUID|MS_NODIRATIME*/ 0x802, /*opts=*/0x200000000100, /*chdir=*/0xfe, /*size=*/0x60f4, /*img=*/0x200000008180); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x143140 (4 bytes) // mode: open_mode = 0x1 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_SYNC|O_NOCTTY|O_NOATIME|O_CREAT|FASYNC*/ 0x143140, /*mode=S_IXOTH*/ 1); // mknod arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: mknod_mode = 0x6000 (8 bytes) // dev: int32 = 0x728 (4 bytes) // ] memcpy((void*)0x2000000012c0, "./file0\000", 8); syscall(__NR_mknod, /*file=*/0x2000000012c0ul, /*mode=S_IFBLK*/ 0x6000ul, /*dev=*/0x728); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 67 72 6f 75 70 2e 73 74 61 74 00} (length 0xc) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000140, "cgroup.stat\000", 12); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000140ul, /*flags=*/0x275a, /*mode=*/0); // mount$fuseblk arguments: [ // src: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6c 6f 6f 70 30 00} (length 0xb) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: nil // flags: mount_flags = 0x101000 (8 bytes) // opts: nil // ] memcpy((void*)0x200000000000, "/dev/loop0\000", 11); memcpy((void*)0x200000000080, "./file0\000", 8); syscall(__NR_mount, /*src=*/0x200000000000ul, /*dst=*/0x200000000080ul, /*type=*/0ul, /*flags=MS_SHARED|MS_BIND*/ 0x101000ul, /*opts=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }