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