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