// https://syzkaller.appspot.com/bug?id=b6e8cc93420741e59d7526eefda771d2672a132f // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/prctl.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <linux/loop.h> #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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x400000000080, "bcachefs\000", 9); memcpy((void*)0x400000000000, "./file1\000", 8); memcpy( (void*)0x4000000001c0, "\x61\x63\x6c\x2c\x66\x69\x78\x5f\x65\x72\x72\x6f\x72\x73\x3d\x61\x73\x6b" "\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x66\x69\x78\x5f\x65\x72" "\x72\x6f\x72\x73\x3d\x6e\x6f\x2c\x72\x65\x63\x6f\x76\x65\x72\x79\x5f\x70" "\x61\x73\x73\x5f\x6c\x61\x73\x74\x3d\x63\x68\x65\x63\x6b\x5f\x65\x78\x74" "\x65\x6e\x74\x73\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x65\x72" "\x72\x6f\x72\x3d\x72\x6f\x2c\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74" "\x5f\x61\x6c\x6c\x6f\x63\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c" "\x66\x73\x63\x6f\x6e\x74\x65\x78\x74\x3d\x72\x6f\x6f\x74\x2c\x66\x73\x6d" "\x61\x67\x69\x63\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x38\x30\x30\x30\x2c\x61\x70\x70\x72\x61\x69\x73\x65\x2c\x73\x75\x62" "\x6a\x5f\x74\x79\x90\x65\x3d\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c" "\x00\xb5\x9b\xa3\xdc\x7b\xbd\x64\xcf\x1c\xa6\x2d\x58\xcc\x2e\xe6\x5d\xce" "\xf1\x1e\x38\x4b\xed\x58\xdb\x42\x3f\x66\x1a\xc4\x75\xe1\xed\xf4\x8e\x97" "\x15\xf1\x25\xf1\xab\x86\x27\x60\x52\x4e\x2c\xbb\x0f\xe6\xfe\x3b\x33\xa7" "\x03\x65\x10\x61\xee\xdf\x21\xfd\xc6\x59\x6e\x7a\x6f\x9c\x3e\x1c\x6e\xea" "\x62\x4e\xa9\xea\x9e\xa6\xfc\x8c\x85\xd3\x20\x09\x9b\x2b\x71\xa4\x48\x25" "\xe9\x90\xec\xba\xce\x06\x7e\x4a\xef\xba\x3e\x86\xef\xc5\xd4\x12\x52\x6b" "\xb7\x82\xa0\xaa\xa2\x91\x89\xc7\xa5\xf0\x28\x06\xba\x48\xa4\x00\x00\x00" "\x00\xbe\x5e\xdd\xc3\xf5\xd9\x06\xbb\x17\x1f\x27\xa4\x61\x76\x64\x59\xc0" "\x63\xdf\xc7\xcd\xa4\x47\xd7\xdd\xfc\x92\x6b\x4a\xa5\x3f\xda\xcf\x07\x6b" "\x65\x4f\xc6\xc1\x49\x6d\x94\x9a\x0e\xe5\xe4\x43\x54\xf4\xc3\x41\x4d\xd7" "\xdc\x4e", 380); memcpy( (void*)0x40000000b640, "\x78\x9c\xec\xdd\x7f\x8c\x1c\xd5\x9d\x20\xf0\x57\xdd\x3d\x9e\xf6\x8c\xc7" "\x1e\x1b\x58\x1c\x08\xe3\xc1\xe0\x5d\x16\x36\xf1\x98\x5f\x22\xc9\x6a\xe3" "\xdd\xdb\x4d\x56\xc0\x22\x47\xac\xb2\x98\x73\x02\x03\x1e\xb3\x4e\x6c\x63" "\xd9\x66\x01\xc3\x2e\x26\x07\x39\x10\x10\x91\x28\x51\x42\x92\x3f\x48\x44" "\xd0\x91\x38\x11\x12\x5c\x82\x83\x42\xf8\x71\x36\x17\x48\x10\x97\x1c\x3a" "\x11\x74\xe4\x8e\xe4\x8f\x9c\x08\xc1\x0a\xe0\x43\x51\x2e\x73\x9a\xe9\x7a" "\x3d\x3d\x35\x5d\x53\x3d\x3d\x3d\xfe\xc5\xe7\x23\x7b\xaa\xeb\x75\xf5\xf7" "\xbd\x7a\xf5\xba\xba\xbe\xaf\x7b\xa6\x03\x00\x00\x00\xef\x08\xfb\x6e\xdd" "\x7e\xe0\xa2\x13\xfe\xee\x99\x4f\x8d\xbc\x75\xd3\xdf\x7f\x7f\xf3\xcd\xa1" "\xb7\x3c\x5e\x5e\x8d\x1b\xf4\xa7\xcb\xeb\x0e\x55\x0b\x39\x98\xba\x2b\x4b" "\xc7\x97\xd9\x71\xf1\x67\x37\x7c\xf3\x57\x83\x57\xfe\xcd\x8f\x1e\xec\xf9" "\xc6\xdb\x7b\xd7\x9f\xbc\xe1\xe7\x7f\x7b\xcc\x95\x8f\x7e\xe2\xfc\x3d\xf7" "\x7c\xe5\x89\x37\xfb\x1e\xfe\xe3\x2b\x45\x71\xe3\x78\x3a\x7d\x62\x3d\x79" "\x2d\x09\xa1\xfa\x83\xfd\x5f\xf8\xf4\xde\x67\x8f\x1f\x2b\x4b\x42\x08\xe5" "\xa4\x7f\x57\x08\x8b\x93\x25\x4f\x2c\x4e\x32\x21\x86\x7e\x1f\x42\x58\x9f" "\x89\x17\x3d\xf4\xd6\x59\x1b\xc6\x96\x37\xdf\xd1\x3d\xa9\x7c\x51\x66\x3b" "\xe3\xfd\x9d\xad\x9a\x8e\xb3\x9d\x07\xae\x3d\x23\xbc\xfc\xd7\x6b\x6f\xf9" "\xc9\xb2\xef\x7c\xbb\x6b\xf7\xab\xbb\x26\x36\x49\xaa\x0d\xe3\x29\x84\x85" "\x97\x37\x3e\xbe\x2b\x84\x30\x3f\xfd\x3f\x26\x8e\xb6\xa5\xf1\xc1\xe9\x72" "\x4d\x08\xa1\xa7\xe1\x71\xe7\xe5\xb4\xe7\xb7\x9f\x7b\xe6\x9c\xb1\xe5\x29" "\x2d\xb6\x7f\x65\xce\xfa\x89\xe9\x72\x5e\xba\xec\x2d\x88\x13\xef\x5f\x9e" "\x59\x2f\x65\xb6\xcb\xae\x47\x5d\x99\x65\x4f\x41\x7d\xb3\x95\xd7\x8e\x76" "\xb7\x2b\xb2\x20\xb3\x3e\x71\x32\xfa\x62\x51\xd7\xb6\x24\xaf\x9d\xb1\x7c" "\x71\xba\xfc\x5e\xba\x3c\x7d\x86\xf1\xcb\xf1\x7f\x12\x4a\x49\xa8\xd4\x9b" "\xbf\x29\x99\x18\x23\xa1\xe1\xb8\x25\x21\x19\xdf\xbe\x5a\x5f\x2f\xd5\x8f" "\x6d\x48\xf7\x3f\xb3\x9e\x64\xd6\x4b\x99\xf5\x72\x57\x66\xbf\xc6\xeb\x4d" "\x7b\xaf\x9c\x24\x93\xcb\xe3\x76\x99\xf2\x78\x3a\xae\xa4\xe5\x27\x37\x39" "\xf7\x37\xba\x38\xa7\xfc\x5d\xe9\xb2\x9a\x3e\x51\xdf\x8e\xeb\x21\x7b\xa3" "\xa6\x77\xca\x8d\xfa\x7e\x8d\x8b\xed\xda\x3f\x4d\x5b\x0e\x86\x52\xc3\x39" "\xa8\x59\x79\xfd\xc0\xa7\x07\x63\x6c\x77\x46\x47\x47\x47\x7b\x93\x25\x53" "\x1e\x33\xda\x44\xbc\x6f\xef\xda\x3b\x57\x94\xd7\x3d\xb9\xaf\x3f\xa7\x1d" "\xc9\x83\x49\x1a\x3f\x19\xaf\x73\xa6\xf1\x77\xfe\x78\xf1\x82\x8f\x7f\xeb" "\xf6\x6b\x96\xe6\xc5\xbf\xbc\x94\xc6\x2f\xb5\x15\xff\x17\x17\x3c\xf7\xfa" "\xa5\xb7\x7f\xfd\xcb\xb9\xf1\xef\x8e\xf1\xcb\x6d\xc5\x3f\xf3\xb1\x9e\xd7" "\x2e\x78\xea\xd6\xe5\xb9\xfd\xb3\x3f\xf6\x4f\xa5\xad\xf8\xc3\xaf\x3c\x7d" "\xd7\xb2\x63\xaf\xd8\x9d\xdb\xfe\x7b\x63\xfc\x6a\x5b\xf1\x57\xef\x79\xae" "\xbb\xef\xc0\x63\x8f\xe7\xb6\x7f\x28\xf6\xcf\xfc\xb6\xe2\xbf\xf4\x81\x0f" "\xfd\xf2\x81\x17\x1e\x79\x35\x37\x7e\x88\xf1\x7b\xda\x8a\xbf\x6e\xcf\xd6" "\xcf\x74\x0f\x1c\x38\x2d\x37\xfe\xe3\xb1\x7f\x7a\xdb\x1b\x3f\x6f\xec\x3e" "\xf7\xc5\x81\x81\x5f\x0f\xe6\xc5\x7f\x3e\xc6\xef\x6b\x2b\xfe\xfd\xbb\xee" "\x79\xff\x7d\x8b\xee\x38\x3f\xf7\xf8\xae\x89\xfd\xd3\xdf\x56\xfc\x0b\x4f" "\x7d\xf4\x96\x05\x07\x1e\x39\x29\xef\xdc\x99\xdc\xdb\xa9\x57\x4e\x80\x77" "\xa6\x63\xd2\x6b\xac\xdb\xd2\xf5\x76\xf3\xcc\xd9\x6a\xc8\x17\xbe\x34\x58" "\xa9\x5d\x07\x2e\x48\xff\xf7\x85\x2f\x74\xae\xa2\xcc\xc5\xe7\x58\x3d\x0b" "\x3b\x17\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc6\x1d\x77\xc6\x7f\xfd\xf0\xff\xfe\x68\xff\x6b\x95\x74" "\xbd\x3b\xbd\xf1\x52\xa9\xb6\x8c\xe5\xf3\x42\x48\xe6\x87\x10\xb6\xef\x18" "\xde\xb6\x63\xe3\x96\xab\x06\x3f\x71\xf5\x35\xdb\xb6\x0c\x6f\x1a\x1c\xde" "\x31\x38\xb2\x65\xc7\xb6\xeb\x07\xcf\xfe\x8b\xc1\x6d\x23\x5b\x37\x0d\x5f" "\x3f\x76\xef\xd0\x7b\xce\xaa\x3d\x6e\x49\x48\x6a\xcb\xe4\xa4\x29\x75\x77" "\x8f\x8e\x8e\x96\xfa\x27\x97\xc5\xfa\xfe\xdd\xa9\xbb\x5f\x5e\x71\xde\xff" "\xf9\x4d\x08\x43\xc7\xfd\x6c\xa0\x92\xdb\xfe\x95\xf7\x6c\xbe\xef\xd8\x26" "\x3f\x33\x92\xd5\xa3\x1f\xdc\x7c\xcd\x45\x3f\x3b\xe7\x6b\xe9\x7e\xf5\xa7" "\xed\xea\x6f\xd2\xae\xd1\xd1\xd1\xd1\x90\xd3\xae\xdf\x5e\xf2\x87\xfb\x3e" "\xb7\xff\x57\xa7\x85\x30\xf4\x27\xd3\xb5\xeb\xe9\x97\xfe\xea\x87\x93\x1a" "\x34\x5e\x30\x11\x27\x55\xea\x0e\xb5\x06\x75\x27\x3d\x4d\xdb\x51\x6f\x75" "\xda\x9e\xd8\x5f\x95\x0d\x1b\x37\x8d\x0c\x4d\xdf\xbf\x63\x8f\x2f\xe7\xec" "\xc7\xbf\xbf\xe1\xd5\xdf\x6f\xb8\xee\xb3\x7f\xa8\xf5\x6f\x35\x77\x3f\x5a" "\xec\xdf\xf9\xab\x47\x37\x95\xbe\xb8\xf6\xc2\xff\xf7\xc5\x1b\x6b\x05\x45" "\xed\x3a\x54\xc7\xbd\xa8\xbf\xe3\x5e\xc4\xf6\xc5\xfe\xab\xa6\xfd\xbd\x30" "\xdd\xaf\x85\x39\xfb\x55\xc9\xd9\xaf\x5b\x7f\xf2\xf8\x0b\x3f\x38\xe1\xf6" "\x37\x77\x85\xa1\xca\x1b\xcb\xa6\xd6\x5d\xb4\x5f\x5d\xe9\x00\xe8\x4a\xde" "\xd5\x52\xbd\xb1\x86\x9e\x64\xf1\xa4\xf2\x6a\xba\x7d\x3c\xe2\xf1\x71\x2b" "\x77\x6c\xde\xba\x72\xfb\xf5\x3b\xdf\xb3\x71\xf3\xf0\x55\x23\x57\x8d\x6c" "\x79\xdf\xaa\xb3\x57\x9d\x3b\x74\xce\xb9\xe7\xac\x1c\xdf\xf3\x95\x1d\xde" "\xff\x58\xff\x9f\xb6\xb8\xff\x07\x67\x3c\x2d\xfa\x97\x5d\xdf\x8b\x3f\x5b" "\x1b\x4f\x45\xed\x2a\xea\x8f\xb1\x76\x15\xf7\x47\x63\x8b\xf2\x9e\x7f\x3d" "\x17\x7f\xfa\xf3\xef\xbb\xe7\xa9\x8b\x6a\x05\x45\xe3\x3c\x6e\x5d\x3f\x9f" "\xa4\xcb\x9e\xb1\xe3\xbc\x2a\x34\x8c\xb7\xa9\x7d\xd5\x6c\xbf\x8a\xfa\x21" "\x84\x30\xd8\xac\x1f\x5e\x7f\xf3\xfc\x70\xfc\xff\xd8\x78\x4b\xd1\x79\xa8" "\xf1\xc8\x34\xfe\xcc\x48\x56\x8f\x3e\xbb\xfc\x77\x5f\x3b\xef\xab\x4b\xff" "\xb2\x56\x70\x50\xce\xf3\x8d\x0d\x6a\xf3\x3c\x5f\x6f\xf5\x44\x7b\xc6\xfb" "\xab\x9a\x1e\x8f\xd1\xbc\xfe\x2d\x1d\xda\xfe\xed\x0e\xe5\x74\xbf\x7a\x9b" "\xee\xd7\xaa\x67\x9f\xea\xba\x73\xdf\x6f\xfe\xb5\xde\xbe\x79\xf3\xc2\x75" "\xc3\x3b\x76\x6c\x5b\x55\xfb\xb9\x20\x6d\xe9\x82\xe4\xc4\xa6\xed\xca\x96" "\xc6\xfd\x5a\x36\xfe\xb3\x1c\xd2\x6e\x09\xf5\x61\xda\x64\xbc\x8e\xe9\x0a" "\xb5\xf6\x65\xcf\x9f\x71\xf3\xec\xe8\xe8\x4d\xef\xeb\x4d\x96\x34\xdd\xaf" "\xac\x78\xdf\xde\xb5\x77\xae\x28\xaf\x7b\x72\x5f\x5e\x4f\x27\x0f\xd6\x6a" "\x9c\x1f\xfa\x6a\xcb\xe4\xdd\x39\x5b\x6e\xca\x3c\xb0\x5c\x6f\x70\xb3\xfa" "\x0f\xd7\xe7\x5f\xd1\xf8\x18\xf8\xf0\x57\x1f\xfe\xe8\xc3\xdf\x3d\x7b\xca" "\xf8\x38\xb3\xf6\xb3\x68\xbf\x92\x9c\xfd\xfa\xce\x0b\xf7\x7f\xfe\x1b\x9f" "\xfd\x8f\xdf\xed\xdc\x7e\x7d\xf8\xaf\x9e\xeb\xff\xdd\xff\xfc\xe7\x15\xb5" "\x82\x23\xe5\xbc\x52\x6f\x75\xda\x9e\xa4\xf1\xbc\x72\x66\x08\x45\xcf\xbf" "\x65\xa1\xf9\x7e\xe4\x3e\xff\x4a\xcd\xf7\xa7\xe8\xf9\x97\xad\x67\x62\xfb" "\xe6\xf1\x06\x33\xeb\xbd\xa1\xdc\xd6\xf3\xf5\xcc\xc7\x7a\x5e\xbb\xe0\xa9" "\x5b\x97\xe7\x3e\x5f\xf7\xb7\xfa\x7c\xbd\x71\xd2\x5a\xb9\xe0\xf9\x7a\xb8" "\x8c\x9f\xec\xf3\x2b\xa9\x4c\x6e\xc7\xdc\x3d\xbf\x26\x0d\x94\x64\xf5\xe8" "\x8f\x6e\x3b\x66\xd7\x13\x37\xad\x39\xa1\x56\x50\x34\xae\xeb\x5b\x37\x1b" "\xd7\x67\xb5\x90\x7f\xe4\xec\xd7\x0f\x2f\x7d\x71\xe0\xea\xc1\xff\xf0\xdf" "\x3b\x77\xde\xf8\xe6\x5f\x3c\x74\xd9\xcf\x87\x57\xff\x5b\xad\xa0\xfd\xe3" "\x1e\xdb\xd2\x99\xe3\x5e\x4d\xfb\xb7\x9a\xd3\xbf\xf5\x56\xc7\xbc\xb3\xb1" "\x7f\xdf\x7b\xe5\xd5\x9b\xd6\xd7\xca\x0f\xdf\xeb\xdf\x74\x59\x90\xff\xc4" "\x53\xc9\xf6\xeb\x77\x7e\x72\x78\xd3\xa6\x91\x6d\xdb\x5b\xdb\xaf\x56\x5f" "\x4f\x63\x3d\xd9\x5e\x6e\xf7\xf5\x34\x9e\xdd\x96\x14\xec\x57\x69\xca\x7e" "\xcd\xdd\x8d\x56\xfa\xab\xd5\xe7\x5b\xda\xfe\x72\x36\x46\xbb\xcf\xb7\xde" "\x90\xb4\xf5\xba\xb0\xf3\xc7\x8b\x17\x7c\xfc\x5b\xb7\x5f\xd3\x3f\xe5\x51" "\x69\x45\x97\x97\xd2\xf8\xa5\xb6\xe2\xff\xe2\x82\xe7\x5e\xbf\xf4\xf6\xaf" "\x7f\x39\x37\xfe\xdd\x31\x7e\xa5\xad\xf8\xc3\xaf\x3c\x7d\xd7\xb2\x63\xaf" "\xd8\x9d\x1b\xff\xde\x24\x8d\x5f\x6d\x2b\xfe\xea\x3d\xcf\x75\xf7\x1d\x78" "\xec\xf1\xdc\xf8\x43\xb1\xfd\xf3\xdb\x8a\xff\xd2\x07\x3e\xf4\xcb\x07\x5e" "\x78\xe4\xd5\xdc\xf8\x21\xc6\xef\x6d\xaf\xff\xdf\xd8\x7d\xee\x8b\x03\x03" "\xbf\xce\x8d\xff\x7c\x92\xd6\x33\x76\x8d\x14\xc2\x43\x6f\x9d\xb5\xa1\xb6" "\x9e\x84\xae\xf4\xf9\x16\xdb\xd1\x35\xa9\x5d\x21\xbb\x9e\x64\xd6\x4b\x99" "\xf5\x72\xe3\x7a\xa9\x36\xd7\x5a\xaf\xa0\x9c\x24\x93\xcb\xe3\x76\x69\xf9" "\xc9\x0d\x6d\x69\xe6\x9f\x72\xca\xe3\x55\x58\x75\x69\x6d\xf9\x76\x5c\x0f" "\xd9\x1b\xd3\x97\x1f\x6e\x4a\x0d\xe7\xfe\x66\xe5\x45\xd7\xa9\x00\x00\x47" "\xbb\xf8\xfe\x7f\xbc\x06\x8d\xef\xff\x8f\xa4\x17\x4a\xf9\x33\x0d\x30\x61" "\xb6\x79\xd8\xd2\x9c\xb8\x31\x0f\x9b\x98\xcf\x99\x37\xe9\xfe\xa5\x69\xfc" "\xf8\xf8\x38\x0f\x38\xf0\xde\x30\x34\xb6\xbc\x79\xb0\x76\xa1\x3f\xd3\xf7" "\x11\xe2\xf3\x21\x3b\xcf\x19\xeb\x39\xed\x94\xc9\x31\xda\x9d\xe7\x2c\x9a" "\x7f\x5f\x9e\x59\x8f\xed\xaa\xcd\x97\x57\x1a\xf2\xd0\xd4\xd4\xbc\xa6\x12" "\x5a\x98\x7f\x9f\x5a\xcf\xf4\xf3\xef\x99\xdd\x2f\x9e\x1f\x1f\xbc\x6d\x4a" "\xb3\x06\x1b\xe6\xad\xb2\xc7\xaf\x2b\x9d\x31\x6b\xf6\x79\x87\x4c\x7b\x2b" "\x63\x11\xf2\xc6\x47\x76\x5e\x2c\x7e\x9e\x63\x60\x61\x58\x33\x5e\x5f\x8b" "\xe3\x23\xfb\x39\x9a\x78\x1c\xb2\x9f\xa3\x89\xf5\x9c\x90\x39\x71\xb6\xfb" "\x39\x9a\xd9\x8e\x8f\xd8\xec\x69\xc6\xc7\x78\x93\x8b\xdf\xdf\x98\x7a\xfc" "\xc2\x34\xfd\x3b\x71\xfc\x9a\x47\xcb\x1e\xbf\x19\x1c\xef\xea\xd8\xf6\x73" "\xfd\xfe\x6c\x07\xe6\x0d\x9b\x9e\xd2\x0e\xde\xbc\xe1\xdc\xbe\x1f\x66\x5e" "\x32\x27\x7e\xfa\x04\x3b\xdc\xe7\x0d\x63\x79\xdc\x8f\x4a\x8b\xf3\x89\x1f" "\xcd\x29\xef\xd4\x7c\x62\x3c\x5d\xc4\x76\xed\x9f\xa6\x2d\x07\x83\xf9\x44" "\xe0\x68\x15\xf3\xff\xf8\x1a\x31\x96\xff\x8f\x5d\x80\xff\xdf\xcc\x76\x45" "\xd7\xa1\xd9\xab\xc6\x18\x2f\xf7\x73\x42\x53\xde\xe1\xad\x29\xca\x3b\xa6" "\x7e\x4e\xaf\xa7\xad\xd7\xf1\x75\x7b\xb6\x7e\xa6\x7b\xe0\xc0\x69\xb9\xd7" "\x39\x8f\xb7\xfa\xb9\x9f\xad\x93\xd6\x7a\x0a\x3e\xf7\x53\xd4\x8f\x2b\x32" "\xeb\x85\xfd\x98\x33\x41\x53\x94\xef\x65\xeb\x29\xea\xf7\xec\xe7\x32\x7a" "\x43\x5f\x5b\xfd\x7e\xff\xae\x7b\xde\x7f\xdf\xa2\x3b\xce\xcf\xed\xf7\x35" "\xb5\x17\xd2\xe2\x7e\xff\xfc\xa4\xb5\xbe\x82\x7e\x3f\x02\xf2\x85\xe6\xf1" "\xe5\x0b\xef\x88\x7c\x61\xae\xe7\xcf\x0e\x59\x3e\x92\x7e\xf0\x69\xae\xf2" "\x91\x7f\xcc\x29\x9f\x69\x3e\xd2\x33\xe5\x46\x7d\xbf\xc6\x1d\x71\xf9\x48" "\xd7\xc1\x6d\x17\x00\x70\xe4\x88\xf9\x7f\xfd\xfd\xb3\x34\xff\xff\x5f\x71" "\x83\xf4\x3a\xa2\x28\x6f\x3d\x3d\xb3\x1e\xe3\xe5\xe6\xad\x39\xd7\x27\x79" "\x79\xeb\x3f\xa4\xcb\xeb\x32\xdb\xf7\xa6\xbf\x51\x31\xd3\xeb\xe6\x0b\x4f" "\x7d\xf4\x96\x05\x07\x1e\x39\x29\x37\x6f\xb9\xb7\xd5\x3c\xf4\x3f\x4d\x5a" "\xeb\x2f\xcc\x43\x67\x97\x37\xe7\xe6\x11\x6b\x3a\xf3\x79\xf1\xdc\x3c\xa2" "\x9e\x67\xcd\x2e\x4f\xcc\x6d\x7f\x3d\x4f\x9c\x5d\x9e\x9e\x1b\xbf\x9e\xa7" "\xcf\x2e\x8f\xce\xed\x9f\x7a\x1e\x3d\xbb\x79\x80\xdc\xf8\xf5\x79\x80\x23" "\x3d\xcf\x2d\x98\xaf\xcb\x54\x16\x57\x5b\x9d\xaf\x3b\x6a\xf3\xe8\xf4\xd7" "\x67\xe7\x2a\x8f\xbe\x38\xa7\x7c\xa6\x79\x74\xef\x94\x1b\xf5\xfd\x1a\x27" "\x8f\x06\x00\x38\xb4\x62\xfe\x1f\x2f\xe3\x62\xfe\xff\x54\x66\xbb\xd9\xbe" "\xcf\x9e\x9b\x17\x74\xe8\xba\x3d\xfb\xf7\x40\xea\xf1\x9f\x3f\x58\x79\xe5" "\x5c\xe7\x7d\x73\x9d\xb7\xce\x75\x5e\x3f\xd7\xf3\x12\xb5\xbc\xb8\x14\x8e" "\xd4\xbc\x78\xae\xe7\x85\xe6\x76\x9e\xec\x1d\x9f\x17\xa7\x95\xca\x8b\x01" "\x00\x38\x9c\xc5\xfc\x7f\x7e\xba\x9e\x9f\xff\xcf\x2e\x3f\x69\x96\xbf\x75" "\x4d\xca\x4f\xe4\xe7\x4d\xe3\x1f\x65\xf9\xf9\x51\xfb\xbe\x75\x4e\xfc\xc3" "\x67\xfe\x4b\xfe\x3f\x2f\x84\x9b\x63\xb9\xf7\xc5\x9b\x93\xff\x03\x00\x1c" "\xdd\x62\xfe\x1f\x7f\xed\x31\xfe\xfd\xbf\xff\x92\xae\x67\xff\x6e\xbd\x3c" "\x3d\x27\xbe\x3c\x5d\x9e\x3e\xdd\xf8\x69\x39\x4f\xef\xfc\x3c\x5b\xf0\x39" "\x80\x43\xfb\xf9\xf8\xf9\x13\xdb\x9b\x07\x00\x00\xe0\x50\xe8\x1a\xcf\x94" "\xa6\xfe\x9e\xfd\xc7\xd2\x65\xf6\xf7\xec\xf3\x7e\x2f\xff\xd2\x9c\xed\x5b" "\x55\x49\x2f\x8f\xaf\xd8\xb1\x6d\x64\xe4\xb2\x6b\xb6\xae\x1f\xde\x31\x72" "\xd9\x96\xab\xd7\x8f\x6c\xbf\xec\xda\x6d\x1b\x77\xec\x18\xd9\x52\xdb\x6e" "\xb6\x79\x63\x6e\xde\x92\xe6\x8d\x5d\xa1\x92\xf6\x47\xf3\xed\xb2\x79\xdb" "\xa2\xf4\xef\x21\x2c\xca\xf9\x7b\x08\xd9\xed\x63\xd8\x13\xc7\x6f\x4c\xfd" "\x7b\x08\xd9\x6a\xe7\x17\xfc\x1d\x81\x89\xe3\xd7\x5a\x7b\xf3\x8e\x5f\x69" "\x9a\xed\x9b\x8d\x8f\xbc\xe3\x9d\x17\xff\x9f\x72\xb6\x8f\xea\xc7\xff\xca" "\x7f\x3e\xf3\xb2\x0d\xdb\x2f\xdb\xb8\x65\xe3\x8e\x8d\xc3\x9b\x36\xee\x1c" "\x99\xbc\xdd\x58\xd6\xda\x33\x83\xef\xcd\x8c\xdd\x32\xa3\xef\x4b\xcd\xfc" "\x98\xa2\x34\xf3\xef\xef\xec\x4c\x3b\x4a\x53\xda\xd1\x95\xf6\x47\xde\xf7" "\xb3\x27\x99\x76\x2c\x4e\x5b\xb2\x38\xef\xfb\x0f\x72\xda\xfd\xcc\x7f\xfb" "\xdc\xbf\x9c\x3a\xfa\x87\x07\x42\x18\x3a\xae\xfc\xee\x59\xf5\x5f\xb2\x7a" "\xf4\x3f\x5f\x32\xf2\x0f\x3b\xf6\xfd\x6c\xeb\x58\xfb\x4b\xd3\xb6\xbf\xbe" "\x65\xda\xae\xa2\xef\x2b\xcd\x6e\x1f\xf7\xa7\xb2\xe9\xea\xed\x3b\xce\xd8" "\x70\xf5\x35\x5b\xd6\xe7\xb6\x7d\x26\xe2\x7c\x46\xa9\xbe\x3e\x47\xf3\x19" "\xe9\xd3\xbf\xdc\xe2\xfc\xc4\xba\x9c\xf2\x99\x7e\x4e\xa1\x3c\xe5\xc6\xe1" "\xa9\xe5\xf9\x09\x00\x00\x26\x89\xef\xff\xc7\xeb\xd9\xf8\xfe\xe1\x67\xd3" "\x0b\xa8\x58\xde\x7a\x9e\x3e\xbb\xf7\x8f\x73\xf3\xf4\xa1\xd6\xf2\xf4\xec" "\xf7\x92\x15\xe5\xe9\xd9\xed\xe3\xfe\xb6\x9a\xa7\x57\x67\x99\xa7\x67\xeb" "\x2f\xca\xd3\x9b\x6d\xdf\x2c\x4f\xcf\xcb\xbb\xf3\xe2\xff\x63\xce\xf6\x33" "\xd5\xfa\x38\x99\xdd\xe7\x3c\x72\xc7\xc9\xe5\xad\x8d\x93\xec\xf7\x19\x14" "\x8d\x93\xec\xf6\x33\x1d\x27\xc9\x2c\xc7\x49\xb6\xfe\xa2\x71\xd2\x6c\xfb" "\x66\xe3\x24\xef\xb8\xe7\xc5\xff\x48\xce\xf6\x79\x5a\x1f\x0f\xb3\xfb\x5c" "\x4e\xee\x78\xb8\xbb\xb5\xf1\xf0\xe7\x99\xf5\xa2\xf1\x90\xdd\x7e\xa6\xe3" "\xa1\x34\xcb\xf1\x90\xad\xbf\x68\x3c\x34\xdb\xbe\xd9\x78\xc8\x3b\xbe\x79" "\xf1\x2f\xca\xd9\xbe\x55\x93\xc7\xc7\xd8\xc0\x18\x1f\x17\x23\x97\x5d\x7b" "\xf5\xb6\x4f\x36\x6c\x37\xd7\xdf\x7f\x31\xe6\xe5\x59\xb5\x6f\x6e\xbf\xff" "\xa3\x5d\xad\xb7\x7f\x6e\x3f\xf7\x35\xf7\xed\x9f\xdb\xcf\x95\xcd\x7d\xfb" "\x67\xf7\xb9\xb2\xdc\xf6\x3f\x3f\xbb\x99\xb0\xd6\xdb\x3f\xb7\xdf\xef\xd2" "\xae\x83\x36\x5f\x9b\x7e\xd8\xac\xe8\xf3\x67\x45\xf3\xb8\x6b\xa7\xee\xc0" "\xb8\x99\xce\xe3\xce\x9b\x72\xe3\xf0\x64\x1e\x17\x0e\x9d\x98\xff\xc7\xb7" "\x7b\x62\xfe\x7f\x47\xba\xec\xf4\xdb\x40\x9d\xbc\x4e\x1a\x5d\x34\x71\xfb" "\xe0\x7d\x4f\x9a\xef\x31\x6b\x1a\xbf\x43\xdf\x63\x56\x74\x1d\x73\xc4\xbf" "\x9e\xa7\x8a\x5e\xcf\x77\xdd\x3f\x79\x7b\xaf\xe7\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47\x97\xee\xca\xd2" "\xf1\xe5\xbe\x5b\xb7\x1f\xb8\xe8\x84\xbf\x7b\xe6\x53\x23\x6f\xdd\xf4\xf7" "\xdf\xdf\x7c\xf3\x9f\xdd\xf0\xcd\x5f\x0d\x5e\xf9\x37\x3f\x7a\xb0\xe7\x1b" "\x6f\xef\x5d\x7f\xf2\x86\x9f\xff\xed\x31\x57\x3e\xfa\x89\xf3\xf7\xdc\xf3" "\x95\x27\xde\xec\x7b\xf8\x8f\xaf\x14\x06\xee\x1f\xff\x59\x39\x3d\x5d\xad" "\x86\x90\xbc\x96\x84\x50\xfd\xc1\xfe\x2f\x7c\x7a\xef\xb3\xc7\x8f\x95\x25" "\x21\x84\x72\xd2\xbf\x2b\x84\xc5\xc9\x92\x27\x16\x27\x99\x08\x43\xbf\x0f" "\x21\xac\xaf\xb7\x73\xf2\x9d\x0f\xbd\x75\xd6\x86\xb1\xe5\xcd\x77\x74\x4f" "\x2a\x5f\x94\x09\x92\xdd\xaf\xd0\x5b\x8e\xed\x69\x6c\x67\x08\xd7\x15\xee" "\x11\x47\xa0\x6a\x3a\xce\x76\x1e\xb8\xf6\x8c\xf0\xf2\x5f\xaf\xbd\xe5\x27" "\xcb\xbe\xf3\xed\xae\xdd\xaf\xee\x9a\xd8\x24\xa9\x36\x8c\xa7\x10\x16\x5e" "\xde\xf8\xf8\xae\x10\xc2\xfc\xf4\xff\x98\x38\xda\x96\xc6\x07\xa7\xcb\x35" "\x21\x84\x9e\x86\xc7\x9d\x57\xd0\xae\x53\x5a\x6c\xff\xca\x9c\xf5\x13\xd3" "\xe5\xbc\x74\xd9\x5b\x10\x27\xde\xbf\x3c\xb3\x5e\xca\x6c\x97\x5d\x8f\xba" "\x32\xcb\x9e\x82\xfa\x66\x2b\xaf\x1d\xed\x6e\x57\x64\x41\x66\x3d\x7b\x32" "\x9a\xad\xbc\x76\xc6\xf2\xc5\xe9\xf2\x7b\xe9\xf2\xf4\x19\xc6\x2f\xc7\xff" "\x49\x28\x25\xa1\x52\x6f\xfe\xa6\x64\x62\x8c\x84\x86\xe3\x96\x84\x64\xfc" "\x58\x56\xeb\xeb\xa5\xfa\xb1\x0d\xe9\xfe\x67\xd6\x93\xcc\x7a\x29\xb3\x5e" "\xee\xca\xec\xd7\x78\xbd\xe9\x40\x2b\x27\xc9\xe4\xf2\xb8\x5d\xa6\x3c\x9e" "\x8e\x2b\x69\xf9\xc9\x8d\xe7\xea\x26\x2e\xce\x29\x7f\x57\xba\xac\xa6\x4f" "\xd4\xb7\xe3\x7a\xc8\xde\xa8\xe9\x9d\x72\xa3\xbe\x5f\xe3\x62\xbb\xf6\x4f" "\xd3\x96\x83\xa1\xd4\x70\x0e\x6a\x56\x5e\x3f\xf0\xe9\xc1\xe8\x4d\xcb\x7a" "\x93\x25\x53\x1e\x33\xda\x44\xbc\x6f\xef\xda\x3b\x57\x94\xd7\x3d\xb9\xaf" "\x3f\xa7\x1d\xc9\x83\x49\x1a\x3f\x69\x2b\xfe\xce\x1f\x2f\x5e\xf0\xf1\x6f" "\xdd\x7e\xcd\xd2\xbc\xf8\x97\x97\xd2\xf8\xa5\xb6\xe2\xff\xe2\x82\xe7\x5e" "\xbf\xf4\xf6\xaf\x7f\x39\x37\xfe\xdd\x31\x7e\xb9\xad\xf8\x67\x3e\xd6\xf3" "\xda\x05\x4f\xdd\xba\x3c\xb7\x7f\xf6\xc7\xfe\xa9\xb4\x15\x7f\xf8\x95\xa7" "\xef\x5a\x76\xec\x15\xbb\x73\xdb\x7f\x6f\x8c\x5f\x6d\x39\xfe\xbc\x30\x11" "\x7f\xf5\x9e\xe7\xba\xfb\x0e\x3c\xf6\x78\x6e\xfb\x87\x62\xff\xcc\x6f\xab" "\xfd\x2f\x7d\xe0\x43\xbf\x7c\xe0\x85\x47\x5e\xcd\x8d\x1f\x62\xfc\x9e\xb6" "\xe2\xaf\xdb\xb3\xf5\x33\xdd\x03\x07\x4e\xcb\x8d\xff\x78\xec\x9f\xde\xf6" "\xc6\xcf\x1b\xbb\xcf\x7d\x71\x60\xe0\xd7\x83\x79\xf1\x9f\x8f\xf1\xfb\xda" "\x8a\x7f\xff\xae\x7b\xde\x7f\xdf\xa2\x3b\xce\xcf\x3d\xbe\x6b\x62\xff\xf4" "\xb7\x15\xff\xc2\x53\x1f\xbd\x65\xc1\x81\x47\x4e\xca\x3b\x77\x26\xf7\x76" "\xea\x95\x13\xe0\x9d\xe9\x98\xf4\x1a\xeb\xb6\x74\xbd\x21\xcf\xec\x9b\x49" "\x9e\x39\x5b\x0d\xf9\xc2\x97\x06\x2b\xb5\x6b\xbe\x05\xe9\xff\xbe\x4e\x56" "\x94\x31\x56\xcf\xc2\x39\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd1\xe9\xa7\x37\x9e" "\xfd\xb1\x4b\x3e\xf8\x91\xb5\x95\x24\x84\x24\x67\x9b\xd1\x26\xe2\x7d\xe5" "\x79\xab\x57\x0f\xb6\x51\xef\xf0\x2b\x4f\xdf\xb5\xec\xd8\x2b\x76\x37\x96" "\x2d\x6d\x23\x0e\x00\x00\x00\x50\x2c\xe6\xe1\xa5\x7a\x49\x35\x2c\x0d\xd7" "\x26\xf3\xc3\x89\x4d\xb7\x8f\x73\x04\x27\xc6\xb5\x64\x72\x79\x76\x0e\x21" "\xc6\xc9\xce\x11\xb4\x1b\xa7\xd4\xa1\x38\xe5\x0e\xc5\xa9\x74\x28\x4e\x57" "\x87\xe2\xcc\xeb\x50\x9c\xee\x0e\xc5\xa9\x16\xc4\xa9\x86\xd6\xe2\xcc\x9f" "\x26\x4e\x65\x6c\x54\xb4\xd8\x9e\x9e\x69\xdb\xd3\x7a\x9c\xde\x0e\xc5\x59" "\xd0\xa1\x38\x7d\x1d\x8a\xb3\xb0\x43\x71\x16\x75\x28\x4e\xff\xb4\x71\x5a" "\x1f\x87\x8b\x3b\x14\x67\x49\x87\xe2\x1c\xd3\xa1\x38\xc7\x76\x28\xce\x71" "\x1d\x8a\xf3\x27\x1d\x8a\x73\x7c\x87\xe2\x64\xe7\x94\x67\x3a\x0e\xfb\xd2" "\x2d\x4f\xc8\x8b\x33\x7e\xa3\x5c\x18\xa7\x92\x94\xeb\x77\x34\x9b\x4f\x3f" "\x3e\xad\xe7\xa4\x59\xd6\xd3\x5b\x50\x4f\x5f\xd1\xeb\x71\x8b\xf5\xcc\x6f" "\xb1\x9e\x53\x32\x8f\x2b\xcd\xb0\x9e\x6a\x8b\xf5\xfc\xe9\x2c\xeb\x49\x5a" "\xac\xe7\xcf\x67\x59\x4f\xa9\xa0\x9e\x38\x6e\xaf\xcb\xb6\x2f\xd6\x13\xd7" "\x5a\x1c\xff\xd7\x77\x28\xce\xce\x0e\xc5\xb9\xa1\x43\x71\x6e\xec\x50\x9c" "\x7f\xed\x50\x9c\x7f\xeb\x50\x9c\x9b\x66\x19\x07\xa0\x55\x31\xff\x9f\xc8" "\xf7\xfa\x43\x77\xe5\x2f\x43\x4f\x7a\xc6\xc9\xce\x02\xc4\x7c\x77\xd9\xf8" "\xcf\xa9\xaf\x77\x79\x27\xa4\x18\xef\xdd\x99\xf2\x79\x45\xf1\xb2\x89\x7a" "\x26\xde\xb2\x99\xb6\x2f\x3b\x81\x90\x89\xb7\x3c\x53\xde\x35\x29\x5e\xa5" "\x9e\x8f\x4c\x13\xaf\xda\x18\x6f\x45\xe6\xce\xc2\xfd\xcd\x4e\x28\x64\xda" "\x77\x7a\xa6\xbc\xbb\x28\x5e\x76\x62\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\xe6\xd0\x4f\x6f\x3c\xfb\x63\x97\x7c\xf0\x23\x6b\x43\x12\xc6\xfe" "\x35\x35\xda\x44\xbc\xaf\x3c\x6f\xf5\xea\xc1\x36\xea\xdd\xbb\xf6\xce\x15" "\xe5\x75\x4f\xee\x6b\x2c\xeb\xae\xb4\x11\x08\x00\x00\x00\x28\x14\xf3\xf0" "\xae\x7a\x49\x35\x74\x57\x56\x85\xee\x64\xde\xa4\xed\xaa\xe9\x3c\x40\x35" "\x5d\x2f\xf7\xd7\x96\x03\x0b\xc3\x9a\xb1\x65\x32\x58\x1a\x5f\xef\x49\x16" "\x4f\xfb\xb8\x4a\xfa\xb8\x95\x3b\x36\x6f\x5d\xb9\xfd\xfa\x9d\xef\xd9\xb8" "\x79\xf8\xaa\x91\xab\x46\xb6\xbc\x6f\xd5\xd9\xab\xce\x1d\x3a\xe7\xdc\x73" "\x56\x6e\xd8\xb8\x69\x64\xa8\xf6\x33\x84\xee\x82\x78\x21\x84\xf1\xe9\x87" "\xed\xd7\xef\xfc\xe4\xf0\xa6\x4d\x23\xdb\xb6\xd7\x0a\xb3\xed\x5f\x9a\x3e" "\x6e\x69\xba\x9e\xa4\x8f\x1b\x78\x6f\x18\x1a\x5b\xde\x9c\xb6\x7f\x49\x41" "\x7d\xa5\x29\xf5\xcd\xdd\x8d\xe2\xa3\x07\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\x67\xd7\xfe\x42\xe4" "\xaa\xee\x38\x80\x9f\x3b\x33\x3b\x33\xae\xa6\xd9\xe2\xbf\x31\x98\xcd\x90" "\x3f\x92\xb6\xd2\x26\xe9\x5a\x62\x2b\xee\x85\x42\x05\x4d\x42\x16\xa1\xcc" "\xda\x6e\x25\xd4\x84\x4a\x37\x26\x68\x22\xa9\x9d\x6a\xa0\x6a\x13\x5a\x0a" "\x4a\x20\xa4\xe4\xa1\x29\xa9\x54\x2b\x7d\xf1\x4f\x95\x52\xff\x10\xb0\xd8" "\xb4\x81\x6e\x1a\x8a\x4a\xeb\x43\xfb\xd0\xa2\xad\x12\x25\x0f\x25\x32\x25" "\xbb\x73\x66\x67\x26\x33\x99\x75\x2a\xc6\xc4\xcf\xe7\xe1\xde\x3b\xe7\xfc" "\xce\xf9\xdd\x3b\x0f\x0b\xdf\xbb\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x87\x6b\xaa\x3a\x32\x51\x19\x1d\x1b\x1f\x4c\x42\x48\xba\xd4" "\xd4\x3a\x88\x73\xd9\x7c\x9a\x96\xfb\xe8\xfb\xf5\x67\xb7\xfe\xb8\x30\x7c" "\x62\x79\xf3\x58\x21\xd7\xc7\x46\x00\x00\x00\x40\x4f\x31\x87\x0f\x34\x46" "\x8a\xa1\x90\xcb\x86\x6c\xb8\x62\xfa\xd3\xe2\xd0\x34\x11\x66\x73\x3f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x33\x55\x1d" "\x99\xa8\x8c\x8e\x8d\x5f\x98\x84\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9\x34" "\x2d\xf7\xd1\xf7\xf5\x77\x1e\xff\xc2\x2b\xc3\xc3\xff\x6c\x1e\x2b\xf5\xb1" "\x0f\x00\x00\x00\xd0\x5b\xcc\xe1\x99\xc6\x48\x31\x94\xc2\x92\x30\x90\x5c" "\xd1\x52\x17\xdf\x0d\x2c\x68\x5b\xdf\x5e\x17\xf7\x59\x38\xc7\xba\xf6\x77" "\x07\xdd\xea\x96\xcc\xb1\xee\xaa\x39\xd6\x7d\xaa\x47\xdd\xba\xfa\x79\x47" "\x00\x00\x00\x80\x73\x5f\xcc\xff\xb9\xc6\xc8\x50\x28\xe4\xe6\x75\xcd\xff" "\xbd\x72\x7d\xac\x5b\xd4\x56\x97\xad\x9f\xfb\xf9\xad\x00\x00\x00\x00\xf0" "\xff\x89\xf9\xbf\xd0\x18\x29\x85\x42\xae\xd4\xc8\xeb\x73\xcd\xfb\x8b\xdb" "\xea\xe2\xfa\x5e\xff\xb7\x8f\xeb\x97\x75\x59\xdf\xeb\xff\xf9\x6b\xeb\x67" "\xff\xa7\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x73\xc7\x54\x75\x64\xa2\x32\x3a" "\x36\x9e\x4d\x42\x48\xba\xd4\xd4\x3a\x88\x73\xd9\x7c\x9a\x96\xfb\xe8\xbb" "\xea\xb9\xc1\x7f\xdf\x74\xe8\x81\xc5\xcd\x63\x85\x5c\x1f\x1b\x01\x00\x00" "\x00\x3d\xc5\x1c\x3e\x1b\xbd\x8b\xa1\x90\x1b\x0c\x03\xe1\xc2\xe9\xdc\x3f" "\x7c\xc3\xfe\x27\xbf\xfa\xe4\xd3\x23\x21\x84\x99\x98\x9f\xcf\x87\x1d\x1b" "\xb6\x6d\xbb\x73\xd5\xcc\x31\xd6\xad\x3c\x7c\x68\xe0\x47\x2f\xbd\xf9\xbd" "\xd3\xea\x56\xce\x1c\xcf\xda\x03\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x1f\x98\xa9\xea\xc8\x44\x65\x74\x6c\xfc\x82\x24\x84" "\xa4\x4b\x4d\xad\x83\x38\x97\xcd\xa7\x69\xb9\x8f\xbe\xaf\x7d\xe9\x2b\x7f" "\x7f\xf4\xd8\x33\x6f\x34\x8f\x95\xfa\xd8\x07\x00\x00\x00\xe8\x2d\xe6\xf0" "\xd9\xec\x5f\x0c\xa5\x90\x0f\xf9\x70\xd9\xf4\xa7\xe6\xac\x7f\x4a\xa6\x6d" "\x7d\xb7\x77\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xc0\xf9\xe3\xae\xef\xdc\xf3\xed\x0d\x93\x93\x1b\xef\x7c\x1f\x17\xfd" "\xad\x72\xe1\xc2\xc5\xb9\x73\x71\xb6\xff\x32\x01\x00\x00\x1f\xb4\x45\x21" "\x09\xb5\xf7\xe9\xf2\xf5\x67\xfb\xae\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x8f\x82\xa9\xea\xc8\x44\x65\x74\x6c\xbc\x98\x84" "\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9\x34\x2d\xf7\xd1\x37\x7d\xf6\x48\x61" "\xde\x89\xe7\x5e\x68\x1e\x2b\xf5\xb1\x0f\x00\x00\x00\xd0\x5b\xcc\xe1\xb3" "\xd9\xbf\x18\x4a\x61\x20\x0c\x84\x4b\xa7\x3f\x75\x7a\x27\x30\x9d\xff\x87" "\x3e\xc4\x9b\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x3e\x52\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x79\x49\x08\x49\x97\x9a\x5a" "\x07\x71\x2e\x9b\x4f\xd3\x72\x1f\x7d\x1f\xd9\xb9\xef\x8b\x07\xe7\xff\xf0" "\xc6\xe6\xb1\x42\xae\x8f\x8d\x00\x00\x00\x80\x9e\x62\x0e\xcf\x37\x46\x8a" "\xa1\x90\xfb\x74\x28\x84\x2b\xeb\x9f\x27\x5b\x17\x24\xd9\xfa\xb9\xf3\x7b" "\x81\xd9\x75\x5b\x5b\x96\x0d\xce\x79\x5d\xb5\x65\x5d\x76\xce\xeb\x76\xb5" "\x3d\x59\xae\xfe\x34\x33\xeb\x8a\x71\xbf\xa1\x99\x73\x63\x5d\xf9\xf4\x75" "\xe5\xa6\x75\xa5\xd0\x68\x5f\x6e\x59\x17\xf6\xb4\xac\x9a\xd7\xe3\x3e\x03" "\x00\x00\x00\x9c\x45\x31\xff\x17\x1a\x23\x43\xa1\x90\x2b\x34\xe5\xdc\x5f" "\xb4\xd4\x0f\xc9\xb9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x17\x53" "\xd5\x91\x89\xca\xe8\xd8\x78\x92\x84\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9" "\x34\x2d\xf7\xd1\xf7\x9e\x3f\x7c\xf2\xa2\x6f\xfc\x72\xf7\xf6\xe6\xb1\x52" "\x1f\xfb\x00\x00\x00\x00\xbd\xc5\x1c\x3e\x9b\xfd\x8b\xa1\x14\x16\x86\x4f" "\x84\x85\xd3\xb9\x3f\x0c\xb5\xd6\xc7\xba\xff\x54\x4e\x1e\x7c\xf8\xed\x7f" "\x2c\x0f\x61\xc5\x65\x47\x87\x73\xed\xdb\xfe\x34\x5e\xfc\xee\xb5\xeb\x9f" "\x6f\x3f\x84\x90\x69\xad\xce\x84\x30\xbf\xde\x2f\xe9\xd2\xef\xf7\x7f\x7a" "\xf8\xee\xa5\xb5\x93\x8f\x86\xb0\xe2\xd2\xec\x95\xa7\xf5\x0b\x67\xee\xd7" "\xba\x65\x5a\x7b\xaa\xb2\x71\xed\xb6\xad\x61\x6b\x8f\x2f\x07\x00\x00\x00" "\xce\x13\x31\xff\x0f\x34\x46\x86\x42\x21\x77\x47\xd7\xfc\x1f\x93\x77\x8f" "\xfc\xdf\x30\x1d\xc0\xe7\xdf\xbd\xf3\xd7\x97\xd4\x8f\xf5\x44\xde\xb6\x22" "\x33\x54\xef\x97\xe9\xd2\xef\xcb\x4b\x1f\xff\xdb\xb2\xd5\xff\x7a\xf3\x54" "\xfe\x3f\x53\xbf\xcf\xed\xdb\x7c\xf0\x92\x96\x86\x33\x23\x6d\x92\xb4\x36" "\xba\x79\xfb\xba\xa3\xd7\x1c\xc8\xc4\xa7\x9e\xe9\x9f\x6d\xeb\x1f\xbf\x97" "\xaf\x7d\xf7\x8d\xff\x6e\xda\xf1\xd0\xc9\x99\xfe\xc5\x50\xac\x8f\x2f\xc8" "\x75\xea\x7f\xfa\xb1\xcd\x05\x69\x6d\x32\xb3\x77\x7c\xcd\x7b\x7b\xab\xad" "\xfd\x73\x5d\x9e\xff\x81\x3f\xbe\x70\xec\xb7\x0b\x76\xbf\x7b\xaa\xff\x3b" "\x8b\x06\x1b\xfd\xaf\x3a\xc3\xf3\x9f\xb9\xff\xe0\xcd\x0f\xee\xb9\x76\xdf" "\xa1\x75\xad\xfd\x43\x08\xe5\x4e\xfd\xdf\x7a\xf7\xc6\x70\xf9\x5f\x6e\xbf" "\xbf\xfd\xf9\x07\xdb\x36\x6e\xfe\xe6\x9b\x8f\x0d\x6f\xd7\xcf\xb5\xc3\x8b" "\x8f\x1f\x58\xbd\xbf\x74\x5d\x6b\xff\xa4\xad\x7f\xfc\xfe\x7f\x75\xec\x91" "\x3d\x3f\x7f\xe8\x07\x4f\xc7\xfe\xf1\xb7\x22\xcb\x97\xcc\xb5\x7f\xcb\x3b" "\xa7\x24\xad\xbd\xbc\xeb\xe2\x9d\x2f\xde\xb7\x7e\x41\x6b\xff\x4c\x97\xe7" "\x7f\xfe\x96\x57\x86\xb7\x94\xbf\xff\xe7\xf6\xe7\xbf\xad\x65\xd7\x5c\xd7" "\xbb\x68\x93\xa4\xb5\xc7\xae\x7e\xe2\xd6\x57\x37\xa4\xf7\xb6\x4f\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x5f\xa6\xaa\x23\x13\x95\xd1" "\xb1\xf1\x4c\x12\x42\xd2\xa5\xa6\xd6\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf" "\xd7\x6f\x3a\xf2\xd6\x2d\xbb\x7f\xf6\x93\xe6\xb1\x52\x1f\xfb\x00\x00\x00" "\x00\xbd\xc5\x1c\x3e\x9b\xfd\x8b\xa1\x14\xf2\x21\x1f\x06\xa7\x73\xff\x53" "\x95\x8d\x6b\xb7\xbd\x74\x74\x6b\x18\x9a\x99\x4d\xea\xe7\xdc\xe4\x96\xbb" "\xb6\x7d\x66\xd3\x96\xed\x77\xdc\x76\x96\xee\x1c\x00\x00\x00\x98\xab\x98" "\xff\x73\x8d\x91\xa1\x50\xc8\x2d\x0d\x03\xf5\xfc\x3f\xba\x79\xfb\xba\xa3" "\xd7\x1c\xc8\xc4\xfc\x9f\x89\xf9\x7f\xd3\xed\x93\x1b\x57\x84\x46\xdd\xcb" "\xbb\x2e\xde\xf9\xe2\x7d\xeb\x17\x34\xde\x13\x84\x30\xfd\xb3\x80\xe2\xa9" "\xba\xcf\xcf\xd6\xdd\x70\xfd\x91\xa1\xe3\x7f\xfd\xd6\xb2\x8e\x75\xab\x66" "\xeb\x0e\x2f\x3e\x7e\x60\xf5\xfe\xd2\x75\xb1\x2e\x34\xd7\xad\x0c\x8d\xf7" "\x13\x8f\x5d\xfd\xc4\xad\xaf\x6e\x48\xef\x6d\xdc\x5f\x73\xdd\x67\xbf\xb9" "\x65\xb2\xfe\x7a\x22\xee\x3b\x78\xf3\x83\x7b\xae\xdd\x77\x68\x5d\xe3\x39" "\xea\xe7\xc1\xfa\xbe\xb1\x6e\x32\xb3\x77\x7c\xcd\x7b\x7b\xab\xb1\x2e\x5b" "\x3f\x17\xeb\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\x9c\x6e\xaa" "\x3a\x32\x51\x19\x1d\x1b\x0f\xd9\x10\x92\x2e\x35\xb5\x0e\xe2\x5c\x36\x9f" "\xa6\xe5\x3e\xfa\xae\x59\xfa\x9b\xfb\x2f\x3a\xf1\xcc\xc2\xe6\xb1\x42\xae" "\x8f\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xc7\x0e\x1c\x08\x00\x00\x00\x00\x00" "\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xeb\x2f\x44" "\xaa\x2a\x8e\x03\xf8\x39\x33\xbb\xed\xb8\xb3\xab\xbb\x1a\xb4\x15\xad\xab" "\x15\x85\x3d\x24\x05\x11\xf5\x52\x51\x11\x1a\x22\xf4\x64\x48\x58\x9a\x0f" "\x51\x10\x44\x14\xf6\xd0\x1a\x1a\x89\x15\xbd\x04\x59\x2f\x12\x15\x54\x5b" "\x08\x05\xb9\x49\xa2\xc5\x1a\xfd\x93\x5e\x7a\xa8\xa0\xc0\x7a\x08\x44\x5a" "\x28\x17\x09\xfa\xc3\xce\x9c\x3b\xce\xde\x9d\xdb\xd4\xd5\x82\xf2\xf3\x81" "\xe1\xcc\x39\x73\xef\x77\x7e\xf7\x9c\x33\x77\x66\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x4f\xe9\xeb\x19\x69\xb4\x87\xb6\x3f\x30\xb3\xe6\xbc\x9b\x3e" "\x7e\xec\xee\xe3\x8f\xde\xf2\xee\x7d\x5b\x2f\x79\xe4\xb5\xef\xc7\x36\xde" "\xf0\xd1\x9e\xfe\x97\x4f\x4c\x6d\x5a\xb6\xf9\xab\x1b\x97\x6c\xdc\x77\xcf" "\xaa\xc9\x5d\x2f\x1c\xfc\x79\xf0\xed\xdf\x8e\x74\x0d\x7e\xb8\xd9\xac\x48" "\xdd\x5a\x08\xf1\x58\x0c\xa1\xf6\xde\xf4\xb3\x8f\x4f\x7d\x72\xce\xec\x58" "\x0c\x21\x54\xe3\xd0\x78\x08\xc3\x71\xf1\xc1\xe1\x98\x4b\x58\xf9\x4b\x08" "\x61\x53\xab\xce\xb9\x2f\xbe\x75\xfc\xca\xcd\xb3\xed\xd6\x9d\x7d\x73\xc6" "\x17\xe5\x42\xf2\xd7\x15\xea\xd5\xac\x9e\xa6\xa1\xb9\xf5\xf2\xff\x52\x4b" "\xfb\x6c\xcb\xcc\x43\x97\x85\x6f\xae\x5f\xb7\xed\xb3\xa5\x6f\xbe\xd1\x3b" "\x71\x74\xfc\xe4\x21\xb1\xd6\xb6\x9f\x42\x58\xb8\xa1\xfd\xfc\xde\x10\xc2" "\x82\xf4\x98\x95\xed\xb6\x91\xec\xe4\xd4\xae\x0d\x21\xf4\xb7\x9d\x77\x75" "\x97\xba\x2e\xfc\x8b\xf5\x5f\x5e\xd0\x3f\x3f\xb5\x67\xa5\xb6\xde\x25\x27" "\x7b\x7d\x79\xae\x5f\xc9\x1d\x97\xef\x67\x7a\x43\xf8\x75\x4d\x9a\x8f\x90" "\xbb\xd6\x7f\x42\x51\x1d\x65\x8f\xeb\x66\x20\xd7\xcf\xdf\x8c\x4e\x55\x51" "\x9d\xd9\xf8\x70\x6a\xdf\x49\xed\x8a\xbf\x99\x5f\xcd\x1e\x31\x54\x62\xe8" "\x69\x95\x7f\x6f\x3c\xb9\x47\x42\xdb\xba\xc5\x10\x1b\x6b\x59\x6b\xf5\x2b" "\xad\xb5\x0d\xe9\xfa\x73\xfd\x98\xeb\x57\x72\xfd\x6a\x6f\xee\xba\x1a\xef" "\x9b\x36\x5a\x35\xc6\xb9\xe3\xd9\x71\xb9\xf1\xec\x76\xdc\x93\xc6\x97\xb5" "\xdf\xab\x3b\xb8\xad\x60\xfc\xdc\xd4\xd6\xd2\x07\xf5\x44\xd6\x0f\xf9\x27" "\x4d\xf5\x79\x4f\x5a\xd7\xd5\x90\xd5\x35\xfd\x27\xb5\xfc\x1b\x2a\x6d\xf7" "\xa0\x4e\xe3\xad\x85\x4f\x8b\x51\x4f\x63\xf5\xb8\x78\xde\x39\xbf\x77\x90" "\xbd\x36\xb5\xee\xc9\x8b\xab\xeb\xdf\x3f\x34\x54\x50\x47\xdc\x13\x53\x7e" "\xec\x9e\x3f\x14\xe6\xe5\x6f\xf9\x74\x78\xe0\x8e\xd7\x77\x3c\x38\x52\x94" "\xbf\xa1\x92\xf2\x2b\xa5\xea\xff\x76\xf5\xe1\x1f\x6f\xdf\xf1\xe2\xf3\x85" "\xf9\xcf\x64\xf9\xd5\x52\xf9\x57\xec\xef\x3f\xb6\xfa\x83\xed\xcb\x3b\xcc" "\xcf\xc2\x46\xfe\x74\x36\x3f\x3d\xa5\xf2\xef\x3c\xf2\xe1\x53\x4b\xcf\xbe" "\x6b\xa2\xd3\x5a\x37\xf2\x77\x67\xf9\xb5\x52\xf9\xd7\x4d\x1e\xee\x1b\x9c" "\xd9\x7f\xa0\x70\x7d\x57\x66\xf3\xb3\xa0\x54\xfe\xd7\xd7\xde\xfc\xdd\xab" "\x5f\xec\x3d\x5a\x98\x1f\xb2\xfc\xfe\x52\xf9\xeb\x27\xef\x7f\xba\x6f\x74" "\xe6\xd2\xc2\xfc\x03\xcd\x8f\x42\xbd\xb1\x43\x4b\xec\x9f\x9f\x26\xae\xfa" "\x72\x74\xf4\x87\xb1\xa2\xfc\xcf\xb3\xf9\x1f\xec\x90\x1f\xbb\xe6\xbf\x32" "\xbe\xeb\x9a\x97\x16\xed\x5c\x55\xb8\x3f\xd7\x66\xf3\x33\x54\xaa\xfe\x5b" "\x2f\xda\xb7\x6d\x60\x66\xef\x05\x45\xf7\xce\xb8\xfb\x74\x7d\x73\x02\x9c" "\x99\x96\xa4\xdf\x58\x4f\xa4\x7e\xd9\xff\x99\xa7\xaa\xed\xff\xc2\x73\x63" "\x3d\xcd\x6f\xa0\x81\xf4\x18\x3c\x9d\x6f\x94\x13\xb3\x1f\x3c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xb0\x03\xc7\x02\x00\x00\x00\x00\xc2" "\xfc\xad\x7b\x83\xd8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x0a\x00" "\x00\xff\xff\x0e\xa6\x2e\x78", 22867); syz_mount_image(/*fs=*/0x400000000080, /*dir=*/0x400000000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x4000000001c0, /*chdir=*/1, /*size=*/0x5953, /*img=*/0x40000000b640); memcpy((void*)0x400000000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x400000000040ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_RDWR*/ 0x143042, /*mode=S_IROTH|S_IRGRP*/ 0x24); if (res != -1) r[0] = res; *(uint32_t*)0x400000000340 = 8; *(uint16_t*)0x400000000344 = 0x120; *(uint16_t*)0x400000000346 = 0xfa00; *(uint64_t*)0x400000000348 = 1; *(uint32_t*)0x400000000350 = 0x323; *(uint32_t*)0x400000000354 = 2; memcpy( (void*)0x400000000358, "\xe8\x06\xfc\x97\x91\x60\x5a\x37\xdc\x5f\x17\xff\xeb\x1e\x8f\xbd\xea\x38" "\xbb\x42\x3c\x35\x66\x1c\x22\xe7\x9e\x6b\x73\x85\x68\x68\xfe\xd8\x64\x9f" "\xc7\xa5\x49\x0b\x3b\x4b\xca\x27\xac\xcb\xdf\x9f\xeb\x86\x71\x74\xff\x3a" "\x6a\x91\xd7\x4b\x87\xa1\x44\x8f\x7b\x80\x71\x59\x4c\xd5\xfa\x17\x52\x5e" "\x7a\x4b\x8a\xf5\xf5\x52\xc9\x9b\xa7\x44\x55\x17\xf2\x0d\x90\x76\xea\xb3" "\x1d\xb8\x1b\xfe\xfe\x7f\x9b\xf8\x51\x7b\x11\x1c\xe4\xfc\x48\xf7\xb3\x94" "\xb6\xc5\xe6\xfb\x7d\xba\x81\x94\xec\x04\xff\x16\x6f\x22\xd3\x47\x7e\x62" "\x40\xab\x19\x68\x4b\x17\x11\xc1\xbd\xb4\xa4\x8e\x1a\x69\x7e\x5c\xf2\xe2" "\x33\x29\x81\xce\xc8\x54\x8a\x53\x3c\x46\x9f\xaa\xd0\x2b\xd7\xe4\x4b\xc3" "\x8c\xa8\xda\x73\x14\x02\xe8\x78\x80\x8e\x8f\xe7\x87\x06\x8d\xcc\x0c\x05" "\xed\x94\xef\x56\xdb\xd9\x97\x60\xcc\x3b\xd1\x70\x27\x2f\x63\x88\xaa\xc0" "\xa6\x23\x9f\x67\x1e\x4b\xc3\xce\xe1\x2a\x71\x65\x2c\x19\x45\x77\xa3\xa7" "\x81\x7a\x44\x52\x30\xdb\xc6\x6b\x62\xc0\x4c\x81\x5a\xab\xa4\xab\x61\x26" "\xf6\x6d\xff\x6c\x4a\xeb\xbd\x58\x6f\x0c\x44\xa0\x3c\x7e\x8c\x19\xa8\x4d" "\x96\xa3\x34\x29", 256); *(uint8_t*)0x400000000458 = 6; *(uint8_t*)0x400000000459 = 3; *(uint8_t*)0x40000000045a = 0xf; *(uint8_t*)0x40000000045b = 5; *(uint8_t*)0x40000000045c = 0x80; *(uint8_t*)0x40000000045d = 0xc; *(uint8_t*)0x40000000045e = -1; *(uint8_t*)0x40000000045f = 1; *(uint32_t*)0x400000000460 = -1; *(uint32_t*)0x400000000464 = 0; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x400000000340ul, /*len=*/0x128ul); } 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; }