// https://syzkaller.appspot.com/bug?id=863dd68e0c7cd1e2d3e9dc0004b321cefd9a6fcb // 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } 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 setup_fault() { static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) exit(1); } } } 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x200055c0, "btrfs\000", 6); memcpy((void*)0x20005600, "./file0\000", 8); *(uint8_t*)0x20005640 = 0; memcpy( (void*)0x20005680, "\x78\x9c\xec\xdd\x7d\x6c\x55\x67\x1d\x07\xf0\x73\xdb\x95\x22\x2f\x6d\x67" "\x74\x69\xe3\x0b\x2c\x8e\x80\xe0\x08\xae\x4e\x07\x44\x5a\x8b\x18\x5e\xe6" "\xac\x6d\xb2\x81\x7b\xa1\x4e\xe3\xc0\x39\x2c\x64\x88\xe2\x9a\x75\x83\x90" "\xcd\xcd\x5a\x36\x8b\x76\x32\x98\x44\xa7\x4c\x91\x4a\x06\xc8\x16\x47\x71" "\x09\xe8\x2c\xd9\x4c\x5c\x57\xc5\x2d\xe0\xea\x0b\x8d\x5b\x98\xec\x85\xb9" "\xf9\x92\xde\x7b\xcf\xe5\xde\x73\x68\x7b\x87\x73\x9d\xdb\xe7\x43\xda\x73" "\x9e\xfb\x3b\xcf\x73\x9f\x7b\x72\xfe\xb8\xdf\x4b\x9f\x73\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\x08\x82\x60\xdd\xcd\x9d\xd7\x3d\xd8\xd6\xf1\xf2" "\x39\x5b\x77\x54\xde\xf1\xc4\xda\x86\x19\xeb\x9e\xe9\x3b\xfb\x0b\xad\xf7" "\x6e\x7e\x60\x52\x5d\xc5\x84\xa7\x9b\x1e\xad\x5b\xd9\xb4\x71\x7a\xf5\x93" "\x6d\xc7\xce\xea\xa9\x58\xd8\x3e\x29\x08\x12\xc9\x7e\x89\x74\xff\xc5\x35" "\x73\xeb\x3e\x57\xbf\xf8\xe3\x23\xc3\x01\x1b\x3e\x99\xda\x96\x95\x0d\xf4" "\x94\xa9\xae\x87\x53\x8d\x11\x39\x0f\xf6\xf7\xcb\xfd\xf9\x74\x10\x04\x45" "\x91\x01\x0a\xd3\xdb\x39\xe9\x9d\x82\x9c\x01\x32\xbb\x2b\xe2\x03\x0e\x6a" "\xc1\xc2\x25\x3b\x6e\xdc\x36\xbf\x6f\x7d\xe9\x9c\xfd\xe3\xba\x13\x07\xe2" "\x2f\x9d\x7e\x23\x87\x7b\x02\xc3\x25\x7d\x5d\xf5\x9e\xbc\x96\xaa\x93\xbf" "\x0b\x22\x47\x64\xda\x59\x97\x5e\x22\xe7\x12\x4d\xf5\x8f\x5e\x70\xaf\xc9" "\x8b\x00\x00\x5e\x91\x69\xb5\xc9\x4d\xe6\xed\x68\xfa\x2d\x6e\xa6\xdd\x1c" "\xad\x47\xda\xd5\x91\x76\x6b\xa4\x1d\xbe\x43\x68\xcd\x6e\x9c\x8e\xd4\xb8" "\x23\x06\x9a\xe7\xf8\x68\x7d\x98\xe6\x59\x9d\x8a\x0a\xc5\x03\xce\x33\x52" "\x4f\x9f\xff\x4c\xbb\x36\xda\x3f\xd2\x8e\x44\x8d\x57\x30\xcf\xdc\x43\xd3" "\x91\x66\xe4\x40\xf3\x6c\x8c\xd4\x87\x6b\x9e\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xaf\x27\xef\xad\xfc\xcb\xcc\xe5\x2f\xde\x5e\x32" "\xa2\x7b\xe9\xf5\xbf\x5f\xf3\xa1\x9b\xe6\x75\x57\xbe\xfb\x91\xaf\x95\xdf" "\x53\x39\xf7\x47\x1d\xcb\xda\xee\xfb\xea\xa3\x75\x2b\x9b\x36\x4e\xaf\x7e" "\xb2\xed\xd8\x59\x3d\x15\x0b\xdb\x27\x05\x41\x59\xb2\x5f\x22\xd5\x3d\x71" "\xdd\x65\x47\x57\xd5\x8d\xfb\x58\xcd\x37\x7e\xf9\xe1\x9f\x5e\x39\xfa\xce" "\x6b\x0b\xd3\xe3\x86\xdb\x33\xb2\x0e\x0e\x7a\xc2\x9d\xe9\xa5\x41\x70\x65" "\x56\xa5\x37\x1c\xf6\x68\x49\x10\xd4\xe6\x16\x92\xcd\xa0\x3d\x5e\x58\x9a" "\xdc\x99\x17\x16\x00\x00\x00\x78\x23\xa9\x48\xfe\x2e\xc8\xb4\x53\x71\xb0" "\x28\xa7\x9d\x48\xa6\xc9\x44\xf2\x5f\x28\x15\x16\x17\x2c\x5c\xb2\xe3\xc6" "\x6d\xf3\xfb\xd6\x97\xce\xd9\x3f\xae\x3b\x71\xe0\xf4\xc7\xab\x1d\x60\xbc" "\xea\x53\x8e\x97\x69\x97\x9d\xfc\x49\x64\x05\xe3\x30\xfe\x46\xc7\x3b\x59" "\x0f\x0f\x5d\x11\x1b\x67\x70\xd1\x11\xa3\x79\xfe\xe2\xed\xbb\xf7\x8d\x59" "\xb5\xfe\x82\xe5\x2f\x74\x5e\x32\x73\xf6\x5f\xcf\xef\xbd\xa1\xf3\x99\x29" "\x55\xb7\x7e\xfd\xc1\x31\x97\x6e\x59\xf1\xcd\xb9\x2b\x63\xf9\xbf\x6c\xf0" "\xfc\x1f\x9e\x39\xf9\x1f\x00\x00\x80\xff\x86\xfc\x1f\x1d\x67\x70\x43\xe5" "\xff\xe2\x6f\xff\xf6\x87\xad\xdf\x79\x57\xdf\xf6\xbd\x4f\x1d\xdd\xf4\xb7" "\xad\xcd\xab\xeb\x9f\x38\xb1\xa1\xad\xfe\x7d\x2b\x27\xd7\xff\xfd\x82\x73" "\x5b\x5f\x8c\xe5\xff\xf1\x39\x4f\x19\xcb\xff\xe1\x8c\xc3\xfc\x5f\x10\x9c" "\x5e\xfe\x07\x00\x00\x80\xd7\xb3\xff\x75\xfe\xaf\x8e\x8d\x33\xb8\xa1\xf2" "\xff\x86\xaa\x77\x4c\x59\x73\x7d\xd7\x1d\x9b\x27\x6e\x1a\x7b\xeb\xea\x67" "\xff\xf1\xd2\xfd\x33\x1e\xfe\x79\xf1\x67\xa6\x2e\x7e\xdb\xec\xa7\xf6\xcd" "\xdc\xb8\x3b\x96\xff\xa7\xe5\x97\xff\xcf\xc8\x9e\x76\xf8\x60\x57\x38\xe1" "\xab\x4b\x83\x60\x5a\xfe\x27\x15\x00\x00\x00\xc8\x11\xfe\xbf\xfb\xc9\x8f" "\x16\xc2\xbc\x9e\xfa\xe4\x20\x9a\xd7\x6f\xdb\x55\xb5\x77\xdb\xc6\x09\x5f" "\xba\x7c\xcc\x9f\xef\x3e\x37\x71\x62\xef\xb2\xa9\x35\xed\x9b\x8f\xfc\xe1" "\xa2\x2d\xdf\x4d\xdc\x3b\xbd\xe5\x48\x4f\x2c\xff\x57\xe7\x97\xff\x8b\x5e" "\x9b\x97\x0b\x00\x00\x00\xe4\xa1\xf1\xf1\x83\x97\xdd\xfc\xeb\xf1\x2f\x7d" "\xaa\xa6\xfd\xee\x5d\x6b\xbf\xbf\x6c\xd6\xf6\xe3\x0d\x3b\x37\x3d\xdd\x9d" "\x78\x6b\xe5\xbc\x96\x96\x2f\xb6\xc4\xf2\x7f\x6d\x7e\xf9\xbf\x78\x78\x5e" "\x0e\x00\x00\x00\x70\x0a\x4b\x2e\xbc\xe6\x17\x17\xf7\x8d\xbd\xe9\xf8\xd2" "\x3f\x95\xb4\xf6\x36\x37\xef\xb9\xbc\xe2\xd0\x43\xd7\x3e\xf6\xc7\xa6\xc5" "\xdf\x9b\xf5\xcf\xf2\x6d\x57\xc4\xf2\x7f\x43\x7e\xf9\x7f\x54\x7a\x9b\x5e" "\xf9\x90\xea\xb4\x3f\xfc\x2b\x84\xdb\x4b\x83\x60\x64\xff\x4e\x63\xaa\x70" "\x20\x68\xad\xca\x14\x00\x00\x00\x80\x57\x49\x98\xd3\xcf\x3c\xff\xd2\xcf" "\x37\x4d\xd8\x5e\x3a\xf1\x5b\xb3\xaf\xb8\x66\xf9\x9e\x1f\xb4\x1f\xdc\x7a" "\xdb\x91\x0f\xf6\x9e\x73\xd5\x57\x2a\xd6\xfe\xee\xb9\x75\x1f\x88\xe5\xff" "\xc6\xc1\xef\xff\x1f\xde\xe9\x20\x5c\xff\x9f\x73\xff\xbf\xd8\xfa\xff\xac" "\x42\xea\xae\x7f\x33\xdd\x18\x00\x00\x00\x80\x37\xa3\xf8\x7a\xfe\xf0\xf6" "\xf8\xa9\x6f\x2e\x18\xe8\xfb\xf7\xf3\x5d\xff\x5f\xdc\xb5\xaa\xed\xb9\x5d" "\xef\x59\xd0\x5c\x53\x7b\xff\x7d\x8f\x4d\x7d\x68\xd1\xa1\xe7\x27\x6e\x19" "\xb3\xe7\x96\xe6\xae\xaa\x77\x76\x7f\xb9\xfc\xed\xb1\xfc\xdf\x9c\x5f\xfe" "\x2f\xcc\xde\xbe\x9a\xdf\xff\x07\x00\x00\x00\xa7\xe1\xff\xed\xfb\xff\x16" "\xc5\xc6\x19\xdc\x50\xf7\xff\x7f\xe1\xe5\x9d\x87\x67\x1d\xbc\xe8\xdf\xbf" "\xf9\xe8\xda\x3b\xc7\xb6\x6c\xe8\x49\xfc\xaa\x69\xcd\xcf\x9e\xed\x39\xbc" "\xf3\xe8\xe4\x1f\x57\x9c\x37\xf9\x2d\xb1\xfc\xdf\x9a\x5f\xfe\x0f\xb7\xa3" "\xb3\x5f\x5e\x67\x78\x7e\xd6\x94\x06\x41\x79\xff\x4e\xfa\x6e\x82\x5b\xc3" "\xe9\x5e\x1d\x29\x74\x14\x65\x15\x52\x27\x3e\xd2\xa3\x3e\xec\x91\x2e\x74" "\x14\x67\x15\x92\x1a\x23\x3d\xce\x2b\x0d\x82\xb3\xfb\x77\x9a\x23\x85\x33" "\xc3\x42\x6b\xa4\x70\xac\x24\x5d\xb8\x2b\x52\x78\x38\x2c\xa4\xaf\x87\x4c" "\xe1\x27\x91\x42\x67\x78\xa5\x6d\x28\x49\x4f\x37\x5a\xd8\x1d\x16\xd2\x0b" "\x2c\x3a\xc2\x15\x14\xa3\x33\x4b\x22\x22\x3d\x8e\x0f\xd4\xa3\xbf\x70\xca" "\x1e\x87\x32\x4f\x0e\x00\x00\xf0\xa6\x12\x86\xe7\x74\x96\x2d\xca\x6d\x06" "\xd1\x28\xdb\x91\x18\xea\x80\x51\x43\x1d\x50\x30\xd4\x01\x85\x43\x1d\x70" "\x46\xe4\x80\xe8\x81\x03\x3d\x1e\x34\xe4\x16\x32\x03\x5e\x38\xbf\xe0\xfd" "\xf7\x3c\xf0\xf8\x0d\x53\x3f\xbb\x6f\xc6\x23\xa3\x3e\x72\xd5\xec\x29\x27" "\xd6\xaf\xfe\x57\x57\xdb\x27\x9e\x5f\x5d\xdf\xb8\xe8\x92\x58\xfe\xbf\x2b" "\xbf\xfc\x1f\x9e\x8a\x11\xa9\xcd\x40\xeb\xff\x83\x70\xfd\x7f\xfa\x7b\x0d" "\x33\xeb\xff\x1b\xc2\x42\x59\xa4\xd0\x11\x16\x6a\xa3\x77\x0c\xa8\x0d\x9f" "\x23\x15\x76\x6f\x09\x9f\xa3\xac\x36\xdd\xe3\x58\x79\xa6\x00\x00\x00\x00" "\x6f\x68\xe1\xe7\x02\x85\xc3\x3c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xb0\x77\xef\x71\x52\x55\x77\x82\xc0\x4f\x37\xfd\x84" "\xa6\x69\x0d\x89\xa0\x04\x7b\x30\x62\x30\xa1\x69\x04\x12\x35\xba\x41\x4c" "\x8c\xab\xa3\x69\x49\x30\x66\x62\x62\xf3\x68\x49\x87\x46\x90\x87\x8a\x8b" "\x13\x7c\x24\x19\x85\xf8\x58\x31\x91\x8c\x8e\xb0\x8e\x09\x1a\x25\xc4\xc4" "\x15\xa3\x0e\xac\x93\x28\x33\x43\x7c\x3f\xe2\x23\x8c\x59\x35\x4a\x7c\x81" "\xba\xee\xba\xae\xba\x9f\xee\x5b\xa7\xa8\xba\xd5\x65\x17\x02\x4a\x3b\xdf" "\xef\x1f\x5d\xa7\xea\x77\x9e\xb7\x1e\x5d\xe7\xde\x5b\xe7\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x1f\xc3\x82\xdf\x9e\xb5\x71\xe0\xc8\x17" "\xfe\x7e\x65\xbf\xe3\x0f\x5f\xf2\x8f\x6b\xf6\xb9\x7b\x8f\xa7\x8e\x39\xed" "\xf9\x95\x6b\x8e\x7d\xe9\xdb\xcf\x6d\x5e\xdb\x38\xea\xa1\x89\xf3\xcf\xba" "\xe2\xa0\xf1\x4f\x5d\xb6\xf9\x63\x7f\x18\x7c\xc2\xb2\x4f\x86\xd0\xd2\x55" "\xae\x2c\x29\x5e\xb6\xf0\xc4\x4d\xa7\x4f\xdc\xfb\x88\x09\x17\xad\x3f\xf4" "\x97\x53\xfa\x5d\x39\xaf\x2a\x53\x6f\x26\x1e\xfa\x75\xfe\x29\xcf\xdc\x39" "\x2f\xb6\xfa\x74\xff\x10\x6e\x2e\x0b\xa1\x22\x1d\x18\x59\x97\x04\x2a\x33" "\xf7\xeb\x62\x7d\x43\xea\x42\xd8\x2d\x6c\x0d\x64\x4b\xb4\xf5\x4d\x4a\xa4" "\x1b\x0e\xbf\xab\x0d\x61\x79\xd8\x1a\xc8\x56\x75\x4b\x6d\x08\x75\x39\x81" "\xaf\xde\x7f\xc7\xda\x1f\x76\x26\x96\xd6\x86\xb0\x6f\x08\xa1\x3a\xdd\xc6" "\x1f\xab\x93\x36\x6a\xd3\x81\xe1\x55\x49\xa0\x6f\x3a\x30\xab\x22\x09\xfc" "\xef\x77\x12\xd9\xc0\x9a\xf2\x24\x00\xdb\x2d\xbe\x19\xb2\x2f\xfa\xd5\x2d" "\xf9\x19\x1a\xba\x2f\x57\xe4\xf5\x57\xb9\xc3\x3a\xf6\xc1\x4a\x0f\xaf\x4f" "\x4c\x34\x14\xcf\xf7\xe2\x61\x3b\xb9\x53\x39\xaa\xd2\x0f\xb4\x6c\xd7\xd3" "\x56\x50\x1d\x3b\x45\xc1\xdb\x63\x9d\x77\x5b\x2f\x78\xb7\x15\x6c\xe7\x8b" "\x3d\x6d\xb9\x5f\xa4\x32\xdf\x50\xde\xd9\x1a\xaa\x0e\xe5\xd3\xda\x4e\x9e" "\x3c\xbf\x63\x5e\x7c\xa4\x3c\x34\x35\xf5\x29\x56\xd3\x4e\x7a\x9e\x1f\xdb" "\xb2\x70\xea\xb6\xa4\x7b\xcd\xeb\x30\x76\xa0\x61\x87\xbc\x0e\x37\x5f\xfe" "\xca\xa4\xe6\xfe\xc7\x0c\xba\x61\xc2\xa6\x21\x63\x4f\x5a\xb6\x6c\x7b\xbb" "\x59\x6c\xf3\xee\x6c\xd5\x21\xf3\x9a\xeb\x35\xcf\x63\x34\xde\xe7\x49\x2f" "\x78\xfb\x15\x7c\x4b\x6a\xf4\xa5\x2b\x84\xf0\x9f\xbf\x3b\xe6\xec\x13\x2b" "\x0e\x3a\xe2\xb6\x83\x97\xbe\x31\xe6\xf0\x6b\xfa\xed\x35\xe9\xf3\x87\xee" "\xf6\xe2\x35\x6d\x1f\xdf\xfb\xf8\xdd\xef\xfa\xf2\x99\x9b\x0a\xe6\xff\x0d" "\xef\x3e\xff\x8f\x2f\xe7\x78\x5b\x9e\x97\x3b\xb6\xfa\x66\x7d\x32\x37\x8f" "\x8f\xd4\xc5\xc4\xcb\xf5\xc9\xdc\x1c\x00\x00\x00\x7a\x8d\xde\xb0\xd7\xf4" "\xd2\x1f\x8d\x9a\xda\xef\xe8\x5b\x1f\x9d\x5c\xb9\xe7\xac\x45\x7f\xff\xdf" "\x86\xb5\x5e\x31\x70\xd3\xf9\x83\x6e\xdd\xff\x0f\x07\x35\x1d\xf1\x95\x41" "\x2b\xbe\x5e\x30\xff\x6f\x2c\xed\xf8\x7f\x3c\xe4\x5f\x97\x3b\xda\x75\x21" "\x8c\xef\x4a\x9c\x3b\x20\x84\x41\x5d\x8f\x27\x81\x6b\x63\x77\xa6\x0c\x08" "\xe1\xaf\xba\x52\x2d\xf9\x81\xc3\x52\x81\x75\x21\x0c\xee\x4a\x8c\xc8\x56" "\x95\x2a\x51\x13\x4b\x34\xa6\x02\xcf\xd6\x67\x02\xe3\x53\x81\x3b\x63\xa0" "\x25\x15\xb8\x26\x06\x2e\x4e\x05\xce\x8b\x81\xd5\xa9\xc0\xd4\x18\x58\x97" "\x0a\x4c\x88\x81\xd0\x9e\x3f\x8e\xfd\xeb\x33\xe3\x28\x39\x50\x1b\x03\xad" "\xc9\x46\x5c\x1d\xcf\x42\x78\xb5\x3e\xb6\x96\xda\x56\x8f\x67\xab\x02\x00" "\x00\xd8\x41\x32\xb3\xc3\xca\xfc\xbb\x39\xe7\x3a\x6c\x6f\x86\x38\xbd\x5c" "\x5d\xdb\x53\x86\x78\x06\x76\xd1\x0c\xd5\xa9\x1a\xd2\x33\xd8\xec\xb4\xaa" "\x68\x0d\x15\x3d\xd5\x50\xde\x53\x0d\xd9\x71\x2f\x7a\xf7\xe1\x17\xd4\x5c" "\xd6\x53\xcd\x05\xa7\x61\x94\xe5\x67\xb8\xaf\xe1\xea\xc3\x87\xde\xfb\xf6" "\x75\x33\xbe\xb0\xb1\x7d\xd0\x19\xeb\x3f\xf5\xd9\xd7\x7f\x71\xc6\x85\x57" "\x5e\xf6\xcc\xff\x99\xf2\x3f\x46\x2d\xfc\xf4\x0f\x9e\x2b\x98\xff\x37\xbf" "\xfb\xfc\xbf\xba\x9b\x8e\x94\x15\x1c\xff\x0f\xe1\xb8\xae\xbf\x31\x77\x79" "\x26\xd2\x91\x8d\xb7\xb6\xe4\x65\x00\x00\x00\x00\xb6\xc3\xe0\xca\x25\x6b" "\x9e\x3e\xb4\xef\x4f\x8e\xda\xf8\xf4\xf3\x9f\x5a\x7f\xf9\xc0\x7b\x6e\x5b" "\x7f\xed\x0f\x0e\xb8\xee\xe1\xd6\xf2\x87\xf7\x5c\xba\x6a\xd0\x5e\x05\xf3" "\xff\xf1\xa5\x9d\xff\x1f\xf7\x89\xf4\xc9\xc9\x1c\x36\xc4\xdd\x10\x33\x06" "\x84\xd0\x9c\x1f\x48\xaa\xfd\x5c\x61\x20\x39\xea\xdd\x2f\x13\x00\x00\x00" "\x80\xde\x20\x7b\x3c\x3e\x7b\x2c\xbc\x3d\x73\x9b\x9c\xa2\x9d\x9e\x4f\x17" "\xe6\x6f\xd9\xc6\xfc\xf1\xc0\xff\xf8\x6e\xf3\xd7\x5c\xf0\xdc\xf7\x7f\xb7" "\xec\x92\xff\x77\xe5\xd4\xff\xfe\x5f\xbf\x30\xed\xe7\x7f\xf7\xe5\x6f\x3d" "\xf7\xb9\xea\xa3\xbe\x36\xe7\xc6\x6f\x1f\xfd\xef\x23\x26\xff\xac\xf0\xf7" "\xff\x2d\xa5\x9d\xff\xdf\x37\xff\x36\xe9\xc4\x9d\xb1\x17\x97\x0e\x08\xa1" "\x26\x27\x70\x57\xec\x65\x67\xa0\x4b\x63\x0c\x3c\xf9\xf9\xfc\x40\x66\xfc" "\x77\xc6\x0d\xb0\x38\x56\x95\x39\x31\x21\x5b\xd5\xe2\x58\xa2\x35\x06\x9a" "\x53\x81\xe5\xc5\x4a\xdc\x9b\x2d\x31\x28\x3f\x90\x79\xb2\xb2\x8d\x9f\x9b" "\x1d\x47\x7b\xa6\x44\x4e\x00\x00\x00\x00\xde\x77\x71\x77\x40\x3c\x2e\x1f" "\xcf\xff\xaf\x9f\xfc\xa3\xc3\xb7\x5c\xf0\xfa\x5f\xaf\x7f\xeb\xf9\x65\x2f" "\x3d\xfa\xc2\x0f\xf6\x1d\xf6\xd9\xd6\xe1\xff\x30\xf8\xd6\xcf\x0c\xff\xee" "\xef\x3f\xb3\xef\x43\x0b\x0b\xe6\xff\xad\xdb\x76\xfe\x7f\xd7\x3c\xb8\xe0" "\xf4\xfe\x8e\x7e\x21\x8c\xaa\x08\xa1\x4f\xfa\x87\x01\x1b\xfa\x26\x0b\x03" "\xc6\x40\x5d\x59\x26\x71\x7b\xdf\xa4\xae\x3e\xe9\xaa\xce\xee\x1b\xc2\x21" "\x9d\x03\x4b\x57\xf5\xa7\xcc\xfa\xff\x15\xe9\x35\x06\xef\xaf\x4d\xaa\x8a" "\x81\x41\xc3\x56\x6e\x19\xde\x99\xb8\xba\x36\x84\x51\xb9\x81\x87\xbf\xb1" "\x62\x5c\x67\x62\x5e\x2a\x90\x6d\x7c\x52\x6d\x08\x7b\x77\x8e\x36\xdd\xf8" "\x4d\x35\x49\xe3\x95\xe9\xc6\x7f\x5c\x13\xc2\xd0\x9c\x40\xb6\xaa\x29\x35" "\x21\x74\x36\x56\x95\xae\xea\x8e\xea\xcc\x75\x0c\xd2\x55\xfd\xa2\x3a\x84" "\x8f\xe4\x04\xb2\x55\x7d\xa6\x3a\x84\x05\x01\x80\x5e\x2a\xfe\x2b\x9d\x96" "\xfb\xe0\xdc\x05\x67\xce\x98\xdc\xd1\xd1\x36\x67\x27\x26\xe2\x3e\xfc\xda" "\x70\x72\x7b\x47\x5b\xd3\xd4\x59\x1d\xd3\xaa\x8b\xf4\x69\x5a\xaa\xcf\x79" "\xcb\x18\x9d\x5d\x38\xa6\x52\xaf\x7c\xf3\x44\x66\x89\xa2\x07\x2f\x78\xb4" "\xa1\x94\x74\xf6\x77\x82\xcd\xb9\x6d\x65\xf6\xe3\x17\x9c\x38\x98\xb9\x1f" "\xbf\x0b\x55\x76\x8d\xf3\x80\xca\xbc\xbb\x63\xd2\x43\xfe\xe4\x3e\x85\x4d" "\x84\x9c\x6f\x52\xc5\x86\x5c\xbe\x93\x87\xdc\x37\xb7\x92\xad\x4f\x62\x41" "\xfd\x31\x7f\x55\xe8\x17\x6a\xe6\xcf\x6d\x9b\xd3\x74\xc6\xe4\x79\xf3\xe6" "\x8c\x4e\xfe\x96\x9a\xfd\x80\xe4\x6f\x3c\xcc\x94\x6c\xab\xd1\xe9\x6d\xd5" "\xb7\xbb\xbe\x95\xf0\xf2\x28\xba\x5a\x56\xca\x7b\xdd\x56\xfb\xe5\x56\x32" "\x6a\xde\xcc\xd9\xa3\xe6\x2e\x38\x73\x64\xfb\xcc\xc9\xd3\xdb\xa6\xb7\x9d" "\x32\xe6\xc0\xb1\x63\x0f\x1c\x37\x76\xf4\x98\x71\xa3\x3a\x47\xd5\x9c\xfc" "\xed\x61\xa8\xfb\x75\x57\x75\x6a\xa8\xef\xac\x28\x71\x5c\x3b\x70\xa8\x7b" "\x56\xe4\x54\xf2\x7e\x7c\x6a\x48\x48\x48\xf4\xb6\xc4\x4d\xc7\x5e\xdf\xf8" "\x40\xc7\xf5\x77\xd4\xb6\x8d\xbc\xff\xe0\x8e\x93\xee\xbe\x6a\xd6\xbf\x3e" "\x3e\xfe\x8c\x23\x7f\xdb\xf4\xaf\x4b\xe6\xaf\x5a\x50\xb9\x47\xc1\xfc\x7f" "\xf6\xbb\xcf\xff\xe3\xa7\x4e\xfc\xe4\xcf\xac\xcf\x50\xec\xf8\x7f\x43\x3c" "\xcc\x9f\x3c\xbe\xf5\x30\x7f\x6b\x0c\x2c\x2f\xf5\xf8\x7f\x43\xb1\xa3\xf9" "\xd9\x13\x03\x1a\x53\x81\x45\x31\xb0\xc8\x61\x7e\x00\x00\x00\x3e\x1c\xe2" "\xee\xc8\xb8\x37\x33\xee\x95\xbe\x7d\xc9\x96\xd5\xf7\x1e\xff\xd1\x9f\x1f" "\x7c\xe9\xef\x77\xff\x6c\xcd\xdc\xbd\x36\x4c\xfd\xf1\x75\xdf\x6b\x7b\xa9" "\xe6\x57\x87\xb5\xff\x79\xe2\xa1\x4d\x87\x15\xcc\xff\x17\x95\xf6\xfb\xff" "\x1d\xb4\xfe\x7f\x76\xe9\xfa\xa3\x8a\x2d\xf3\x3f\x22\x96\x68\x2e\xb6\xfe" "\x7f\x7a\x99\xff\xec\xfa\xff\x8b\x8a\xad\xff\x9f\x5e\xe6\x3f\xbb\xfe\xff" "\xf2\x0f\x60\xfd\xff\xf9\xd9\x40\x6a\x93\xbc\x6a\xfd\x7f\x00\x00\xe0\xc3" "\xe0\xfd\x5b\xff\xbf\xc7\xe5\xfd\xd3\x17\x08\x28\xc8\xd0\xe3\xf2\xfe\xe9" "\x0b\x04\x14\x64\xe8\x71\x19\xff\x52\x2f\x10\xb0\xcd\xeb\xff\x9f\x56\x33" "\xec\xaf\x4f\xbc\xe0\x8b\x55\x5b\xbe\x34\xe0\x95\xd5\x77\xec\xfb\xf3\x4f" "\x4c\x3f\xfe\xc5\x7f\x7f\x7c\xe6\xdf\x9c\x38\xf2\x88\x2f\x9e\x34\xe5\xd3" "\xb7\x16\xcc\xff\x2f\x2e\x6d\xfe\x6f\xe1\x7e\x00\x00\x00\xd8\x75\x7c\xe9" "\xb7\x3f\x6d\xbf\x7b\xec\x59\x03\x9f\x7c\xed\x9f\xc6\x9c\xbe\xb8\xed\xd4" "\xb5\x17\x4c\xfa\x9f\xb3\xae\xbf\x67\x9f\xc7\xd7\xaf\xba\xaa\xcf\x94\x8d" "\x4f\x14\xcc\xff\x97\x97\x36\xff\x7f\xff\xd7\xff\x0b\xc5\xce\xff\x6f\x2c" "\x16\x68\x29\xb6\x30\xa0\xf5\xff\x00\x00\x00\xe8\xa5\x8a\xad\xff\x77\xd3" "\x83\xb5\xbf\x39\x7a\xf0\xd9\x0d\xaf\x9e\xba\xfc\xba\x81\x7b\x3f\x74\xea" "\x80\x39\x37\x3e\xf8\xc0\x93\x77\x0d\x1b\x7a\x51\xd5\x4d\x0b\xe6\x2f\x79" "\xa0\x60\xfe\xbf\xba\xb4\xf9\x7f\x3c\xed\xa2\x3c\x2f\x77\xec\xcd\x9b\xf5" "\xc9\x9a\x76\x21\xbd\xa6\xdd\xcb\xf5\xd9\x9f\x0c\x00\x00\x00\x40\xef\x50" "\x1e\x9a\x9a\x2a\x4b\xcc\x9b\xb7\x32\xea\x61\xef\xbd\xcd\xc7\x32\x4b\x81" "\xbe\x5b\x3a\xd7\xb9\xff\x69\xec\xba\x07\x5e\x78\x7b\xf1\x94\xf3\x9e\x5d" "\xf9\xe2\x8d\x4f\xde\xff\xb1\x97\x4f\xb9\xed\xea\xef\xfd\xe3\x17\x4e\x7f" "\xed\xc2\xa1\x23\xc7\x2f\x1e\x5a\x30\xff\x5f\x57\xda\xfc\x3f\xef\x77\x19" "\x9b\x2f\x7f\x65\x52\x73\xff\x63\x06\xbd\x79\xc3\x84\x4d\x43\xc6\x9e\xb4" "\x6c\xd9\xd6\xe3\xff\x00\x00\x00\xc0\xce\x53\xea\x7e\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\x83\xf7\xc6\x8a\x96\xff\x7b\xc7\xfe\x7f" "\x3e\xb0\xe3\xf1\x4f\xac\xa9\xfb\xc4\x84\x27\x9a\xf6\x1f\x32\xf1\xa7\x57" "\x56\x9f\xf3\xeb\xef\x3f\xf3\x8b\xd6\xe9\xbf\x5c\x5a\xf0\xfb\xff\x70\x5c" "\x57\xb9\x62\xbf\xff\x8f\xd7\xfd\x8b\xbf\x2f\x18\x98\x97\x3b\xb6\xda\xf3" "\xfa\x7f\x99\xfb\x5f\x3d\x7a\xd5\x82\xae\x25\x0b\x37\xd4\x87\xb0\x4f\x6e" "\x60\xc6\x39\x33\x76\x0b\x99\x6b\xf3\xef\x97\x1b\x58\xfb\xcd\x11\x7b\x74" "\x26\xce\x49\x97\xb8\x6d\xe3\x84\x67\x3a\x13\x27\xa5\x03\x47\x8e\xdc\xfd" "\xf5\xce\xc4\x21\xa9\x40\x6b\x5c\x24\x71\x70\x3a\x10\xaf\xaa\xf8\x7a\xff" "\x54\x20\x2e\xaf\xf8\x40\x3a\x10\xb7\xc7\xea\x74\xa0\x2a\x13\x38\xbf\x7f" "\x32\x8e\xb2\xf4\xb6\xda\x54\x97\x6c\xab\xb2\xf4\xb6\x7a\xac\x2e\x84\x01" "\x39\x81\xec\xb6\xba\xb9\x2e\x69\xa3\x2c\x3d\xc0\xa5\xa9\x40\x76\x80\xa7" "\xa6\x03\x71\x80\xc7\x66\x02\xe5\xe9\x5e\xad\xea\x97\xf4\x2a\x06\xea\x62" "\xd1\xab\xfa\x25\xbd\x02\x00\x60\x97\x15\xbf\x05\x56\x86\x93\xdb\x3b\xda" "\x9a\xe3\x57\xf8\x78\xbb\x67\x45\xfe\x6d\x94\xb7\x64\xd9\xd9\x85\xd5\x96" "\x95\xd8\xfc\x13\x99\xa5\xc9\x1e\xbc\xe0\xd1\x86\x52\xd2\x7d\xd2\xdf\x45" "\xb7\x5e\x6b\xbc\x32\x54\x77\x0e\x61\x74\xc1\xd7\xd5\xdc\x2c\x65\x5d\xa3" "\xdc\x31\xb5\xf4\xb0\xe9\x06\x16\x19\x72\x4f\xab\xbd\x95\x17\x29\x97\xb6" "\xad\x9b\xae\xaa\xf8\x88\x6a\x93\x11\x35\x4d\x9d\xd5\x31\xad\xb2\xc7\x81" "\x8f\xe9\x39\xcb\x01\x15\x3d\x66\x19\x5d\x30\xd9\xc9\xcd\x52\xde\xb5\x49" "\x4b\xa8\xa5\x84\xbe\x94\x30\xa2\x12\xb7\x4d\x09\x5d\x8e\xf7\xcb\x43\x53" "\x53\x9f\x54\xae\x83\x63\xb0\x21\xe4\xe9\xe9\x15\x51\xea\xef\xf5\x73\xd7" "\xf9\x2b\xf6\x2a\xc8\xcd\x73\xc2\xee\x5b\x66\xfe\xcb\xd1\x57\x7d\xf3\xef" "\x36\xfc\x69\xc3\xb4\xf3\x2f\x9d\x70\x44\xd9\xb3\xc7\x5c\xb3\xf6\x8a\xb7" "\x36\x3e\xf9\x37\x8f\xb7\xdf\xf8\xf2\x7f\x29\x98\xff\x37\x94\x36\xff\xaf" "\xce\x1d\xd7\xeb\x99\x8b\x01\x2c\x8a\x57\xd6\xfb\xdc\x80\x10\x5a\x4b\x1c" "\x11\x00\x00\x00\x7c\xf8\xdd\xf0\xdd\xeb\x6f\x3c\x61\xd6\x9d\x9b\x4e\x5e" "\x57\xf1\xc8\x7d\xf7\xcd\x28\xff\xf2\x09\x95\xef\x2c\xfc\xf5\xc2\x33\xbf" "\xf7\xd8\xed\x8b\x8f\x3c\xff\xd3\x3f\xdb\xde\xf8\x59\xa7\xd5\xed\xfe\x64" "\xc5\x4f\xff\xf9\x84\x53\xbe\xd1\x30\x7d\xda\xde\xbf\xae\xf9\xe8\x65\xe7" "\xbd\xb5\xf6\xd4\xcd\xa7\xbe\x56\xbf\xdf\xab\xb5\xe7\x7f\xb4\x60\xfe\xdf" "\x58\xda\xfc\x3f\xee\xc1\xca\x1c\x0a\x4e\xf6\x76\xac\x8b\xd7\xff\x3f\x77" "\x40\x08\x5d\x97\xd6\x6f\x48\x02\xd7\xc6\xe1\x4e\x19\x10\xc2\x5f\x75\xa5" "\x5a\x62\x89\xe4\x82\xfa\x47\xc5\x12\xcd\x49\xe0\xda\xb8\xc3\x64\x44\x2c" "\xd1\xda\x92\x5f\x55\x4d\x0c\xac\x4e\x05\x9e\xad\xcf\x04\xd6\xa5\x02\x77" "\xc6\x40\x66\x2f\xc5\xca\x90\xd9\x95\x73\x49\x7d\x08\xe3\xba\x52\xc7\xe5" "\x97\x98\x1d\x4b\x34\xa4\x02\x5f\x8e\x81\xc6\x54\xa0\x29\x06\x9a\x53\x81" "\xfe\x31\x30\x3e\x15\x78\xa1\x7f\x26\xd0\x92\x0a\xfc\x5b\x0c\x84\xf6\xfc" "\x6d\xf5\xab\xfe\x99\x6d\x05\x00\x00\xb0\x2d\x32\xf3\xac\xca\xfc\xbb\x21" "\x3d\xcf\x5b\x5d\xd1\x53\x86\xb2\x9e\x32\xf4\xed\x29\x43\x79\x4f\x19\xaa" "\x7b\xca\x50\x6c\x14\xf1\xfe\x8d\x31\x43\x65\xea\xe4\x95\xb2\x9c\x4c\x95" "\xe9\x5a\x6b\x53\xb5\x14\x64\x88\x17\xc3\xdf\xe6\x7e\x15\x64\x08\xf7\xe6" "\xe7\x4c\x17\x2c\x68\x3a\x9e\x7f\x90\x3d\xdf\xa0\x2c\x3f\xc3\xc7\x1f\xba" "\x7a\xcd\x77\xd6\x7c\xe1\xa5\x63\x7f\xb3\xe4\xb2\x37\xef\x7d\xaa\xfc\x47" "\x43\x56\x7c\xb7\xb1\xf6\xad\x75\x1b\x2e\xf9\xf1\xb0\xb1\xbb\xbf\xf8\x83" "\x82\xf9\x7f\x73\x69\xf3\xff\xbe\xf9\xb7\x49\xeb\x77\xc6\xf9\xff\xd6\xeb" "\xff\x25\x81\xbb\x62\xf7\x2e\x8d\xa7\x8e\x37\xc6\xc0\x93\x9f\xcf\x0f\x64" "\x76\x0c\xdc\x19\x27\xbb\x8b\xb3\x55\xb5\x64\x4a\x64\x26\xed\x8b\x63\x89" "\xf1\x31\xd0\x98\x0a\xcc\x8e\x81\xf1\xa9\x40\xeb\x71\x99\xc0\xf2\x3d\xf2" "\x03\x99\x99\x76\xb6\xf1\x73\xb3\x8d\xb7\x67\x4a\xe4\x04\x00\x00\x00\xe0" "\x7d\x17\x77\x10\xc4\xdd\x34\x71\xfe\x3f\xb3\x6e\xd2\xc4\x71\xa3\x7e\xb2" "\xe4\x8d\xe5\x33\x17\xad\x7d\xfb\xc2\x17\x2e\x5c\x71\x7b\xc7\xab\x95\xe3" "\x36\xbe\x76\xcd\xa7\xbe\xd6\xe7\xf1\xe1\xb7\x17\xcc\xff\xc7\x97\x36\xff" "\x8f\xed\xf5\xcb\x6d\xec\xbc\xd8\x9b\xa7\xfb\x87\x70\x73\xd9\xd6\xde\x64" "\x03\x23\xeb\x92\x40\xdc\x8f\x51\x17\x7f\x1e\x3f\xa4\x2e\x84\xdd\x72\x76" "\x70\x64\x4b\xb4\xf5\x4d\x4a\x54\xa5\x1a\x0e\xbf\xab\x4d\x7e\xa1\x5e\x95" "\xae\xea\x96\xda\x64\x8d\x81\x78\xff\xab\xf7\xdf\xb1\xf6\x87\x9d\x89\xa5" "\xb5\x21\xec\x9b\xb3\xf7\x25\xdb\xc6\x1f\xab\x93\x36\x6a\xd3\x81\xe1\x55" "\x49\xa0\x6f\x3a\x30\xab\x22\x09\xc4\x3d\x3f\xd9\xc0\x9a\xf2\x24\x00\xdb" "\x2d\xbb\x57\x30\xbe\xa0\x32\xa7\xba\x64\x35\x74\x5f\xae\xc8\xeb\xef\xc3" "\x72\x4d\xd0\xf4\xf0\x0a\xf6\x81\x76\x93\xaf\xbb\xdf\x5c\xed\x2c\xd5\xe9" "\x07\x32\xfb\x54\xb3\xb6\xed\x69\x2b\xa8\x8e\x9d\xa2\xe0\xed\xb1\xce\xbb" "\xad\x37\xbe\xdb\x1a\xbc\xdb\x72\xbf\x48\x65\xbe\xa1\xbc\xb3\x35\x54\x1d" "\xca\xa7\xb5\x9d\x3c\x79\x7e\xc7\xbc\xf8\x48\xee\x2f\x59\x0b\xec\xa4\xe7" "\x39\xf7\x57\xaa\xa5\xa4\x77\xc0\xeb\x70\xd1\x7b\xef\x6d\xcf\xaa\xd3\x1d" "\x68\x4e\x7d\x7c\x34\x77\x5f\xae\xfb\xd7\x61\x59\xac\x6e\xf3\xe5\xaf\x4c" "\x6a\xee\x7f\xcc\xa0\x1b\x26\x6c\x1a\x32\xf6\xa4\x65\xcb\x4a\xee\x46\x11" "\xf1\x87\xc2\x23\xd6\x4c\xda\x2d\x77\xf3\xee\x6c\xd5\x21\xf3\x9a\xeb\x75" "\x9f\x27\x2d\x3e\x4f\x7a\xe3\xbf\x81\x46\x4f\x5b\x08\x61\xff\xd6\x97\x6e" "\xed\x7f\xf0\xbf\xed\xf5\xd0\xc9\xab\xbf\x35\x6a\xaf\xc1\xe3\xfe\xf2\x4f" "\x4f\x1c\x19\x1e\x79\x78\xe9\x3e\x0b\x8e\xb9\x68\xe5\x3e\xb7\x1c\x55\x30" "\xff\x6f\x29\x6d\xfe\x5f\x91\xba\xed\xf2\x46\xdc\x98\x73\x07\x84\xf0\xc9" "\x9c\x8d\xbb\x21\x6e\xfe\xc3\x07\x24\x9f\x83\x39\x81\xe4\x53\xf2\x23\x85" "\x81\xe4\x90\xfb\x53\xf5\x45\x3f\x39\x01\x00\x00\x60\x47\xcb\xee\xee\xc8" "\xee\x2f\x68\xcf\xdc\x26\x27\x84\xa7\xe7\xc9\x85\xf9\x5b\xb6\x31\x7f\xdc" "\x5f\x31\xbe\xdb\xfc\xa5\xf6\xfb\xb5\x6f\xbc\xf8\xf6\x8c\xd3\xbe\x7e\xcb" "\xa5\xef\x84\xfe\x87\x37\x8c\x9d\xbf\xe5\x92\xe3\x66\x6d\x9c\xb1\xe6\x85" "\x87\xa6\xff\x71\xd5\x75\xc7\xb6\xbe\x51\x30\xff\x6f\x7d\xf7\xf9\x7f\x4d" "\xaa\x9b\x8e\xff\x3b\xfe\xcf\x4e\xe2\xf8\x7f\xb7\x76\xf5\x5d\xd1\x35\xe9" "\x07\x16\x6d\xd7\xae\xe8\x82\xea\xd8\x29\x1c\xff\xef\xd6\xae\xfe\x6e\x73" "\xfc\xbf\x5b\x8e\xff\x3b\xfe\xdf\x1d\xc7\xff\x7b\xe0\xf8\x7f\xb7\x76\xf5" "\xa7\xad\xe0\x5b\xd2\x6c\x5f\xba\x42\x08\x77\x1f\xf4\xd6\xaa\xbf\xbd\xf4" "\xe6\x25\xff\xeb\x7b\x93\x87\x7c\x6a\xed\xa4\xc6\x7b\x2a\xbe\x7f\xd8\x8c" "\xdf\xaf\x1c\xbe\xee\xbe\xab\xbe\x72\xfb\x91\x5f\x7c\xb9\x60\xfe\x3f\xbb" "\xb4\xf9\xbf\xf5\xff\xba\x5f\xb4\x2f\xbb\xfe\x5f\x6b\xb1\xf5\xff\x66\x17" "\x5b\xff\x6f\x91\xf5\xff\x00\x00\x80\x9d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1" "\xea\x7d\x05\x19\xd2\xab\xf7\x15\x64\xe8\x71\x81\xc0\x1e\x97\x18\xb4\xfe" "\xdf\x36\xaf\xff\xf7\xfc\xda\xa7\xfe\x5c\x77\xfc\xfa\x9f\xfc\xea\xa2\xaa" "\x47\x3e\x72\xfa\x88\x41\x43\x4f\x78\xe6\xc0\xe9\x97\x5f\x39\xf4\x87\x0f" "\x6c\xdc\xfc\xec\xfe\x5f\xdb\x58\x30\xff\x5f\x54\xda\xfc\x3f\xbe\x1c\xfa" "\xe5\xb6\xde\x5b\xd6\xff\x6b\x3c\xae\x48\x55\x17\xc7\xc0\x6c\x0b\x03\x02" "\x00\x00\xb0\x2b\x2a\xb6\x83\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0f\xd6\x79\x5f\x3f\xeb\xb4\xc5\xc3\x5e\x9b\xf6\xcf\xdf\x9a\x78" "\xf7\xdd\x5f\xb9\x6e\xcf\xb2\xa1\x4f\x3c\xf2\x0f\x7f\xf9\xd6\x3d\xa7\xd4" "\x1e\xf2\xc2\x77\x66\x0c\xfc\xf8\x43\x13\xe7\x9f\x75\xc5\x41\xe3\x9f\xba" "\x6c\xf3\xc7\xfe\x30\xf8\x84\x65\x9f\x0c\xa1\xbd\xab\x5c\x59\x52\xbc\x6c" "\xe1\x89\x9b\x4e\x9f\xb8\xf7\x11\x13\x2e\x5a\x7f\xe8\x2f\xa7\xf4\xbb\x72" "\x5e\x75\xa6\xde\xca\xcc\xed\x5e\x79\xb9\x63\xab\x6f\xd6\x87\xb0\x3c\xe7" "\x91\xba\x98\x78\xb9\xbe\xf3\xce\xd6\xc0\x57\x8f\x5e\xb5\xa0\xa2\x33\xb1" "\xa1\x3e\x84\x7d\x72\x03\x33\xce\x99\xb1\x5b\x67\xe2\x9a\xfa\x10\xf6\xcb" "\x0d\xac\xfd\xe6\x88\x3d\x3a\x13\xe7\xa4\x4b\xdc\xb6\x71\xc2\x33\x9d\x89" "\x93\xd2\x81\x23\x47\xee\xfe\x7a\x67\xe2\x90\x4c\xa0\x2c\xdd\xdd\x2b\xfa" "\x27\xdd\x2d\x4b\x77\xf7\x87\xfd\x43\x18\x90\x13\xc8\x76\xf7\x3b\xfd\xf3" "\xab\xca\xb6\xf1\xa5\x4c\xa0\x3c\xdd\xc6\xcf\xea\x92\x36\x62\xa0\x2e\x16" "\xbd\xbc\x2e\x69\x23\x06\x3a\x62\x89\xf6\x9a\x10\x46\x55\x84\xd0\x27\x5d" "\xd5\xbf\x54\x27\x55\xf5\x49\x57\xf5\x9b\xea\xa4\xaa\x3e\xe9\xaa\xfe\xb6" "\x3a\x84\x43\x42\x08\x15\xe9\xaa\x36\x56\x25\x55\x55\xa4\x47\x7e\x4f\x55" "\x52\x55\x0c\x0c\x1a\xb6\x72\xcb\xf0\xce\xc4\xf2\xaa\x10\x46\xe5\x06\x1e" "\xfe\xc6\x8a\x71\x9d\x89\x53\x53\x81\x6c\xe3\x13\xab\x42\xd8\xbb\xf3\x25" "\x93\x6e\xfc\xc6\xca\xa4\xf1\xca\x74\xe3\x4b\x2b\x43\x18\x1a\x42\xa8\x4a" "\x97\x78\xad\x22\x29\x51\x95\x2e\xf1\xa7\x8a\x10\x3e\x92\x13\xc8\x36\xfe" "\xed\x8a\x10\x16\x04\x3e\x14\xe2\x87\xcf\xb4\xdc\x07\xe7\x2e\x38\x73\xc6" "\xe4\x8e\x8e\xb6\x39\x3b\x31\x51\x95\x69\xab\x36\x9c\xdc\xde\xd1\xd6\x34" "\x75\x56\xc7\xb4\xea\x54\x9f\x8a\x29\xcb\x49\xbf\x73\xf6\x7b\x1f\xfb\x13" "\x5b\x16\x4e\xed\xbc\x7d\xf0\x82\x47\x1b\x4a\x49\x57\x64\xca\x55\x76\x75" "\xf9\x80\xca\xbc\xbb\x63\x76\xf5\xde\xc7\x7e\xf5\xcd\xad\x64\xeb\xf3\x51" "\x50\x7f\xcc\x5f\x15\xfa\x85\x9a\xf9\x73\xdb\xe6\x34\x9d\x31\x79\xde\xbc" "\x39\xa3\x93\xbf\xa5\x66\x3f\x20\xf9\xdb\x27\x13\x4d\xb6\xd5\xe8\xde\xb2" "\xad\xf6\xcb\xad\x64\xd4\xbc\x99\xb3\x47\xcd\x5d\x70\xe6\xc8\xf6\x99\x93" "\xa7\xb7\x4d\x6f\x3b\x65\xcc\x81\x63\xc7\x1e\x38\x6e\xec\xe8\x31\xe3\x46" "\x75\x8e\xaa\x39\xf9\xbb\x23\x86\xba\xe2\xfd\x1f\xea\x9e\x15\x39\x95\xbc" "\x1f\x1f\x00\x12\x12\x12\xbd\x2d\x51\x9e\xf7\xe9\xd6\xbc\xab\x7f\x90\x17" "\x7c\xd1\xdf\xda\xd1\xca\x50\xdd\xf5\x01\x5d\x30\xad\xc8\xcd\x52\xd6\x35" "\xca\x1d\x31\xe8\xc3\xde\xe3\x88\xdf\xcb\xf7\x94\x1e\x47\x34\xba\x60\xe2" "\x50\x90\xe5\x80\x9e\xb3\x8c\x29\x98\x4c\x6c\xcd\x52\x9b\x64\xe9\xfa\x5e" "\x57\x30\x39\xcc\xad\xa9\xbc\x6b\x93\xc6\xfb\xe5\xa1\xa9\xa9\x4f\xb1\xed" "\xd0\x90\x7f\x37\x77\xf3\xbe\xb8\x1d\x9b\xf7\xb1\xcc\xa6\x2b\x35\x0d\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xfc\x7f\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\x03\x07\x02\x00\x00\x00\x00\x40" "\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x16\x00" "\x00\x00\x00\x10\xe6\x6f\x1d\x46\xcf\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xa5\x00\x00\x00\xff\xff" "\x8f\xf9\xfe\x67", 21928); syz_mount_image(0x200055c0, 0x20005600, 0, 0x20005640, 1, 0x55a8, 0x20005680); memcpy((void*)0x20000080, "./file0\000", 8); res = syscall(__NR_open, 0x20000080ul, 0ul, 0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000180, "./bus\000", 6); res = syscall(__NR_open, 0x20000180ul, 0x14d27eul, 0ul); if (res != -1) r[1] = res; *(uint32_t*)0x200000c0 = r[1]; memcpy( (void*)0x200000c8, "\x42\x99\xc6\x3c\x6a\xca\x4b\xec\x68\x72\xd2\x02\x80\x8d\xda\x69\x34\x9c" "\x62\x54\x02\x9b\xbc\x4a\x38\xfb\x4e\x91\xbb\xa4\x82\x6c\xd7\x77\xcb\x59" "\x74\x4a\xdd\x18\x26\x71\x40\x88\x2a\x98\x37\x3f\xbb\xf4\xb5\xb0\x7c\x00" "\x51\x61\xd8\x34\x8d\xe6\x89\xf8\xb0\x8e\x97\x8b\x07\xcd\x94\x72\x22\x26" "\x32\x81\x1d\xc8\x3c\xd9\x44\xc3\xdd\x6a\xda\x5c\x40\x78\xe3\x48\x08\xcb" "\x0c\x49\xcc\xa0\x84\xd5\x5a\x1e\x49\xae\xfc\x36\xe3\x28\xe4\xc2\xa6\x22" "\x70\x3e\x90\x45\xdc\x39\x0f\xf7\x3f\xe1\xfe\x35\xf2\x8f\x8f\x5b\x62\x16" "\x03\xfb\x91\x4d\x39\xe6\x8a\x96\x0b\x16\xc0\x12\x3e\xbf\xa2\x37\x24\x72" "\x6d\x87\x33\x6b\x0e\xec\x22\x21\x57\xa2\xcc\xfd\xcd\xd7\x9e\xd0\x5f\xe5" "\x7a\x66\x2f\x1f\xf1\xd8\xd6\x3e\xf8\xf0\x6e\xc2\x15\x9e\x9f\x40\xbc\x0c" "\x7b\xdc\xa3\xb3\x39\xa7\x5f\xc9\xb9\x32\x7a\xca\x13\xb1\x07\xe7\xb8\x14" "\x97\xdc\xbb\x41\x22\x72\x28\x78\xb1\x33\x81\xeb\x4e\x72\x21\x5e\x05\x68" "\x21\x15\x3f\x7f\xb0\xac\x17\x36\xd3\x2a\x50\x0c\xa1\x03\xab\xb1\xd8\xdf" "\xa8\x23\xab\x9f\xb7\xd7\xb8\x8c\x43\x71\x19\x86\xbd\x06\x3f\x57\xb4\x13" "\xb6\x6c\xbb\x5c\x5a\x51\xc1\x05\x9d\xcc\xac\x09\x8c\x5b\xab\xeb\xb2\xdc" "\xa3\x87\x5f\x97\x55\xab\x50\x97\xc9\x0a\x59\xdb\x8e\x2c\x77\x86\x08\xb5" "\x74\xf8\x44\x76\x6e\x80\x9a\xe1\xf1\xa2\x6a\xa0\x04\x7c\xb9\x2e\x22\xea" "\xb9\x2c\xfa\x8f\x3f\xaf\x26\xfb\x6a\xfd\xf8\x6d\x6c\xdf\x00\xa1\x37\x31" "\x73\x5c\x53\x09\x53\x31\x0a\x76\xfa\x6d\xaf\xa9\x79\x4c\x2e\x44\xb3\xe2" "\x09\x4e\x67\x94\xe4\xa7\x3d\x25\xed\xd6\x70\x61\x27\x5b\x04\x5c\xc9\x48" "\xf4\x83\xae\xb2\xa9\x25\x91\xd7\x17\xb6\x98\x68\x75\x0d\x7a\xd9\x81\xce" "\x16\xdb\x25\xe4\x40\xb1\x57\xf3\x5f\x9b\x46\xc4\xab\xf5\x45\x20\xd1\x52" "\x99\xbd\xe6\x0d\xd5\x85\xc2\x2d\x34\x77\xfb\x6a\xaa\x7a\x80\x3d\x8a\x61" "\x12\x74\x4b\x0f\x2f\xae\xb4\xa2\xc4\x18\xe2\xae\x93\xba\x42\xa0\xb9\xce" "\x8e\xeb\x2e\xeb\x56\xcb\xd7\xaa\x2b\x2f\x7e\xf2\xda\xd7\x79\x3f\xa5\xf5" "\x71\x9b\xee\x10\x8d\xb9\x95\x14\x71\xdb\xdd\xe9\x5e\x52\x6a\xff\x96\x95" "\x44\xd0\xdd\x0e\x7e\xb8\x28\x01\x88\x75\xe9\xa6\xb7\xc6\xb1\xd0\xff\xae" "\x2c\xe9\xf6\x88\xa4\x43\x4a\x53\xa9\x5d\x1d\xcb\x0f\xd8\xbe\xaf\x64\x22" "\x85\xe1\x8e\x7c\x67\xa7\x0c\x58\x51\xb5\x29\xfd\x5e\xef\x00\x50\x9d\x8a" "\x63\x41\xdf\xef\x2d\xf3\x76\x96\x9b\x8b\x71\x63\xd1\x61\x6e\x4c\xcd\x26" "\x6a\xae\x27\xc9\x20\xb5\x31\x1e\xa1\x7f\xf8\xcb\xe8\xec\x1f\xb4\x00\xc5" "\xa4\x1f\xec\xcd\x06\x67\x22\xd4\x32\xa4\x5c\xca\x2a\x16\xfa\x42\x80\x23" "\xbd\xd5\xf2\xce\x6a\x02\x24\xf0\xf9\x2b\x6c\x56\x9a\x3f\x35\x93\x76\x27" "\x26\x6d\xb5\x6b\xd7\xfd\x80\xa6\x8f\xc3\x33\x57\x9a\xf2\x42\x3f\x89\x99" "\x0f\xff\xce\x72\xc0\x39\x97\x64\x35\x17\x8f\x22\x72\xd2\xb5\x2a\xf7\xc0" "\xa7\x02\x43\x42\x14\x69\x56\x2c\x92\x68\x4e\xe3\x10\x0d\xb2\x52\x25\xa1" "\x4a\xc1\x56\x41\x73\x5c\x23\xfc\xa5\x0c\xa3\xdc\x9c\x97\x25\x83\x29\xd3" "\x07\x5a\x4a\x49\x4c\x7d\x98\xdc\x53\x56\xa0\x57\x9d\x2d\xec\xc7\x42\xbc" "\x16\xce\x25\xf0\xde\x25\x6c\x70\x26\x98\xea\xcd\xe3\xef\xf8\x5f\x5a\xc7" "\x75\x14\xec\xd8\x9a\x2b\x22\x3a\xf4\xbc\x6c\xd2\x52\xee\x30\x6a\x1c\x56" "\x79\xb4\xec\xb0\x7c\xed\x45\x80\x49\x24\x6f\xd4\xf1\xe1\xe4\xef\xa0\xa3" "\xe6\x21\x2c\x50\xe6\x9d\x21\xbc\x78\xcb\x39\xad\xe8\x56\x2e\xeb\x32\xbf" "\xbd\x22\xcf\x83\x8c\xc3\x86\x71\x1a\xe8\x23\x09\x43\x98\x32\x3e\xf7\xb0" "\x87\x3a\x60\x7d\xd2\xfd\x3e\x7c\x45\xac\x99\x0d\xc1\xa5\xd9\x01\xa2\x39" "\xf8\xfd\x54\x1d\x74\x59\xb9\x41\xa5\x7d\x7d\x54\x9f\x09\x40\x8c\xa2\x91" "\xbf\xf6\x9e\x1c\xe2\xa9\xb5\x6f\x28\x53\x7d\xa7\xe7\x19\xe0\x28\x6b\xcf" "\x60\x17\xfc\x77\x49\x3c\xda\xa7\x6b\xce\x86\x0a\x84\x05\xed\xd5\xb6\xb2" "\x1a\x39\xb0\x00\x47\x0b\x54\x28\x09\x63\x48\xae\x3e\x23\xc3\x55\x9c\x90" "\xe4\x37\x2c\xc3\x39\x62\x75\x64\x58\x2b\x92\x41\xa0\xd6\xdf\xf9\x89\x97" "\xea\xda\x31\xd9\x09\x28\x4e\x4e\x66\x0e\xeb\x3e\xcc\x03\x1b\xb7\x49\x24" "\xaa\x91\xa2\x99\xa4\xae\xe3\x19\xe5\x0f\x5b\xb4\x53\x08\x0f\x0a\x9d\xf2" "\x02\x4c\x9c\xb5\xbe\x4f\xaf\xe0\x3c\x24\x9e\xdd\x3d\x17\x38\xef\xa1\x78" "\xb5\x34\x4a\x01\xc8\xfa\xf3\xc5\xca\xc7\x20\x07\x38\xaa\xa5\x05\xc2\xd0" "\x6f\x80\xe2\x03\xa5\x95\x51\x06\x80\x71\xcd\xf0\xe0\xdf\x51\x92\xa1\xa2" "\x85\xec\x9e\x8d\xcb\x85\x41\x10\x38\x9c\x13\x75\x8a\x83\xad\x77\xd2\x71" "\x1c\x73\x49\xd8\x50\x33\x74\x27\xe2\x8a\xa0\x1a\x77\x09\x91\xd8\xef\xba" "\x75\x62\xd1\x1b\x98\x28\xba\x90\x18\xa2\xf9\x02\x2d\x4c\x21\x33\x66\x5e" "\x99\xe6\x62\x82\x3a\xb2\x32\x1f\x7e\xc8\x11\xd4\xb6\xb2\xf4\x71\x84\x88" "\x0a\xce\x5a\xb3\x69\xde\x70\xac\xd4\xb8\xbc\xea\xa1\x0a\xa9\xb0\xb5\x67" "\xbb\x37\x4e\x69\xd8\x32\x07\xd2\xac\x23\x41\x3b\x13\xc2\x24\x7d\x17\xbf" "\x44\xcb\x93\x48\x6b\x88\xc2\x99\x70\x66\x3f\x28\x02\xa9\x91\xde\xa2\x85" "\x6b\xb5\x23\x09\x75\x19\x43\x58\x15\x99\x57\xcf\xf0\x0b\xec\x12\x82\x55" "\x7c\xc2\x0a\x6b\xef\xd9\xfe\xa5\xfb\x55\x78\xa7\xee\xab\xef\x1d\x12\xf1" "\x49\x12\x26\x80\xc3\x9e\x27\x0b\xc3\xe3\xb0\x26\x51\xfc\xef\xc7\xa0\xff" "\xaf\xbb\xb6\x8c\x59\x29\xa4\xf2\x14\x6e\x02\x66\xd4\x8f\x5d\xb9\xd1\x21" "\x1f\x6c\xf8\xdc\x35\xfe\x63\xce\xc5\xdd\x5c\x66\x33\x18\x8a\x45\xd7\x7a" "\x0d\xc1\xe2\xfc\x77\x08\x0b\x58\x8f\xe4\x73\xb2\x4b\xc4\x4b\xf3\x83\x0f" "\xed\x21\x1f\x44\xf7\x7d\x59\x63\xec\x35\x04\x54\x61\x30\x06\x07\x1c\x65" "\x3e\x59\x35\xa5\x97\x71\x26\x17\x68\x07\x30\x78\x32\x74\xf2\x23\x21\x66" "\xfb\xf8\xce\x18\x54\xed\x70\xdb\x93\xf3\x62\x5d\x3d\x5e\x36\xe1\xc5\x21" "\xd4\xf5\x6d\xc2\x7f\xed\xb4\xec\xca\x9a\xab\x0c\x5e\xa8\x75\xc1\x53\xde" "\x56\x87\x96\xc8\xb9\x71\x72\x35\x56\xa7\x58\x5a\x5e\x10\xd1\x52\x3c\xff" "\x58\xd3\xce\xbf\x7e\x4d\x4f\x1e\xa1\x2a\x7f\xd9\x90\x87\xe9\xa3\x8a\x8f" "\x9d\xa7\xc3\xfe\x8a\xc7\x85\xbb\xcd\xa0\x17\xf1\x0e\x35\x9f\x8e\xbb\x25" "\x9d\xfa\xe8\x05\x5c\xbd\x3e\xca\x13\xec\xc1\x4c\xc7\x27\x5c\x40\x12\x0b" "\x1b\x39\x7b\xbd\x96\xcc\xf5\x53\xdf\xf1\x84\xa2\x25\xfd\x4a\xd2\x2d\x1d" "\xa1\x28\xf6\x86\x9d\x46\x12\xb8\xb2\x75\x97\x0c\x49\xde\x09\x51\x89\xbe" "\x0f\xc0\xd1\xc2\x6f\xa4\x79\xb0\x7e\xd8\xa7\x9d\x8f\x70\xa4\x42\xc9\x63" "\x77\xcb\x32\xee\x90\xa3\xd4\x62\xa7\x67\x97\x66\x75\x70\x1c\xf0\x18\xd2" "\x71\x55\x6e\xd7\x0e\x33\x33\x41\x42\x85\x1a\x80\x3d\x63\x7e\xd0\x07\xa7" "\xf6\xac\xc9\x8a\x3a\x7f\xe7\xb9\x04\x51\xa4\x7b\x90\x77\xa0\xe3\x19\xd1" "\x51\x2c\xa2\x16\x25\x2a\xaa\xb5\x2c\xcf\xae\x2b\x74\x58\xea\x78\x88\x85" "\x56\xf8\x73\x45\x4c\xb1\x85\x97\x54\x38\x5c\x75\xcd\xef\x2e\x92\x09\x10" "\x2f\x6b\xb4\xa5\x68\x20\xe3\x64\x75\x41\xce\xb1\x2b\xda\x09\xd4\x0d\x96" "\xd2\x05\x80\xe0\x07\x2a\xcc\xa7\xf6\x7f\xe6\x30\xe6\x65\xa9\xda\x13\xf5" "\x31\x74\x01\x10\x1a\x0b\x9f\xbd\x04\xec\xdc\x6b\x13\x61\x40\xa8\xa9\x3e" "\xbb\x46\xa3\x21\x4f\xb7\xcf\xf2\x1b\x17\x3a\x18\x78\xc8\xda\x41\x14\x76" "\xe7\x8d\x05\xd9\x44\x9b\xb0\x5f\x2c\xa1\xb0\x43\xcc\x05\xc5\x2f\x14\xb4" "\x29\xcb\x9f\xd5\x43\xd6\x73\x15\x4b\x33\x33\x9f\x12\x33\x65\x57\x0d\xf0" "\xc2\x30\x4d\x80\x85\x88\x1f\xd3\xc7\xd0\xa3\x03\xa6\x36\xaf\x98\x43\xf4" "\x68\xcd\x9b\x33\xdb\x75\xbf\xc3\x18\x16\x86\x45\x4f\x1d\x89\x88\x7f\x85" "\x84\x60\x3d\x20\xf1\x08\x5b\x54\xf9\x07\x29\x37\xfe\xa2\xdb\xa4\x92\x73" "\x30\xf9\x6b\xe4\x79\x8e\xac\x11\xae\x22\x61\x33\x3f\x62\xd4\xdd\xda\x7d" "\x74\xd1\x35\x23\xef\x73\x2a\xa4\x66\xf9\xdf\xbf\x26\xdc\x31\x08\xb8\x88" "\x79\xdb\x6b\xe1\xbc\xae\x00\x10\xdd\xc4\x20\xe4\x0a\x86\x35\x60\x6d\xf3" "\xea\x4a\x00\x0b\x45\x20\x59\x2b\x8a\xd4\xcc\x86\xa6\x21\x3e\x9b\xe3\x8f" "\xbd\x17\x76\x4c\x81\x1b\xbd\x14\xd6\x99\xd3\x3e\xc0\xf7\x3e\x9b\xd9\xad" "\x17\xaf\x90\x1a\xdc\x24\x6c\x9e\xae\x75\x5f\xf5\x37\x0b\x30\x84\x7b\x87" "\xbb\xae\x02\x44\xd9\xb7\x0c\x3c\xaf\x41\x1d\x46\x62\xee\x1e\x24\xb7\x3e" "\xd3\x71\x65\x97\xe2\xdc\x47\x3b\x42\x57\xed\xcd\xf9\xf3\xf2\xc9\x61\x21" "\xe2\x1f\x4e\xc0\x59\x75\xc3\x66\xd0\xea\xb1\x87\xfc\xc9\x8d\x32\xa5\x38" "\x26\x02\xa1\xa8\x7c\xa8\x75\xb0\xe7\xd6\xf9\x38\x7d\x79\x72\xad\x6d\x72" "\xb2\x3a\x8e\x50\x95\x35\x51\x76\x0f\xa2\x83\x4e\x07\xac\x3b\x9b\x1d\x19" "\x1d\x85\x90\xbc\xbf\x02\x33\x81\x34\xaa\xf7\x10\x54\x07\x95\x7f\xf5\xe5" "\x44\xc2\xdd\x8c\xca\xf9\x8c\xe3\x31\x95\x95\x1a\xae\xf9\x8b\x3c\xff\x69" "\x09\xb5\x2a\xbe\x74\xf4\x8d\x3a\x86\x91\x16\x54\x16\xdf\x19\x1d\xdd\x08" "\xd5\xcf\xa3\x26\x8a\xbc\xf9\x81\x90\x45\xf8\x83\x96\xc6\xde\xc1\xa0\x65" "\x6c\x18\x2f\xfd\x9a\x83\xd5\x87\xc3\x4c\xa0\x6a\x48\xfe\x2e\x27\x67\x31" "\x9b\x18\x47\x88\xbd\xf7\x70\xb6\x9b\x86\xe4\x78\x04\xfa\xf8\xa2\x99\xc7" "\xd4\xae\xdc\x58\xcc\xef\x84\xe1\xab\x4a\xe2\x0b\xe2\xc1\x0d\x01\x0c\xd3" "\xa7\x80\xac\x9d\xbf\x97\x17\x8f\xff\x62\x7d\x14\x93\xdb\x47\x78\xe3\xad" "\x3f\x5d\x3f\x3c\xef\x1d\xe9\x10\x8b\x62\x57\xa0\xfd\x4a\x0a\xf3\xe6\xcf" "\x3f\xad\x10\xbf\x17\x27\x80\x51\x95\x88\x8f\xc6\x47\xd1\x4b\xa6\xe3\x3f" "\xb7\xaf\xc9\xfe\x33\x1c\xc4\x17\x1b\x8a\x0d\xb7\xe8\x13\xf3\x2c\x78\x59" "\xa3\x9e\xf8\xd7\xc2\x0a\x12\x73\x54\xe7\x1f\x5b\x28\x3f\xf9\x9c\x0a\x18" "\xf4\x0b\xd6\x0f\xee\xfd\xec\xce\xcd\xae\xde\x58\x6f\x07\x7f\x6f\x0f\xd9" "\xe3\x2b\xd0\x7b\x3b\xfd\x1d\x49\x97\xa3\x43\xf1\xe6\x28\xa4\x32\x1e\xda" "\xce\x50\xd6\x28\x7c\x5d\x02\xc0\x10\x5a\x4b\x1d\x39\x55\x53\x87\x8d\x43" "\xc5\xea\xc1\x13\x04\x76\xed\xa6\x67\xdd\x5b\x48\x9f\x28\x84\x55\x17\xaf" "\x8b\x95\xa2\x49\xaf\xb9\xf8\xdd\x5a\xcd\x8c\xda\xd4\x51\x60\x52\x1a\xda" "\xf4\xcf\x5b\x25\xcd\x65\xd7\xec\xbc\x68\x7b\x9a\x08\xfe\xe2\x1b\xb8\x5d" "\xb9\x8d\x67\x01\x70\x54\x69\x57\xc1\xbe\xb1\xa5\xf9\x22\x4f\x36\x9c\x22" "\x97\x14\x7b\xb7\x4b\x62\x9c\xac\xb6\x3a\xde\xd1\x3c\x62\x9a\x95\x7f\xb3" "\xb0\x87\x05\x62\xe8\xea\x8b\x63\x2e\x1f\x4f\xde\x7b\x4d\x45\xa0\x2d\xd4" "\x18\x59\x8b\xed\xc5\x62\x9e\x1b\x0d\x0e\x6a\x2b\xcf\x67\x6b\x1f\xe1\xfe" "\x09\x68\x28\xa0\x87\xd5\xd4\xbe\x3a\xf2\x34\x91\xd5\xad\x0d\xfe\xc0\xc0" "\x06\x90\xbf\xed\x7f\xa0\x6f\x2f\x80\xbe\xee\x66\xdf\xcb\x72\x33\x6d\xf9" "\x67\x10\x73\xa5\xa7\xef\x7e\x3e\x04\xb1\x59\x4e\x11\x08\xa2\xb2\xb2\x07" "\x54\xe3\x50\x95\x74\xe9\xe3\x3d\xa2\xf9\x77\x88\x7e\xf8\x01\xe8\x1e\x38" "\x4c\xd1\x84\x2e\x72\xc4\x5e\x69\x2b\x51\x0e\x38\x76\xdc\x73\x9f\x8b\x7b" "\xb7\xc8\x2c\xcb\xa5\xa9\x4d\xaf\xf4\x2a\x69\xa7\x5b\xf5\x08\xff\x22\x5c" "\x94\x7b\x78\x91\xa1\x30\x70\x73\x09\x4e\xcd\x13\x2b\xfe\x9f\xe8\x6c\x7d" "\xea\x2b\x17\x7e\x91\xf4\x6e\xde\x4b\x20\xe5\xc7\x99\x1e\x8f\x9f\xed\x36" "\x64\xd4\x7e\x08\x41\xaf\xe1\xfe\x6a\xdf\x6f\xc8\xfe\x3e\x67\xee\xe8\xde" "\xca\xdb\x15\x5b\x7f\x54\xd0\xab\x83\x86\x0f\xff\x06\xb2\xdd\x75\xf9\xdc" "\xfa\x8f\x8b\xdc\xa5\x54\x5e\x4b\xdf\x49\x9a\x29\xdb\x2e\xd4\x97\x4e\x77" "\x51\x0a\xd4\xc9\x30\xeb\x4f\x78\x00\xa5\xf2\xdf\xd8\xce\x2a\x8a\xde\x0f" "\x38\xcf\xa3\xcc\xbe\x72\xc7\xa0\x69\x32\x2c\xac\x1f\x23\x94\x1a\xee\x64" "\x8f\x0c\x97\xe2\x1d\x9a\x7c\x97\xe4\x16\xa0\x2d\x89\x58\x94\xa6\x0b\xba" "\x94\xbb\x0f\x9e\xeb\xa2\x42\xdb\x42\xb7\x39\xea\x16\x3f\xfa\x73\x8d\xf6" "\xdc\xdb\x80\x99\xad\x21\x24\x1e\x9c\xb2\x7f\xda\x58\xa0\xa9\x04\xab\xa7" "\x81\x96\x47\xca\xdc\x5f\x57\xc8\x9f\x9e\x57\xe8\xf0\x89\x7e\x26\x54\x2f" "\x2a\xde\xb0\x02\x97\x57\x1d\xab\xea\x77\xe1\x9e\x79\x2e\xfc\xed\x60\x6e" "\xa2\x37\xe9\xff\x2e\x33\xa1\x57\xab\xf0\x3e\xaf\xcd\x1f\x09\x2a\x95\xc1" "\x80\x36\xc8\x4b\x33\x01\x42\x05\xa0\xa5\xe1\x0e\xff\x4d\x95\xb6\x18\x62" "\xbc\x75\x8c\x43\x2a\x83\x6c\xa2\xf4\x57\xa2\xdb\xf9\xa8\x54\x6b\xb4\x20" "\x27\xa2\xad\x29\x04\x07\x58\xe8\x01\xbc\x19\xec\x8e\x85\xc3\xf4\xfd\xd3" "\x05\x31\x95\x06\xb5\x25\x35\x7a\x07\x61\x0a\xc3\x79\x88\x65\x91\xf5\x51" "\xa9\x00\xa9\xb9\xbc\x9d\x64\x69\xee\xdb\x9a\x74\xf7\x64\xd4\xd5\x4d\x56" "\xeb\xd4\xac\x98\x89\xf4\xb4\xef\x5c\x50\x1b\x93\x5f\xf3\x2b\xd6\x2d\x19" "\x73\x17\x26\x92\x33\xce\xcd\x8b\x7d\x02\x7e\xfe\x24\x68\x7a\xb2\x56\x50" "\xf5\x50\x38\x61\x65\x20\xe6\x69\x40\xa2\x00\x8d\xe8\xb8\xc9\x99\xe2\x2f" "\x00\xcc\xb5\xa0\xad\xfe\x14\x5e\x9b\x4c\xf5\x81\xe2\xb8\x41\xc2\x6c\x43" "\xd3\xe7\x41\xe9\xd9\x23\xbd\xf1\xeb\xdc\xe9\xff\xf1\x94\xfc\xe4\x7e\x61" "\x0c\xe3\xa7\x51\x24\x8a\x39\xf4\xa0\x25\xf6\xfb\x15\xf2\x78\x7e\x40\x6b" "\xc7\xf7\x4e\x9e\x99\x32\x3e\xa7\x43\x73\x54\x39\xd4\x17\xef\xd4\x57\xf5" "\x67\x48\x54\x38\xd1\x26\x9c\x19\xc1\xf2\x5d\x1e\x51\x08\x6f\xf6\xeb\x67" "\x11\xdf\x93\x58\xfe\xff\xe0\x12\xa4\x63\x4b\x18\x4c\xf9\xf8\x05\x1c\xc1" "\x50\xff\x8a\xaf\x45\x53\x2b\xfd\x9b\x0c\x76\x8d\xef\x48\x18\xf5\xbf\x90" "\x00\x69\x7f\xba\x28\xfc\xdd\x09\xaf\x50\x04\x60\x66\xe8\x9e\xbe\x3b\x14" "\x57\x88\x91\x3d\x34\x7a\xa9\x09\x4f\xde\xd5\x61\x51\x0a\xeb\x6c\x4d\xfc" "\x5b\x33\x5e\x2c\x53\x07\x77\x15\x0f\xfa\x9b\xb4\xc3\x6d\xd0\xdf\x1b\x37" "\xde\xe0\x11\xa8\x2b\x0c\x8f\x34\x1d\x36\x62\x25\x9a\x57\x95\xfe\xb7\xd8" "\x56\x53\xba\xd5\x51\xb7\xf1\x32\x7a\xd7\x08\x79\x56\x52\x3c\x24\x2f\x79" "\x7f\x9a\x05\xe0\xff\x15\x40\xe5\xea\xbd\xef\x7e\xac\xb0\x0e\xd8\x85\xcc" "\x07\x9e\x8c\x7d\x66\xf4\xa6\x5f\xcc\x6d\x74\xea\x80\x69\x29\x3b\xe6\x0c" "\xa6\xc5\x2f\x40\x70\x1d\x28\xff\x3e\x75\x08\x2e\xd8\x65\x62\x66\xc0\x0a" "\x49\xc3\x2d\x6b\xab\x24\x68\xac\x3d\x7c\x4d\x84\x2a\xc0\x5d\xf8\x14\xc1" "\x16\x3d\xee\x57\x6d\x51\xe9\xe0\xd6\x9a\x66\xe5\xb9\xe4\x8f\x7c\x70\xa1" "\x38\xdc\xad\xeb\x2c\x41\x7b\x00\xb9\x0e\x8b\xee\x9d\x48\x05\xea\xbb\xa8" "\x69\x90\xe4\xc7\x9c\x40\x7d\x71\x00\x69\x31\x22\x82\x8d\x09\x78\xe4\xae" "\x47\x1e\x95\xd0\x7a\x80\xe4\xf0\x4a\x30\x33\xb0\x56\xec\x2a\xe8\xea\x8c" "\x90\x67\xff\xf6\xf6\x34\x86\x87\x58\x74\xb9\xb0\x1d\xe0\xd3\x5b\x98\xe3" "\xa7\x5f\x9c\x92\xb7\xc4\x9a\x5c\x92\x25\x70\x29\x03\x53\x68\x70\xe2\xc5" "\x16\xe4\xaf\x9d\x1c\xfe\x94\x81\x9c\x86\x0e\x5a\xf8\x86\xf6\xad\xb2\x7b" "\x1d\x93\xdc\xf6\x26\xe9\x25\x24\x04\x28\x30\xa3\x0e\x00\x3f\x01\x0c\x82" "\xc4\x6a\xa7\x45\xab\x3f\xca\xcd\x36\x74\x02\x70\x69\x3e\xeb\xad\x6d\xfe" "\x13\xbc\x8e\x89\xd1\x50\x58\xf8\x2b\x98\x5f\xb2\xf7\xe3\x5b\x62\xa3\xc9" "\x00\xf9\xde\xf6\xf9\x9c\xe3\x50\x04\x86\xe9\x93\x3a\xc5\xef\xe3\x96\x67" "\xa8\x9b\x1b\x73\xf2\xa8\xbb\xf9\xbd\x95\x50\x9f\xdd\x17\x20\x5a\xd9\x13" "\xdf\xde\xb5\x08\x5b\xa5\x6a\xf4\x7a\x69\x53\xc9\x40\x7a\x1b\x15\x6f\xdf" "\x60\x1c\x86\xad\x27\x3a\x04\xea\xa6\x8e\x90\x34\xc7\xb2\x2e\x82\x1e\x1e" "\x04\x24\x74\x37\x9e\xc8\xe0\xa3\x88\x3d\x81\x8a\xd2\x38\x59\xd6\x59\xe6" "\xec\xc8\xb0\x72\x8e\x09\xea\xcd\x45\x14\xb7\x04\xb4\xda\xfc\xdf\x76\xc2" "\x4a\x3e\x2d\xb6\xde\x2b\xe9\x51\xaa\xf6\xb2\x10\x5f\x80\x3f\xd6\xa9\x6b" "\x0a\xa2\x11\xaa\x33\xe4\x55\x84\xf9\x46\x0b\xe2\x98\x32\xee\x38\x2d\xb6" "\x77\xf8\x0c\xe2\x6b\x8a\x52\x5c\x39\x26\xb3\xb6\x73\x07\x98\x98\xd6\x04" "\x0c\xa7\x7d\x7c\x44\xe8\xf5\xe7\xc8\x83\x6b\xd6\xd6\xc5\x93\xc4\x31\xf8" "\xe6\xd2\xd7\x47\x84\x93\x8e\xcc\xb6\x12\xda\xd3\x91\x38\x20\x51\xf1\x01" "\xa2\x21\x6d\x59\x57\x04\xd6\xf1\x16\x84\x56\xf3\x7c\x75\xa2\x4c\xbe\xc7" "\xd4\x4e\x94\xdf\x85\x3a\x15\x78\xf1\x94\x1a\xef\x90\x42\x83\xa1\x59\x3d" "\x00\xed\x95\x68\xce\xf2\x5d\xf7\x39\xc2\xd2\x52\x36\x53\x70\xf4\xed\x31" "\x00\x99\xfc\xae\xc9\x05\x16\xc0\x98\x70\xee\xeb\x29\x5f\x1c\x76\x9d\x84" "\x5f\x80\xd2\xb0\x4a\xe3\x56\x5f\x84\x82\x0e\x3f\x9b\x40\x1c\xcb\x02\x23" "\x5e\x40\x70\xf7\x7a\xf1\xd5\x43\xb2\xa6\x66\x0b\x91\xac\xd3\x3c\x43\x74" "\x62\x51\x29\xef\xd9\x50\xbc\x1f\x13\x3a\xd4\x95\xa0\x32\xaa\x51\x22\x46" "\x21\xfe\x13\x7e\x52\xe9\xd3\xc2\x92\x9a\xe9\x5d\x67\xe7\x88\x82\x88\x7f" "\x39\x0f\x51\x7f\xfb\x7d\xb1\xf5\x1b\x1d\xc8\xb8\xb6\x01\x25\xd7\x18\x58" "\xec\x99\xcb\xd7\x86\xa0\xf1\x3a\xb9\xf9\xa5\xcb\xe1\xbe\xa2\x40\x57\x62" "\xd3\x1c\x21\x17\xac\xa1\xa0\x5e\x95\x12\x8d\x91\x02\x58\xd6\x8f\xc1\xb0" "\xf4\xd2\x6a\x48\x18\x1a\xd8\x0c\x49\xb8\xeb\xb9\x51\x54\xa6\xc5\x9d\x99" "\x5c\x96\x62\xb4\x74\x59\x66\x95\x4b\xaf\x54\x4d\xe8\xca\xf4\x61\x5f\x06" "\xea\xbf\xe5\xe2\x42\xe4\x62\xfd\xcc\x84\x64\x39\x25\xa4\xb3\x83\xb1\xc0" "\x06\xad\xf8\x9f\xe0\x63\x36\x21\xdc\x93\xb7\x72\xba\x43\x63\x75\x00\xbd" "\x92\x6e\x73\xa3\x8a\x9e\x7c\xda\x92\xdf\x6a\xfa\x32\x9d\x12\x11\x46\x1d" "\xcd\xa3\xb8\x1e\x7f\xc8\x8f\xdb\x27\x40\x61\xdb\x21\xab\x57\x8f\x38\x79" "\xd6\xdf\xc5\x59\x62\x4f\x18\xeb\xd3\x31\x52\xd2\xa6\x79\xb1\xd3\xe5\x27" "\xb8\x88\x8d\x93\xbf\x6d\xd7\xcd\x58\x7f\x31\x7b\x36\x04\xcf\xd8\xfd\x39" "\x75\x32\x06\xfb\x07\xe1\x0a\x42\x69\x4d\x0d\x37\xfe\x2c\xd2\x77\x37\x42" "\xb5\x28\x47\x62\x69\xa0\x9b\x88\xf1\x15\x45\xbf\x29\x2a\x76\x38\xf1\x7e" "\x7b\x0e\x41\x98\xc6\x2c\x60\x42\x8e\xa8\xcc\x81\x39\xe7\x52\x2f\xbb\x7b" "\xa2\x7b\x3f\x4d\x97\x72\x31\x4a\xcc\x2f\x25\x35\x63\xe9\x57\x45\xdd\x81" "\x1e\x6c\xd0\x3d\x96\x3a\x12\x35\x42\xa0\xd9\xb1\x84\x70\x54\xd1\x75\x18" "\x80\xd4\x52\xaa\x2e\x1c\x77\x64\xb7\x11\x95\x93\x0c\x85\xa9\x96\xc7\xfd" "\xe5\xc1\x57\x4d\x86\x75\xe1\xec\x1c\xbc\x73\x04\xf1\xed\xad\x89\x06\xfd" "\xc9\xc6\x9b\x9a\x61\xfb\x7d\xdf\xcd\x06\x8e\x68\xd6\xf0\xde\xc5\x8c\x44" "\x8e\x7e\x3d\xe5\xd3\xe4\x3f\x46\x92\xbf\x6c\xa5\x95\x41\x15\x98\x3d\x82" "\x6b\x49\xd3\x30\xd4\x9c\xe6\xf6\xbf\x5e\xdd\x43\x47\xae\x78\x52\x5a\x91" "\xaf\x9a\x11\xb1\xa3\xab\xb0\x3f\xe3\x76\xf8\x86\xff\xc2\x14\xcc\xed\x96" "\x5a\x55\x42\x8b\xb4\x7f\x85\x22\xd1\x6a\x13\xc0\x96\xe1\xf3\x3e\x7f\x7d" "\x9c\x98\x79\x06\xca\x6c\xd5\xf2\xd0\x27\x74\xfd\x45\x6d\x82\x9f\x28\x9c" "\x78\x2e\x61\x9f\x63\x30\x2f\x38\x14\xac\xb0\x04\x2a\x38\xa4\x7d\xc1\x36" "\x67\x73\xf4\x6f\x9a\x67\x66\x50\xa5\xf8\x1e\x49\x81\xd4\x9c\xa3\x5e\x27" "\xdd\xd3\x2b\x8c\xb6\x5c\xef\x83\x56\xad\x8f\x28\x14\xe1\x85\x93\x0b\x58" "\xb2\x4c\xbb\xa6\xbd\x62\x52\xf9\xe3\x1e\x2a\x4b\x53\x46\xac\xbf\x93\x44" "\x2b\x4f\x75\xb5\xd0\x13\xeb\xfc\x7f\xd0\x37\x7c\xd9\xcd\x1a\x35\x95\x1b" "\x35\xd2\x3c\x3a\xeb\x2d\x39\xc0\xd2\x4d\xc1\x6a\xb4\x84\xb5\x36\x99\xa1" "\x29\x34", 4088); inject_fault(23); syscall(__NR_ioctl, r[0], 0x50009401, 0x200000c0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_fault(); use_temporary_dir(); loop(); return 0; }