// https://syzkaller.appspot.com/bug?id=55d73cfdf4daca86d561c65ac634bebbfef1407d // 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"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { 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)) { } memcpy((void*)0x20000000, "bcachefs\000", 9); memcpy((void*)0x20000040, "./file0\000", 8); sprintf((char*)0x20000200, "%023llo", (long long)-1); memcpy( (void*)0x20006540, "\x78\x9c\xec\xdd\x0d\x8c\x5d\x65\xdd\x20\xf0\x73\xee\x9d\x69\x67\x3a\x6d" "\x99\xa2\x40\x2d\x1f\x1d\xa0\x74\x0b\x2b\x30\xa5\xb8\x40\x83\x71\x60\x23" "\xe0\x6a\x11\x41\x8b\x0a\xd2\x56\x3a\x2d\x83\xfd\x80\x4e\x6b\xa1\x8a\x2d" "\x24\xa2\x41\xd6\x6d\xb2\x1b\x65\x4d\x34\x84\x68\xc2\x86\x10\xdd\x25\xeb" "\xfa\xb1\xa6\x98\x45\xcc\xca\x1a\x9a\xb8\x6c\x71\x5f\x7d\x31\xa0\x79\xe5" "\x7d\x83\x25\x08\xda\x97\x12\xe7\xcd\xdc\x7b\xce\xcc\xbd\x67\xce\x73\xcf" "\x9d\x7b\xef\x94\x16\x7e\xbf\xb4\x73\xe6\x9c\xfb\xdc\xff\xf3\xfc\x9f\xf3" "\xcc\x99\x73\x9e\x7b\xe6\xde\x08\x00\x00\x80\xb7\x85\x27\xbf\x38\xfa\x97" "\xab\x17\xbd\xff\x17\xf7\x0c\xbf\xb6\xfb\xaa\x1f\x6d\xbe\x3b\xea\x2b\x57" "\xb6\xf7\xa4\x05\xfa\x93\xe5\x1d\x6f\x56\x0b\x39\x92\x66\x77\x2d\xac\x2c" "\xb3\xe3\x62\xef\xd0\xac\x27\xdf\x77\xff\x87\x9e\xfd\xe6\xa7\xbe\xf3\xfc" "\x0b\x0b\x96\x2d\xff\xf6\xad\x57\x1c\xbe\x7d\xee\xaa\xfb\xee\x1b\xfa\xd5" "\x45\x87\x7f\xf9\xb7\xbb\x8a\xe2\xa6\xe3\xe9\xec\xc9\xf5\xf8\xa5\x38\x8a" "\x4e\x7d\x7a\xd9\xd7\xee\xfd\xd9\x53\x27\x8d\x6f\x8b\xa3\x28\x2a\xc7\xfd" "\x7b\xa2\x68\x41\x5c\xfa\xe9\x82\x38\x13\x62\xf0\xf5\x28\x8a\xd6\x4f\xb4" "\xb3\xfe\xc1\xc7\x5e\x5b\xb1\x61\x7c\xb9\xe7\x2b\xb3\xeb\xb6\x1f\x97\x09" "\x62\xbc\xbf\xbd\xf5\x24\xe3\xec\x4b\x3f\xd9\x7a\xca\x1f\xcf\xbb\xe2\xd9" "\x7d\xbf\xbe\xfc\xb5\xc1\x9e\xd7\xb7\xed\x99\x2c\x12\xf7\xd4\x8c\xa7\x28" "\x9a\xbf\xb6\xf6\xf9\xdd\x51\x14\xf5\x26\xff\xc7\xa5\xa3\x6d\x61\xfa\xe4" "\x64\x79\x4d\x14\x45\x73\x6a\x9e\x77\x71\x41\xbb\xce\x68\xb2\xfd\xe7\x06" "\xd6\x17\x25\xcb\x59\xc9\xb2\xaf\x20\x4e\xfa\xf8\xe9\x99\xf5\xee\x26\xdb" "\xd1\x95\x59\xf6\x34\xf9\xbc\x56\x95\x66\x38\x7e\x2a\xdd\x7f\x73\x67\xb8" "\xfe\xec\xc1\x2d\x5b\xcf\x82\x64\xf9\xfd\x64\x79\xf6\x34\xe3\x97\xd3\xff" "\x71\x54\x8a\xa3\xae\x89\xea\x36\xc5\x93\x63\x24\xaa\xd9\x6f\x71\x14\x57" "\xf6\xfd\xe4\x7a\xa9\x6e\x2c\xc4\x99\xb1\x11\x47\x51\x9c\x59\x2f\x65\xd6" "\xcb\xdd\x99\xbc\x2a\xf5\x26\x03\xad\x1c\xc7\xf5\xdb\xd3\x72\x99\xed\x03" "\xc9\xf6\xae\x64\xfb\xe9\x05\x63\xed\xba\xc0\xf6\x77\xa5\xf9\x2e\xac\x3e" "\xfb\x50\x26\xff\x6c\xd0\xbe\x29\xdf\x4c\xe4\x55\x91\xb6\xeb\x77\xf9\x4f" "\x3f\x62\x4a\x35\xc7\xa0\xbc\xed\x69\x7b\x7b\x92\x9d\xd1\x97\x6c\xeb\x8b" "\x8f\x9f\xf2\x9c\xb1\x1c\xe9\x63\xab\x5f\xf8\xea\x77\x9f\xdf\xf5\xad\x25" "\xfd\x81\x76\xc4\xdf\x8b\x93\xf8\x71\x4b\xf1\x9f\xd9\x7c\xc9\x81\xa5\xbb" "\x7e\x7b\x70\x61\x28\xfe\xda\x52\x12\xbf\xd4\x52\xfc\xd1\xf3\x5e\x79\xf4" "\xc5\x6b\x7f\x7e\x52\x30\xfe\xde\x34\x7e\xb9\xa5\xf8\xcf\x5d\xb8\xf4\xeb" "\x3f\xde\xbd\xf3\x50\xb0\x7f\x5e\x4e\xfb\xa7\xab\xa5\xf8\xe5\x95\xe7\x1c" "\x5e\x7e\xcf\xe0\xea\x60\xfb\x1f\x4c\xe3\xf7\xb4\x14\xff\xa1\xcb\x1f\xf9" "\xc6\xfc\xf7\x3c\xf1\x68\xb0\xfd\x83\x69\xff\xf4\xb6\xd6\x3f\x23\x3b\xde" "\xb8\xe1\xe1\x13\x0e\x06\xe3\x47\x69\xfc\x39\x2d\xc5\xbf\xec\xd5\x13\xcf" "\x5a\xb9\xf5\x91\x8d\xc1\xf8\x8f\xa7\xfd\xd3\xd7\x52\xfc\xa7\x46\x47\x56" "\xdd\x7b\xcb\xe2\x9d\x03\xa1\xf8\xfb\xd3\xf8\xf3\x5a\x8a\x7f\xc6\xef\x6f" "\xbc\x61\xdf\x81\xe1\xe7\x82\xed\x1f\x4a\xfb\xa7\xbf\xa5\xf8\xef\x5d\x72" "\xd9\x35\xab\x0e\x6e\xb9\x3f\x74\x9c\x8a\xf7\x1c\xa9\xdf\xb0\x00\x6f\x4d" "\xef\x48\xce\xb1\xbe\x9c\xac\xb7\x7a\x9d\xd9\xae\x9a\xeb\x85\x07\xfa\xe3" "\xea\x39\xdf\xdc\xe4\xff\xbc\x4e\x56\x94\x31\x5e\xcf\xfc\x19\x8c\x0f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\xdb\xd3\x43\xfd\xeb\x87\xff\xf6\xc3\xd3\xde\xe8\x4a\xd6\x67\x27\xdf\x9c" "\x56\xae\x2e\xd3\xed\xb3\xa2\x28\xee\x8d\xa2\x68\x74\xfb\xba\x6d\xdb\x47" "\xb6\x6c\x1c\xb8\x75\xeb\x8e\x6d\x5b\xd6\x6d\x1a\x58\xb7\x7d\x60\x78\xcb" "\xf6\x6d\x77\x0e\x5c\xf8\xee\x81\x6d\xc3\xb7\x6d\x5a\x77\xe7\xf8\xa3\x83" "\xe7\xae\xa8\x3e\xef\xf8\x28\xae\x2e\xe3\x53\xa7\xd4\x3d\x36\x36\x36\x56" "\xea\xaf\xdf\x96\xd6\xf7\x99\x8b\xfe\xe3\x63\x03\xa7\x1d\xf8\xff\x51\x34" "\x78\xc2\xaf\x4e\xeb\x0a\xb6\xff\xc3\x77\x2d\xfa\xb7\x0b\x72\xbe\x66\xc4" "\x43\x63\x9b\xfe\xc3\x59\x37\xbd\x38\xf7\x7f\xef\xa8\x6e\xe8\x4f\xda\xd5" "\x1f\x68\x57\x14\x68\xd7\xa5\x0f\xbf\xb4\xf2\x8f\x3f\xea\xfd\xf7\x51\x34" "\x78\x62\x6d\xbb\x5e\xce\xc4\xf8\x87\x65\x57\xfe\xac\xae\x41\x95\x0d\x93" "\x71\x12\xa5\xd9\x51\xa9\xf2\xcd\xec\x78\x4e\x6e\x3b\x26\x5a\x9d\xb4\x27" "\xed\xaf\xae\x0d\x23\x9b\x86\x07\x8b\xfb\xb7\x1c\xc8\xe3\x0f\x87\xfe\xdb" "\xc7\x76\x8e\xde\xbc\xa7\xda\xbf\x3d\x53\x9e\x9b\x6a\xaa\x7f\x4b\x51\xef" "\xd0\xd8\x5f\xb7\xfc\xe0\xf1\x9b\x2f\xdd\x75\x4d\x75\xd3\xd1\xba\xdf\x8b" "\xfa\x3b\xcd\x22\x6d\x5f\xda\x7f\x3d\x49\x7f\xcf\x4f\xf2\x9a\x1f\xc8\xab" "\x2b\x90\xd7\xbd\x67\x9d\xfe\xf7\xff\xef\x3f\x6f\x7e\x69\x4f\x34\xd8\xf5" "\xe7\xc5\x53\xeb\x2e\xca\xab\x3b\x19\x00\xdd\xf1\xbb\x9a\xaa\x37\xad\x61" "\x4e\x5c\xdf\x27\x3d\x49\xf9\x74\x8f\xa7\xcf\x3b\x7f\xfb\xe6\xdb\xce\x1f" "\xbd\x73\xd7\xb9\x23\x9b\xd7\x6d\x1c\xde\x38\xbc\x65\xc5\x8a\x15\x17\x5f" "\xb8\xe2\x82\x8b\x2e\xf8\x37\xe7\x57\x52\xaf\x7e\xed\x58\xfe\x69\xfd\xff" "\xaa\xc9\xfc\x8f\xcc\x78\xda\x7a\xd1\xd0\x48\xfa\xb5\xb9\xf1\x54\xd4\xae" "\xa2\xfe\x18\x6f\x57\x71\x7f\xd4\xb6\x28\xb7\x5d\xbd\x43\x63\xef\xfc\xe8" "\x95\x7f\x77\xf7\x7f\xdf\x7b\x6d\x75\x43\xd1\x38\x4f\x4b\x4f\x1c\x4f\x92" "\xe5\x9c\xf1\xdd\xbc\x3c\xaa\x19\x6f\x53\xfb\x2a\x2f\xaf\xa2\x7e\xe8\x0e" "\xf4\xc3\xc6\xeb\xfa\xfe\xcb\xab\x03\x5b\xff\xb9\xe8\x38\x54\xbb\x67\x6a" "\xbf\x66\xc4\x43\x63\x7f\x1e\xf9\x3f\xef\x9b\xbb\xef\xcc\x9b\xaa\x1b\x3a" "\x7d\x9c\xcf\xaa\x1c\xd6\x6b\x1b\xd4\xe2\x71\x7e\xa2\xd5\x49\x7b\xba\x6b" "\x8f\x3b\xcb\x73\xfa\x37\xee\xaa\x7b\xfe\x9b\xd5\xbf\xb3\xa3\x72\x92\x57" "\x5f\x6e\x5e\x67\xde\xf3\xca\xc7\xff\xef\x0f\xe3\x81\x89\xf6\xcd\x9a\x15" "\xdd\xb1\x6e\xfb\xf6\x6d\xcb\xab\x5f\x8f\xd0\xb8\x79\xe7\x75\x9f\xef\x6c" "\x5e\x17\x2f\xfd\xa7\xdb\x77\xad\xbd\x7b\xc1\x94\xbc\x2e\xa8\x7e\x9d\x9b" "\xb4\x74\x6e\x7c\x72\x6e\xbb\xb2\x5b\xd3\xbc\x16\x57\xbe\x96\xa3\xa4\x5b" "\xd2\x45\xd4\x53\x4a\x4b\x76\xd7\x3d\xaf\x3b\xaa\xb6\x2f\xfb\x7b\xa1\xf2" "\xbc\xdf\x44\x51\xb6\x57\xfb\x92\xc7\xfa\xe2\xe3\x73\xf3\xca\x4a\x1f\x5b" "\xfd\xc2\x57\xbf\xfb\xfc\xae\x6f\x2d\x09\xf5\x74\xfc\xbd\x6a\x4b\x7b\xa3" "\x79\xd5\x65\x7c\x4a\xa0\xe4\xa6\xcc\x13\xcb\x13\x0d\xce\xab\xbf\x68\x7c" "\x44\x51\xb4\xb6\x76\x5b\xda\x8f\x8f\xff\xe0\x3f\x0d\xec\xfb\xc5\x82\xcd" "\x85\xe3\xa3\x3a\x32\xa6\x7c\xcd\xa6\x37\x34\xf6\x85\x4b\xe6\xfe\x61\xf4" "\xfa\xfd\xab\xaa\x1b\x8e\xcc\x71\xa5\xa6\x41\x0d\x8e\x2b\xb3\x1b\x1c\x57" "\x26\x5a\x3d\xd9\x9e\x4a\x7f\x55\x8e\x2b\x17\x1c\x3d\x79\xbc\x79\xfb\xb9" "\x54\x5b\x2c\x1e\x1a\xdb\x77\xca\xbb\x37\xae\xf8\x9f\xdb\x93\x1f\xfb\xa2" "\xe3\xf6\x44\xe9\xbc\xfe\x5d\x11\x45\x45\xc7\x81\xc5\x99\xf5\xe6\x8f\x03" "\xf5\x1a\x1e\x07\x72\xea\x99\x2c\x9f\x1f\x6f\x20\xb3\xde\x17\x95\x5b\x3a" "\x6e\x3c\x77\xe1\xd2\xaf\xff\x78\xf7\xce\x43\x53\xf7\xcc\xac\x6a\xfb\x5e" "\x6e\xf6\xb8\xf1\xf9\xba\xb5\x72\x9b\xc7\x8d\x38\x30\x9e\x0e\x7c\xe1\xbf" "\xfe\xf5\x73\x07\x9e\xf9\x40\xe7\x8e\x1b\x1f\x58\x5a\xfe\xe4\x6f\x16\xaf" "\x48\x3a\xf4\x68\xf9\x79\xeb\x49\xc6\x75\x4f\x60\x5c\x4f\xb4\x3a\x69\x4f" "\x5c\x3b\xae\xcf\xbb\x79\xeb\xa6\xf5\xd5\xed\x47\xef\xf9\x6f\xb2\x2c\xb8" "\xfe\x49\x7f\x7f\x8f\xde\xb9\xeb\x33\xeb\x36\x6d\x1a\xde\x36\xda\x5c\x5e" "\xcd\x9e\x97\xa4\xf5\x64\x7b\xb9\xd5\xf3\x92\xf4\xa7\xef\xf8\x82\xbc\xd2" "\xfd\x35\x99\xd7\xcc\x7d\xd3\x4c\x7f\x35\xfb\xf3\x96\xb6\x7f\x7d\xb6\xbf" "\x5a\xfc\x79\x83\x3c\x7d\x51\xdc\xd2\xef\xb3\x67\x36\x5f\x72\x60\xe9\xae" "\xdf\x1e\xec\x0f\xc4\x8d\xd7\x96\x92\xf8\xa5\x96\xe2\x8f\x9e\xf7\xca\xa3" "\x2f\x5e\xfb\xf3\x93\x82\xf1\xf7\xa6\xf1\xbb\x5a\x8a\x5f\x5e\x79\xce\xe1" "\xe5\xf7\x0c\xae\x0e\xc6\x7f\x30\x4e\xe2\xf7\xb4\x14\xff\xa1\xcb\x1f\xf9" "\xc6\xfc\xf7\x3c\xf1\x68\x30\xfe\x60\xda\xfe\xde\xd6\xce\x27\x46\x76\xbc" "\x71\xc3\xc3\x27\x84\xfb\x3f\x4a\xe3\xf7\x55\x2f\x91\xa7\x19\xff\xa9\xd1" "\x91\x55\xf7\xde\xb2\x78\x67\x30\xfe\xfe\x38\xa9\x67\xfc\xdc\x2e\x8a\x1e" "\x7b\x6d\xc5\x86\xea\x7a\x5c\xb9\x32\xeb\xa9\x69\x47\x77\x5d\xbb\xa2\xec" "\x7a\x9c\x59\x2f\x65\xd6\xcb\xb5\xeb\xa5\xf4\x8c\x29\xa9\xa0\x1c\xc7\xf5" "\xdb\xd3\x72\xc9\xf6\xd3\x6b\xda\x92\xe7\xfa\xc0\xf6\xf4\xec\xb1\x67\x61" "\x75\x79\x28\x5d\x8f\xb2\xdf\x34\xde\x7e\xb4\x29\xd5\x9c\x13\xe4\x6d\x2f" "\x3a\xbf\x06\x80\xb7\x92\xf4\xf5\xff\xf4\x5c\x23\x7d\xfd\x7f\x71\xf2\x0b" "\xb1\xe6\xf5\xff\xea\x32\x9e\x55\xf7\xfc\x85\xc9\xf9\xd4\xc2\xc9\x4d\x95" "\xeb\xbc\xbb\x07\xaa\xbf\x48\xa7\x3b\xaf\x97\xb6\x23\x3b\xaf\x97\xc6\x5f" "\x76\x66\x7d\x8c\x56\xe7\xf5\x8a\xe6\xe5\xce\xc8\xac\xa7\xed\x5a\x9c\xf4" "\x4a\xda\x9e\x06\xe7\x0d\x73\xa3\x26\xe6\xe5\xa6\xd6\xd3\x78\x5e\x2e\x93" "\x7e\xf1\xbc\xd9\xc0\x97\x33\x1b\xba\x2a\x73\x7b\xa1\xfd\xd6\x9d\xcc\x54" "\xe4\xbd\xce\x9c\x69\xef\xdc\xf1\x08\x95\xf3\xec\x16\xce\xe3\xd3\xf3\xec" "\x85\xf9\xad\x9e\x38\xcf\x0e\x8d\xbb\xec\x7c\x47\xfa\x3a\x7d\xdc\xe4\xb8" "\xcb\xde\x17\x91\xee\xdf\xec\x7d\x11\x69\xfc\x45\x99\x09\xb4\x26\xef\x3f" "\x98\x72\x5f\x44\xbb\xe3\x2e\x9d\xd6\x68\x30\xee\x2a\x99\x15\xcf\xa7\x4e" "\x1d\x17\x51\x83\x7e\x9d\x1c\x17\xf9\xd1\xb2\xe3\x62\x1a\xe3\xa8\xbf\x3a" "\x8e\x66\xf6\x75\xa9\x63\xff\x7a\xbf\xd3\xf3\xef\x49\xfc\x97\xd3\xfe\x31" "\x9f\x90\x1b\x3f\xf9\x3d\x72\xb4\x5f\xef\xa7\xdb\xd3\xe3\x43\x57\x93\xf3" "\x00\xab\x03\xdb\x3b\x35\x0f\x90\x1e\x2e\xd2\x76\xfd\xae\x41\x5b\x8e\x04" "\xf3\x00\x00\x30\x79\xfd\x9f\x9e\x53\x8c\x5f\xff\x8f\xff\xae\x1e\xc8\x9c" "\xe7\x17\x5d\xb7\x64\xaf\x32\xd2\x78\xc1\xfb\x58\xca\xf9\xed\x29\xba\xfe" "\x9d\x7a\x3f\xdb\x9c\x96\xce\xfb\x2e\x7b\xf5\xc4\xb3\x56\x6e\x7d\x64\x63" "\xf0\xbc\xf8\xf1\x66\xef\x4b\xb9\xad\x6e\x6d\x4e\xc1\x7d\x29\x45\xfd\xb8" "\x24\xb3\x5e\xd8\x8f\x81\x5b\x41\x8a\xe6\x1d\x96\x66\xca\xf7\x45\xf3\x5a" "\xea\xc7\x33\x7e\x7f\xe3\x0d\xfb\x0e\x0c\x3f\x17\xec\xc7\xa1\xea\x89\x54" "\x71\x3f\xee\xad\x5b\x9b\xd7\x66\x3f\x2e\xcb\xac\x17\xf6\x63\x77\x7e\xab" "\x8a\xfa\x31\x5b\x4f\xd1\xf8\x3d\x3b\xb3\xde\x97\xdc\x11\x34\xdd\x7e\x7f" "\xef\x92\xcb\xae\x59\x75\x70\xcb\xfd\xc1\x7e\xdf\xd3\x6c\xbf\x3f\x58\xb7" "\xd6\x5f\xd0\xef\x47\xeb\x75\xfa\x9e\xf1\x31\xed\x3a\x3d\x18\xff\xed\x72" "\x9d\x3e\xd3\xf3\x91\x6f\xda\x3c\x40\x32\x6f\x3d\x53\xf3\x00\xd7\x05\xb6" "\x4f\x77\x1e\xa0\x6f\xca\x37\x13\x79\x55\x1c\x73\xf3\x00\x81\xdf\x0b\x00" "\x70\x2c\x4b\xaf\xff\x27\xee\x97\x4f\xae\xff\xff\x57\xa6\x5c\xbb\xd7\x87" "\xc1\xf3\xb6\xa1\xce\xdc\xcf\x1a\x3c\x6f\x9b\x38\xaf\x6d\xef\xbc\x3c\xd8" "\xfe\x89\xf3\xf2\xf6\xae\x8b\x82\xf1\x27\xae\x8b\xda\xbb\x6e\x09\xf6\xcf" "\xc4\x75\x4b\x7b\xaf\x8f\x06\xe3\x4f\x5c\x77\xb5\x37\x4f\x13\xec\x9f\xc7" "\xd3\xfe\x69\xef\xbc\x3f\xf4\xe7\x02\xe9\x79\xff\xb1\x7f\x5d\x34\xb3\xf3" "\x0c\xae\x8b\x92\xf5\x28\xfb\x4d\xd5\xb1\x75\x5d\x34\xb5\x47\x5c\x17\x01" "\x00\xbc\x35\xa4\xd7\xff\xe9\x19\x5f\x7a\xff\xff\x13\xc9\x7a\xf6\x4c\x70" "\xe6\xaf\x73\x67\xfa\x3a\x74\xa6\xaf\xa3\x67\x7a\x9e\x61\xa6\xe7\x49\x8e" "\xf5\xeb\xdc\x63\x7d\x9e\x61\xa6\xe7\xd9\x8e\x82\x79\x80\xbb\x6b\x9e\x67" "\x1e\x20\xcd\xab\xe2\xe8\x9a\x07\x08\x6f\x37\x0f\x00\x00\x70\x6c\x78\x7f" "\xb2\xbc\xa9\xc9\xf2\x5d\x95\x7b\x88\xa3\xe8\xd3\x37\xdf\x72\xc1\x9a\xf5" "\xc3\x9f\x5d\xb3\x61\xdb\xf0\xf0\xe8\x6d\xeb\x6e\x1e\x5e\x33\xb2\x65\x64" "\xfb\x44\xb9\xee\xca\x95\xd7\xd4\xfb\xa4\x43\xf5\x15\xdd\x27\x9d\x57\x7e" "\x4e\x83\xf2\x6b\x82\xf1\xeb\xdb\x73\x45\xa0\x7c\x48\xbb\xf9\x87\xea\x2b" "\xca\x3f\xaf\x7c\xa3\xfc\xd7\x06\xe3\xd7\xb7\xe7\xca\x40\xf9\x90\x76\xf3" "\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\xaf\x0b\xc6\xaf\x6f\xcf\x55\x81\xf2" "\x21\xed\xe6\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xff\x74\x30\x7e\x7d\x7b" "\x3e\x10\x28\x1f\xd2\x6e\xfe\xa1\xfa\x8a\xf2\xcf\x2b\xdf\x28\xff\x9b\x83" "\xf1\xeb\xdb\xf3\xef\x02\xe5\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b" "\xe5\x9f\x7d\xbf\xcc\x50\xfe\x1f\x0c\x94\x0f\x69\x37\xff\xf1\xfa\xe2\xb8" "\x51\xfb\x9a\xcf\xa7\x51\xfe\xc3\xc1\xf8\xf5\xed\xf9\x50\xa0\x7c\x48\xbb" "\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3\xfc\x37\x04\xe3\xd7\xb7\x67\x55\xa0" "\x7c\x48\xbb\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3\xfc\x37\x06\xe3\xd7\xb7" "\xe7\xea\x40\xf9\x90\x76\xf3\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\xdf\x12" "\x8c\x5f\xdf\x9e\x0f\x07\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\xd7" "\xe4\xdf\x9b\x2d\x3f\x12\x8c\x5f\xdf\x9e\x6b\x02\xe5\x43\xda\xcd\x3f\x54" "\x5f\x51\xfe\x79\xe5\x1b\xed\xff\x5b\x83\xf1\xeb\xdb\xf3\x91\x40\xf9\x90" "\x76\xf3\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\x7f\x26\x18\xbf\xbe\x3d\xd7" "\x06\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x67\xf3\xaf\xfd\x1d\xb9" "\x29\x18\xbf\xbe\x3d\xd7\x05\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca" "\x37\xda\xff\x9b\x83\xf1\xeb\xdb\xf3\xd1\x40\xf9\x90\x76\xf3\x0f\xd5\x57" "\x94\x7f\x5e\xf9\x46\xf9\x6f\x09\xc6\xaf\x6f\xcf\xc7\x02\xe5\x43\xda\xcd" "\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\xbf\x35\x18\xbf\xbe\x3d\xab\x03\xe5" "\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\x7f\x5b\x30\x7e\x7d\x7b" "\xae\x0f\x94\x0f\x69\x37\xff\x50\x7d\x45\xf9\xe7\x95\x6f\x94\xff\xed\xc1" "\xf8\xf5\xed\xf9\x78\xa0\x7c\x48\xbb\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3" "\xfc\xb7\x05\xe3\xd7\xb7\xe7\x13\x81\xf2\x21\xed\xe6\x1f\xaa\xaf\x28\xff" "\xbc\xf2\x8d\xf2\x1f\x0d\xc6\xaf\x6f\xcf\x27\x03\xe5\x43\xda\xcd\x3f\x54" "\x5f\x51\xfe\x39\xe5\x67\x35\x6a\xe7\xf6\x60\xfc\xfa\xf6\xdc\x10\x28\x1f" "\xd2\x6e\xfe\xa1\xfa\x8a\xf2\xcf\x2b\xdf\x68\xff\xef\x08\xc6\xaf\x6f\xcf" "\x8d\x81\xf2\x21\xed\xe6\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xff\x6c\x30" "\x7e\x7d\x7b\x3e\x15\x28\x1f\xd2\x6e\xfe\xa1\xfa\x8a\xf2\xcf\x2b\xdf\x28" "\xff\x9d\xc1\xf8\xf5\xed\xb9\x29\x50\x3e\xa4\xdd\xfc\x43\xf5\x15\xe5\x9f" "\x57\xbe\x51\xfe\x77\x04\xe3\xd7\xb7\x67\x4d\xa0\x7c\xc8\x44\xfe\xdb\xb7" "\x0d\x0f\xaf\xd9\x71\xdb\xfa\x75\xdb\x87\xd7\x6c\xd9\xba\x7e\x78\x74\xcd" "\xce\x6d\x23\xdb\xb7\x0f\x27\x27\x6a\xed\xde\x97\x18\xbc\xaf\x2c\xb9\x2f" "\xb1\x3b\xea\x6a\x98\xff\xa2\xcc\xfa\x71\xc9\xfb\x03\x1d\x17\x78\x7f\xa0" "\x6c\xf9\x34\xec\xc9\x95\x6f\xa6\xbe\x3f\x50\xb6\xda\xae\x82\xf7\xc9\x29" "\xda\x5f\xd9\xfa\x8b\xde\x67\x28\xaf\x7c\xde\x78\x0b\xed\xdf\xa2\xe3\x41" "\xb3\xe3\x21\xab\xee\xe7\xa3\x3a\x48\x46\xb6\x8c\x0e\x6f\x9b\x7a\xfc\xee" "\x6d\xd8\x1f\xb5\x63\x22\xaa\xdc\x36\x57\x9d\xe2\xe9\x89\x4f\x6c\xaa\x7c" "\xf6\xed\x3a\x03\xd5\x14\x6a\x3e\x9f\x9e\x86\xf9\x64\x37\xa7\x7f\x53\x37" "\x3b\x3e\xa1\xa9\xf2\x51\xe0\xf3\xe0\xa6\xab\xf9\x7c\xe2\x60\x3e\x79\xed" "\x98\xee\xe7\xd8\xa5\x61\xa7\xf5\x39\x76\x99\x2f\x53\xe4\xbc\x47\x6b\x5d" "\xbe\x1b\x46\x2b\x07\xe9\x91\x75\x9b\x46\x76\x0d\x4f\x6d\xff\x9c\xa3\xa0" "\xfd\x6f\x4e\x3f\x96\xa6\xb4\xa3\x68\xff\xc7\x99\x76\x2c\x48\x5a\xb2\x20" "\xf4\x79\x6f\x81\x76\xef\xfc\xfe\x3f\x3e\xf4\xa7\x3f\xfd\x8f\x0f\x46\xd1" "\xe0\x09\xe5\x53\xda\xea\xbf\x78\x68\x6c\xed\xa1\x13\x3f\xfd\xf4\xa5\xb3" "\xcf\x1f\x6f\x7f\xa9\x61\xfb\x27\x4a\xa6\x9f\xab\x5c\xf0\xf9\x87\xd9\xf2" "\x69\x3e\x5d\x9b\xb6\x8e\x6e\xff\xd7\x1b\xb6\xee\xd8\x92\xff\x0a\x5a\x7a" "\xbf\x73\x69\x62\x7d\x86\xfe\xee\x39\xc9\xb3\xdc\xe4\xfd\xcb\xa1\xfb\x3d" "\xa6\x7b\xff\x72\x3c\xe5\x9b\xa3\x53\xb3\xf7\x2f\x03\x00\x00\xbc\x5d\xa4" "\x7f\xff\x9f\x5e\xaf\x2e\x4c\xfe\x06\x75\x41\x66\x8a\xa0\xf9\x79\xe0\xf6" "\xfe\x3e\x3a\x38\x0f\xbc\xbf\xb9\x79\xe0\xec\x6c\x44\xd1\x3c\x70\xb6\x7c" "\x9a\x76\xb3\xf3\xc0\x7d\x6d\xce\x03\x67\xeb\x0f\xcd\xd3\x96\x1a\x94\x6f" "\xf4\xba\x4b\xb3\xf3\xc0\x9f\x0c\x94\x9f\xae\xe6\xc7\x49\x7b\xef\x03\x10" "\x1c\x27\x49\x4f\x15\x8d\x93\xec\xdf\xe1\x17\x8d\x93\x6c\xf9\xe9\x8e\x93" "\xde\x36\xc7\x49\xb6\xfe\xa2\x71\x92\x57\xbe\xd1\xeb\xd3\xcd\x8e\x93\xeb" "\x03\xe5\x43\x9a\x1f\x0f\xed\xbd\xef\x44\x70\x3c\x0c\x36\x37\x1e\xb2\x9f" "\xab\x59\x34\x1e\xb2\xe5\xa7\x3b\x1e\x7a\xda\x1c\x0f\xd9\xfa\x8b\xc6\x43" "\x5e\xf9\x46\xf7\xeb\x34\x3b\x1e\x3e\x1a\x28\xdf\xac\xe6\xc7\x47\x7b\xef" "\x0b\x13\x1c\x1f\x6b\xd3\xf1\x31\xbb\x61\x7f\x67\x3f\x2f\xa5\x68\x7c\x64" "\xcb\x4f\x77\x7c\xc4\x6d\x8e\x8f\x6c\xfd\x45\xe3\x23\xaf\x7c\xa3\xfb\x19" "\x9b\x1d\x1f\x1f\x09\x94\x4f\x35\xbf\xff\xdb\x7b\xdf\x9e\xe0\xfe\xdf\xdb" "\xdc\xf1\x21\xfb\xb9\x2d\x45\xfb\x3f\x5b\x7e\xba\xfb\xbf\xd4\xe6\xfe\xcf" "\xd6\x5f\xb4\xff\xf3\xca\x37\xba\x9f\xbb\xd9\xfd\x7f\x75\xa0\x7c\xaa\x7e" "\xff\x8f\xef\xf8\xca\x7e\x1f\x5e\xb3\x73\xeb\xb6\xda\x7b\xa0\x67\xfa\x73" "\x5b\x42\x9a\x6f\xdf\xcc\x7e\xbe\x6c\xab\x9a\x6f\xff\xcc\xbe\xef\xd3\xcc" "\xb7\x7f\x66\xdf\x57\x6a\xe6\xdb\xdf\xde\x75\x53\xb0\xfd\xfb\xdb\x7b\xa5" "\xab\xf9\xf6\xcf\xec\xe7\x12\xb5\xea\x88\xbd\x1e\x9b\xdc\x9d\x19\x7a\xff" "\xa9\xb4\x9a\xa2\xd7\x69\x3f\x11\xd8\x3e\xdd\xd7\x69\x67\x4d\xf9\xe6\xe8" "\xe4\x75\x5a\x00\x00\x00\x98\x79\xe9\xeb\xff\xe9\xc7\xf1\xa7\xef\x0f\xff" "\x95\x64\x19\xf8\x98\xfe\x96\xcd\xf4\x3c\x69\x4b\xf3\xc4\xdd\x51\x14\x35" "\xfd\xf9\xde\x3e\x7f\x3b\x37\x7e\x87\x3e\x7f\xbb\x68\x1e\xf3\x68\x99\xcf" "\x2b\x35\xf9\x77\x17\x47\xc9\x7c\xde\xd8\xee\x96\x9e\x36\x7d\xe6\xf3\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3a\x63\x76\xd7" "\xc2\xca\xf2\xc9\x2f\x8e\xfe\xe5\xea\x45\xef\xff\xc5\x3d\xc3\xaf\xed\xbe" "\xea\x47\x9b\xef\xde\x3b\x34\xeb\xc9\xf7\xdd\xff\xa1\x67\xbf\xf9\xa9\xef" "\x3c\xff\xc2\x82\x65\xcb\xbf\x7d\xeb\x15\x87\x6f\x9f\xbb\xea\xbe\xfb\x86" "\x7e\x75\xd1\xe1\x5f\xfe\xed\xae\xc2\xc0\xfd\xd5\xc5\xd9\xc9\x6a\x4f\x14" "\xc5\x2f\xc5\x51\x74\xea\xd3\xcb\xbe\x76\xef\xcf\x9e\x3a\x69\x7c\x5b\x1c" "\x45\x51\x39\xee\xdf\x13\x45\x0b\xe2\xd2\x4f\x17\xc4\x99\x08\x83\xaf\x47" "\x51\xb4\x7e\xa2\x9d\xf5\x0f\x3e\xf6\xda\x8a\x0d\xe3\xcb\x3d\x5f\x99\x5d" "\xb7\xfd\xb8\x4c\x90\x6c\x5e\x51\x5f\x39\x6d\x4f\x5d\x3b\xa3\x3b\x0a\x33" "\xe2\x18\xd4\x93\x8c\xb3\x2f\xfd\x64\xeb\x29\x7f\x3c\xef\x8a\x67\xf7\xfd" "\xfa\xf2\xd7\x06\x7b\x5e\xdf\xb6\x67\xb2\x48\xdc\x53\x33\x9e\xa2\x68\xfe" "\xda\xda\xe7\x77\x47\x51\xd4\x9b\xfc\x1f\x97\x8e\xb6\x85\xe9\x93\x93\xe5" "\x35\x51\x14\xcd\xa9\x79\xde\xc5\x05\xed\x3a\xa3\xc9\xf6\x9f\x1b\x58\x5f" "\x94\x2c\x67\x25\xcb\xbe\x82\x38\xe9\xe3\xa7\x67\xd6\xbb\x9b\x6c\x47\x57" "\x66\xd9\xd3\xe4\xf3\x5a\x55\x9a\xe1\xf8\xa9\x74\xff\xcd\x9d\xe1\xfa\xb3" "\x07\xb7\x6c\x3d\x0b\x92\xe5\xf7\x93\xe5\xd9\xd3\x8c\x5f\x4e\xff\xc7\x51" "\x29\x8e\xba\x26\xaa\xdb\x14\x4f\x8e\x91\xa8\x66\xbf\xc5\x51\x5c\xd9\xf7" "\x93\xeb\xa5\xba\xb1\x10\x67\xc6\x46\x1c\x45\x71\x66\xbd\x94\x59\x2f\x77" "\x67\xf2\xaa\xd4\x9b\x0c\xb4\x72\x1c\xd7\x6f\x4f\xcb\x65\xb6\x0f\x24\xdb" "\xbb\x92\xed\xa7\x17\x8c\xb5\xeb\x02\xdb\xdf\x95\xe6\x9b\xfc\xa0\x1e\xca" "\xe4\x9f\x0d\xda\x37\xe5\x9b\x89\xbc\x2a\xd2\x76\xfd\xae\x41\x5b\x8e\x84" "\x52\xcd\x31\x28\x6f\x7b\xda\xde\x9e\x64\x67\xf4\x25\xdb\xfa\xe2\xe3\xa7" "\x3c\x67\x2c\x47\xfa\xd8\xea\x17\xbe\xfa\xdd\xe7\x77\x7d\x6b\x49\x7f\xa0" "\x1d\xf1\xf7\xe2\x24\x7e\xdc\x52\xfc\x67\x36\x5f\x72\x60\xe9\xae\xdf\x1e" "\x5c\x18\x8a\xbf\xb6\x94\xc4\x2f\xb5\x14\x7f\xf4\xbc\x57\x1e\x7d\xf1\xda" "\x9f\x9f\x14\x8c\xbf\x37\x8d\x5f\x6e\x29\xfe\x73\x17\x2e\xfd\xfa\x8f\x77" "\xef\x3c\x14\xec\x9f\x97\xd3\xfe\xe9\x6a\x29\x7e\x79\xe5\x39\x87\x97\xdf" "\x33\xb8\x3a\xd8\xfe\x07\xd3\xf8\x3d\x2d\xc5\x7f\xe8\xf2\x47\xbe\x31\xff" "\x3d\x4f\x3c\x1a\x6c\xff\x60\xda\x3f\xbd\xad\xf5\xcf\xc8\x8e\x37\x6e\x78" "\xf8\x84\x83\xc1\xf8\x51\x1a\x7f\x4e\x4b\xf1\x2f\x7b\xf5\xc4\xb3\x56\x6e" "\x7d\x64\x63\x30\xfe\xe3\x69\xff\xf4\xb5\x14\xff\xa9\xd1\x91\x55\xf7\xde" "\xb2\x78\xe7\x40\x28\xfe\xfe\x34\xfe\xbc\x96\xe2\x9f\xf1\xfb\x1b\x6f\xd8" "\x77\x60\xf8\xb9\x60\xfb\x87\xd2\xfe\xe9\x6f\x29\xfe\x7b\x97\x5c\x76\xcd" "\xaa\x83\x5b\xee\x0f\x1d\x3b\xe3\x3d\x47\xea\x37\x2c\xc0\x5b\xd3\x3b\x92" "\x73\xac\x2f\x27\xeb\xad\x5e\x67\xb6\xab\xe6\x7a\xe1\x81\xfe\xb8\x7a\xce" "\x37\x37\xf9\x3f\xaf\x93\x15\x65\x8c\xd7\x33\x7f\x06\xe3\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\xf0\xd6\x34\x7c\xe5\x03\xbb\xaf\xdc\xbf\xe6\xaa\xae\x38\x8a\xe2\x40" "\x99\xb1\x1c\xe9\x63\xe5\x59\x43\x43\x03\x2d\xd4\x5b\x5e\x79\xce\xe1\xe5" "\xf7\x0c\xae\xae\xdd\xb6\xb0\x85\x38\x00\x00\x00\x40\xb1\xf4\x3a\xbc\x34" "\xb1\xa5\x27\x5a\x18\xed\x8c\x7b\xa3\x93\x73\xcb\xa7\x73\x04\x27\xa7\x6b" "\x71\xfd\xf6\xec\x1c\x42\xef\x64\xc9\x8e\xc4\x29\x75\x28\x4e\xb9\x43\x71" "\xba\x3a\x14\xa7\xbb\x43\x71\x66\x75\x28\xce\xec\x0e\xc5\xe9\x29\x88\xd3" "\x13\x35\x17\xa7\xb7\x61\x9c\x52\xd3\xed\x99\xd3\xa1\x38\x7d\x1d\x8a\x33" "\xb7\x43\x71\xe6\x75\x28\xce\xfc\x0e\xc5\x39\xae\x43\x71\xfa\x1b\xc6\x69" "\x7e\x1c\x2e\xe8\x50\x9c\xe3\x3b\x14\xe7\x1d\x1d\x8a\xf3\xce\x0e\xc5\x39" "\xa1\x43\x71\x4e\xec\x50\x9c\x93\x3a\x14\x27\x3b\xa7\x3c\xdd\x71\x38\x2f" "\x29\xb9\x28\x14\xa7\xf2\x4d\xb9\x30\x4e\x57\x5c\x9e\x78\x20\x6f\x3e\x3d" "\xad\xe7\xd4\xcc\xf3\x4a\xd3\xac\xa7\xaf\xc9\x7a\xb2\x73\xf6\xd3\xad\xa7" "\xb7\xc9\x7a\xce\x6c\xb3\x9e\x9e\x26\xeb\x59\xda\x66\x3d\x71\x93\xf5\x9c" "\xdd\x66\x3d\xa5\x82\x7a\xd2\x71\x7b\x47\xb6\x7d\x69\x3d\xe9\x5a\x93\xe3" "\xff\xce\x0e\xc5\xd9\xd5\xa1\x38\x9f\xeb\x50\x9c\xcf\x77\x28\xce\x5d\x1d" "\x8a\xf3\x85\x0e\xc5\xd9\xdd\x66\x1c\x80\x66\xa5\xd7\xff\x93\xd7\x8d\xfd" "\xd1\xec\xae\x4b\xa3\x39\xc9\x11\x27\x3b\x0b\x90\x5e\xef\x2e\xae\x3e\x7b" "\xca\xf1\xa8\x27\x7b\x81\x9e\x48\xe3\x9d\x92\xd9\x3e\xab\x28\x5e\xf6\x42" "\x3d\x13\x6f\x71\x87\xdb\x77\x46\x66\x7b\x77\x5d\xbc\xae\x89\xf3\xa6\x06" "\xf1\xfa\xa3\xe8\xe9\x35\x69\xbc\x25\x99\x07\x0b\xf3\xcd\x4e\x28\x64\xda" "\xb7\x6c\xba\xf1\xb2\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30" "\x83\x86\xaf\x7c\x60\xf7\x95\xfb\xd7\x5c\x15\xc5\xd1\xf8\xbf\x5c\x63\x39" "\xd2\xc7\xca\xb3\xfe\x85\x5d\xbb\x8b\x91\xab\x2c\x1f\x00\xfe\x9e\x9d\x4f" "\xb6\x85\xff\xf4\x1f\xa8\x03\x29\x74\xa4\xb4\x62\x44\x5a\xba\x28\x1f\xa9" "\xe1\xa0\x17\xb3\xc4\xa0\x04\xf0\x23\x60\xba\x5b\xca\x50\x37\x6c\xbb\xc8" "\x6e\x53\x58\x91\xb5\x5e\x10\x2f\x54\x48\x34\x71\xf5\xc2\x18\xae\x30\x84" "\x18\x35\x28\x2a\xc9\x72\xa1\x31\x28\x09\x9b\x28\x36\x11\x14\xa3\x12\x45" "\x03\x24\x40\x42\x4d\x4c\xc6\xec\xce\x39\xf3\xd5\x99\xce\x32\x82\x2d\xf8" "\xfb\x5d\xbc\x67\xce\xfb\x3e\xef\xf3\x9c\x73\xb6\x69\xf2\x9c\x99\x38\xae" "\x0c\x51\xf7\xe3\x7f\xfe\xca\x77\xff\x34\xff\xad\xf3\xda\xe7\x0a\xd9\x21" "\x12\x01\x00\x00\x00\x03\xa5\x7d\x78\xae\x39\x53\x0c\x85\xec\xf6\x90\x8f" "\xf2\x1d\x71\xc5\xe4\x3d\x40\x31\x39\xcf\x94\x1a\xc7\xa8\x32\xb2\x7a\x1c" "\x8d\x36\x1c\x37\x3e\x9b\xc4\x6f\x9f\xdb\x7f\xdb\xf6\xd9\x3b\xe7\xdf\x3b" "\xb5\x7f\xcf\xbe\xda\xbe\xda\x81\xb1\xb1\xb1\x4b\x2f\x1e\xdb\x79\xc9\xce" "\xf7\x6f\xbf\x65\x6a\xba\xb6\xa3\x31\x86\xc2\x80\x7c\xb9\x24\xdf\xec\x9d" "\xf3\xb7\xee\x99\x9e\xae\xdd\x3e\xdb\x38\xef\xbe\xee\x72\xb2\xaf\xdc\x9a" "\x9a\x5c\x19\x0e\x27\xd7\xfd\xff\x03\xea\x44\x49\x7c\xab\xce\x9b\xf7\x61" "\xf0\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e" "\xac\x5a\x75\x71\xa1\xba\x3c\x31\x3e\x1a\x85\x10\xf5\x89\xa9\xf7\x90\xae" "\x65\xf2\x71\x5c\x19\xa2\xee\x95\xaf\x6e\xdc\x7a\xf9\xcc\x83\xfb\xda\xe7" "\x0a\xd9\x21\x12\x01\x00\x00\x00\x03\xa5\x7d\x78\xae\x39\x53\x0c\x85\x6c" "\x26\x64\xc2\x99\xab\x67\xe7\xb6\x42\x4b\x21\xb4\xfa\x7e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x7f\x4f\xad\xba\xb8\x50\x5d" "\x9e\x18\x5f\x17\x85\x10\xf5\x89\xa9\xf7\x90\xae\x65\xf2\x71\x5c\x19\xa2" "\xee\xaf\x66\xa7\xae\xbe\xe7\xd3\x9b\x0f\xb5\xcf\x95\x87\xc8\x03\x00\x00" "\x00\x0c\x96\xf6\xe1\x23\xcd\x99\x62\x28\x87\x2d\x21\x17\x9d\xd9\x11\x97" "\xbe\x1b\x38\xab\x6b\x7f\x77\x5c\x9a\xe7\xec\x35\xc6\x75\xbf\x3b\xe8\x17" "\xb7\x65\x8d\x71\xdb\xd6\x18\xf7\xee\x01\x71\x1f\x49\x8e\x77\x04\x00\x00" "\x00\x78\xeb\x4b\xfb\xff\x6c\x73\xa6\x14\x0a\xd9\x53\xfb\xf6\xff\x83\xfa" "\xfa\x34\x6e\x73\x57\x5c\x26\x39\x0e\xf3\x5b\x01\x00\x00\x00\xe0\x3f\x93" "\xf6\xff\xf9\xe6\x4c\x39\x14\xb2\xe5\x66\xbf\xbe\xd6\x7e\xff\xdc\xae\xb8" "\x74\xff\xa0\xef\xed\xd3\xfd\x83\xbe\xb7\x4f\xe3\xce\xef\x53\xa7\xfb\xfb" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe4\x55\xab\x2e\x2e\x54\x97\x27\xc6" "\x33\x51\x08\x51\x9f\x98\x7a\x0f\xe9\x5a\x26\x1f\xc7\x95\x21\xea\x3e\x7b" "\xf1\xb6\xaf\xff\x74\xe1\xd0\xd1\xf6\xb9\x42\x76\x88\x44\x00\x00\x00\xc0" "\x40\x69\x1f\xde\x6a\xbd\x8b\xa1\x90\x1d\x0d\xb9\xb0\x6e\xb5\xef\xbf\x74" "\xdb\x3f\x3e\x33\x3f\x79\x78\x43\xae\x94\x2c\xe7\xf3\xe1\x8e\x3d\x73\x73" "\xb7\xef\x6c\x8c\x69\xdc\x96\x2f\xbc\xfc\xc9\xdf\xfc\x38\xaa\x1c\x13\x77" "\x51\x63\x3c\x21\x37\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xbc\xa1\x6a\xd5\xc5\x85\xea\xf2\xc4\xf8\x29\x51\x08\x51\x9f\x98" "\x7a\x0f\xe9\x5a\x26\x1f\xc7\x95\x21\xea\x3e\x3b\x75\xf0\x5f\x37\x3e\x70" "\xc6\x4b\xed\x73\xe5\x21\xf2\x00\x00\x00\x00\x83\xa5\x7d\x78\xab\xf7\x2f" "\x86\x72\xc8\x87\x7c\xd8\xb8\x7a\xd6\xde\xeb\xaf\x18\xe9\xda\xdf\xef\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\xf0\xf6" "\x31\x7b\xe7\xfc\xad\x7b\xa6\xa7\x6b\xb7\xfb\xe0\x83\x0f\x6f\x91\x0f\x7f" "\xdc\xfc\xe6\xd7\x3a\xd1\xff\x33\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\x27\x8b\x5a\x75\x71\xa1\xba\x3c\x31\x5e" "\x8c\x42\x88\xfa\xc4\xd4\x7b\x48\xd7\x32\xf9\x38\xae\x0c\x51\xf7\xfe\x0f" "\x3e\xf8\xcd\xd3\xde\xf7\xb3\x87\xda\xe7\xca\x43\xe4\x01\x00\x00\x00\x06" "\x4b\xfb\xf0\x56\xef\x5f\x0c\xe5\x90\x0b\xb9\x70\xc6\xea\x59\xaf\x77\x02" "\xab\xfd\x7f\xe9\xbf\x78\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x49\xa1\x56\x5d\x5c\xa8\x2e\x4f\x8c\x9f\x1a\x85\x10\xf5" "\x89\xa9\xf7\x90\xae\x65\xf2\x71\x5c\x19\xa2\xee\xb9\x7f\xf9\xd4\x8d\x4b" "\x47\x6a\xcf\xb6\xcf\x15\xb2\x43\x24\x02\x00\x00\x00\x06\x4a\xfb\xf0\x7c" "\x73\xa6\x18\x0a\xd9\x8b\x42\x21\x6c\x4a\xce\xa7\x3b\x37\x44\x99\xe4\xd8" "\xfb\xbd\x40\x6b\xdf\x6d\x1d\xdb\x46\xd7\xbc\xef\xae\x8e\x7d\x99\x35\xef" "\xfb\x62\xd7\x9d\x65\x93\xbb\x69\xec\x2b\xa6\xf9\x4a\x8d\x63\x73\x5f\xe5" "\xd8\x7d\x95\x10\x42\x39\xd9\x57\x6e\x2d\x4c\x76\xec\x0b\xf7\x75\xec\x3a" "\x75\xcd\xd7\xf9\xed\x8e\x7d\xa5\x01\xfb\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x84\x6a\xd5\xc5\x85\xea\xf2\xc4\x78" "\x14\x85\x10\xf5\x89\xa9\xf7\x90\xae\x65\xf2\x71\x5c\x19\xa2\xee\x53\xfb" "\x2f\x3b\xb2\x6d\xfe\xf7\x2f\xb5\xcf\x95\x87\xc8\x03\x00\x00\x00\x0c\x96" "\xf6\xe1\xad\xde\xbf\x18\xca\xe1\xec\x70\x5a\x38\x7b\xb5\xef\x0f\xa5\xce" "\xf8\x34\x6e\xd7\x03\x2f\x5c\xfe\xb7\x9f\x9c\xf2\xe5\x10\x76\x6c\xfc\xf5" "\x39\xd9\xbe\xf9\xff\x7a\x7e\xf5\xe7\xdd\x43\x08\x23\x9d\x41\x23\x21\xfc" "\x5f\x52\x2f\xea\x53\xef\xd0\x0f\xff\x7e\xff\x8b\x2f\xfe\xe8\xc3\x21\xec" "\x38\x23\xb3\xe9\xf5\xd6\xeb\x4c\x19\xd7\x27\x8f\x6e\xbc\xe9\xc9\x5d\x85" "\xed\xc7\x79\x30\x00\x00\x00\xf0\x36\x92\xf6\xff\xb9\xe6\x4c\x29\x14\xb2" "\x07\xfa\xf6\xff\x69\xe7\xfd\xba\xfa\xff\x99\xd3\xaf\xbb\x6b\x43\x32\x26" "\x1d\x79\xd7\x8e\x91\x52\x52\x6f\xa4\x4f\xbd\x5b\x2f\xf9\xea\x0f\x2a\xe7" "\x1c\xf9\xdd\x4a\xff\x7f\xbc\x7a\x1f\xfd\xdc\x59\x1f\xda\x10\x66\x2e\x89" "\xa7\xd2\xb1\x31\xd3\x25\x8a\xeb\xd3\xf7\x6e\xdd\xfd\xfc\xfa\xc7\x0f\xa6" "\x77\xdd\xa8\x9f\xe9\xaa\x9f\x3e\x97\xe7\x8e\x7e\xff\x63\x87\x66\xf7\x7e" "\xbe\x51\xbf\x18\x8a\xc9\xfc\x59\xd9\x5e\xf5\x8f\x1d\xbb\x9c\x12\xd7\x5f" "\x3b\xf0\xc8\x63\x7b\x77\xcd\x5f\xd3\x59\x3f\xdb\xe7\xfe\xef\xd9\xfa\xce" "\x3f\xfc\xf6\x1b\xfb\x5f\x58\xa9\xff\xca\xe6\xd1\x66\xfd\x77\x1d\xe7\xfe" "\x8f\x5f\xff\xf4\xeb\xab\x4f\x1f\x7e\xf8\xbe\x6b\x3b\xeb\xe7\xfa\xd4\xdf" "\x77\xdd\xba\xef\xbc\x5a\x99\xf9\x67\xf7\xfd\x8f\x76\x25\x4e\x9e\x7c\xe3" "\x0f\xde\xf6\x57\x08\x51\xc7\x83\x8a\xe2\xfa\x2b\x53\x4f\x5c\xb1\x7e\x69" "\xcb\xee\xce\xfa\x21\x84\xc9\xf6\xc0\xf4\xf9\x3f\xf6\xc8\xd7\x2a\x4b\xbf" "\xdc\xb0\x3f\xad\x9f\xfe\x56\xe4\xfc\x2d\x5d\xf5\xdb\xfe\xa9\x35\xc6\xc3" "\xc9\xca\x48\x57\xfd\xa5\x4d\x17\xec\x1b\x7b\x74\x6e\x5d\x67\xfd\xa8\xab" "\x7e\x7a\xd5\x47\xee\xfe\xde\x6b\x9f\x3d\xf2\xd4\x55\xdd\xf7\x7f\x73\xf7" "\xfd\x1f\x53\xbf\x31\x76\x89\xe2\xfa\x55\xdb\x32\x37\x3c\xb3\x79\x6c\x98" "\x1f\xcf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x05\xd4\xaa\x8b" "\x0b\xd5\xe5\x89\xf1\x90\x09\x21\xea\x13\x53\xef\x21\x5d\xcb\xe4\xe3\xb8" "\x32\x44\xdd\x0f\x9c\x77\xe5\x35\x57\xbf\x74\xe0\x4b\xed\x73\x85\xec\x10" "\x89\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x37\x4c\xad\xba\xb8\x50\x5d\x9e\x18\x1f\x89\x42\x88\xfa\xc4\xd4" "\x7b\x48\xd7\x32\xf9\x38\xae\x0c\x51\x77\xf6\xc2\x97\x1f\x7a\xfe\xda\x5f" "\xbc\xa3\x7d\xae\x3c\x44\x1e\x00\x00\x00\x60\xb0\xb4\x0f\x6f\xf5\xfe\xc5" "\x50\x0e\xf9\x90\x0f\xa3\xab\x7d\xff\xe4\xd1\x8d\x37\x3d\xb9\xab\xb0\x3d" "\x94\x1a\xab\x51\x72\xcc\x4e\xcf\xcc\xce\xbd\xe7\x96\x99\x83\x07\x6e\x3e" "\x41\x57\x0e\x00\x00\x00\xac\x55\xda\xff\x67\x9b\x33\xa5\x50\xc8\x9e\x17" "\x72\x49\xff\xbf\xb4\xe9\x82\x7d\x63\x8f\xce\xad\x4b\xfb\xff\x10\xc2\xe4" "\xca\x50\xbc\x65\x6a\xba\x36\x16\x9a\xef\x09\xae\xda\x96\xb9\xe1\x99\xcd" "\x63\x95\xe6\x7b\x82\xf6\xb8\x0b\xf7\xce\x4c\x27\xaf\x09\xd2\xbc\x77\x5f" "\xb6\xfe\xb9\xd9\x4f\x2c\x5f\xdd\x33\xef\xce\x56\xdc\x2b\x53\x4f\x5c\xb1" "\x7e\x69\xcb\xee\x34\x2e\x97\x1c\x57\xe3\x2e\x6a\xc5\x4d\xdf\xbb\x75\xf7" "\xf3\xeb\x1f\x3f\x98\xc6\x8d\xa4\xef\x29\x56\xe2\x76\xb4\xe2\x5e\x3b\xf0" "\xc8\x63\x7b\x77\xcd\x5f\x93\xae\x67\xda\xf3\xb5\xc5\x9d\x7e\x7d\xf5\xe9" "\xc3\x0f\xdf\x77\x6d\x33\x4f\x72\x1c\x4d\xea\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x6f\x76\xe0" "\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xb0\x5f\x47\x21\x52\x55\x7f\x1c\xc0\xcf\x99\x99\x75\x47\x67\xdd" "\xff\xec\x3f\xca\x4d\x8a\x54\x4c\x34\x48\x56\x2a\x2a\x21\x5a\x85\xa4\x87" "\x36\xa2\xc0\x17\x0b\x7c\xc8\xca\xc8\xa4\x96\x30\x84\x70\x13\xb2\x30\x09" "\x9f\x2a\x82\x22\xa2\x20\x10\x29\x08\x7a\x28\xc2\x82\x32\x48\xa2\x20\x42" "\x7b\x08\x43\x7b\xa8\x87\xd8\x88\x36\xc4\x8d\x8a\xd9\xbd\x67\x77\xe6\xea" "\x6d\xd7\x5b\x6b\x20\x9f\x0f\x0c\x67\xcf\x99\x7b\xbf\xe7\x77\xcf\x3d\x73" "\x77\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\xbf\xd5\x5d\xeb\x9f\x68\x0f\x3f\x35\xfc\xdb\xed" "\x8b\x6f\xf9\x6c\xf7\x96\xb1\x5d\xb7\xbe\xb7\xed\xc9\xfd\x83\xf3\x0e\xdf" "\xbc\xef\xb6\x63\x2f\xdf\xf3\xc6\x89\x93\x7d\x2b\xd7\xbc\xfe\xe0\x86\xf1" "\x47\x7a\x86\xf6\xee\x1d\xfc\xea\xfa\xf1\xcf\xff\x78\x62\xc6\xe0\xc7\x27" "\x9b\x55\x59\xb7\x1e\x42\xfc\x29\x86\x70\xf9\x17\x2b\x9f\xdf\xf3\xc9\x91" "\x45\xad\xb1\x18\x42\xa8\xc6\xe6\x48\x08\x7d\xb1\xf2\x51\x5f\xcc\x25\x0c" "\x9c\x0e\x21\xdc\x3b\x55\x67\xe7\x9b\xef\x8c\x5d\x73\x5f\xab\x1d\x79\xb6" "\xbb\x63\xfc\x7f\xb9\x90\xfc\x75\x85\x46\x35\xd5\x33\xa9\xd9\x59\x2f\x17" "\x96\x7a\xb6\xcf\x9e\xfe\x60\xfb\x65\x3f\xac\xde\x70\xec\xd0\x37\xeb\xc7" "\x06\xea\xa7\x1f\x1d\x99\x3e\x24\xd6\xdb\xf6\x53\x08\xbd\x9b\xdb\xcf\xef" "\x0a\x21\xcc\xcf\x5e\x2d\x69\xb7\xf5\xa7\x93\xdb\x8e\x5d\xd0\xf6\xf7\x0d" "\x33\xd4\xb5\x6c\x96\xf5\x5f\x5d\xd0\x5f\x9c\xb5\xf3\xb2\xb6\x31\x43\x4e" "\x7a\x7f\x69\xae\xdf\x35\xcb\x3a\x6a\xb9\xb6\x3e\xcb\xf3\xca\xaa\xcc\x71" "\x7e\x92\xee\x5f\xcf\x1c\xcf\x9f\x7f\xb8\xe5\xe7\xe9\xcb\xda\x77\xb3\x76" "\xd5\x39\xe6\x57\xd3\x2b\x86\x4a\x0c\xb5\xa9\xe9\x1e\x8a\xd3\x7b\x24\xb4" "\xdd\xb7\x18\xe2\xc4\xbd\x9f\xee\x57\x3a\xf6\x42\xcc\xed\x8d\x18\x42\xcc" "\xf5\x2b\xb9\x7e\xb5\x2b\x77\x5d\x13\xf3\x66\x1b\xad\x1a\x63\xe7\x78\x3a" "\x2e\x37\xbe\x24\x1b\xaf\x65\xe3\x4b\x67\xd8\x6b\x77\x15\x8c\x5f\x9a\xae" "\x37\xfb\xa0\x9e\xca\x5d\x7f\x3e\xb4\x71\xc6\x1f\x53\xd7\x35\x21\xd5\xf5" "\xdd\xdf\xd4\x72\x3e\x54\xda\x9e\x41\x67\x1b\x4f\xf5\xd6\xb3\x9b\xd1\xc8" "\xc6\x1a\xf1\xff\x67\x9c\xf3\xe7\x59\xa4\xf7\x36\x9e\x7c\xee\xad\x13\x3b" "\x5f\x59\xde\x2c\xa8\x23\xbe\x1d\xb3\xfc\x98\xcb\xef\x9e\x55\xfe\xd7\xdb" "\x6e\x3c\xba\x62\xe7\xb7\xa3\xfd\x45\xf9\x9b\x2b\x59\x7e\xa5\x54\xfd\xc3" "\xab\x7f\x39\xf8\xe3\x9d\x9f\x2e\x2a\xcc\xdf\x9f\xf2\xab\xa5\xf2\x8f\x5f" "\xbb\xe2\x85\xf7\x77\xed\x38\x55\xb8\x3e\x3f\xa7\xf5\xa9\x95\xca\xaf\xae" "\xbd\x6a\x7c\xcd\xee\x81\x8d\x85\xf5\xbf\x9a\xf2\xeb\xa5\xf2\x5f\x5b\x7f" "\xe0\xa5\xde\xeb\x3e\x3e\x58\x58\xff\x40\x5a\x9f\xf9\xe5\xd6\x67\xeb\x63" "\xbf\x6f\x7a\xf3\xe2\xd1\xc2\xfc\x90\xf2\x17\x94\xca\x5f\xf7\xeb\x25\x57" "\xae\xdd\x7e\xe0\xfe\xc2\xfc\x0f\xd3\xfa\x34\x4a\xe5\x1f\x19\xde\x3a\xb4" "\xe7\x81\x2b\x76\x2c\x29\xca\xff\x32\xe5\x2f\x3c\xe7\xfc\xd6\x27\x66\xd9" "\xf7\x77\x6f\x3a\x74\x74\xcb\xf1\xc2\xfa\x07\xd3\xfa\x34\x4b\xd5\x7f\xd3" "\xf2\x75\x77\x0c\x8d\x3e\xbc\xaf\xe8\xd9\x19\x47\xce\xd7\x7f\x58\x80\x0b" "\xd3\x45\xd9\x77\xac\x67\xb2\x7e\xd9\xdf\x99\xff\x54\xdb\xef\x85\x17\x9b" "\x71\xf2\x3b\x5f\x4f\xf6\x5a\xf8\x6f\x4e\x94\xd3\x9a\xa7\x77\x0e\xf3\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" "\xe0\x2f\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7\xed\x08\x14\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78" "\x2a\x00\x00\xff\xff\xfa\xe4\x58\xf0", 23427); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_POSIXACL*/ 0x10000, /*opts=*/0x20000200, /*chdir=*/0xfc, /*size=*/0x5b83, /*img=*/0x20006540); memcpy((void*)0x20000200, "./file0\000", 8); memcpy((void*)0x200004c0, "cgroup2\000", 8); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000200ul, /*type=*/0x200004c0ul, /*flags=*/0ul, /*data=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }