// https://syzkaller.appspot.com/bug?id=93469361f7ab0a6b100adb47fb20a815d8067d00 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } //% 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; } 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"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000000180, "bcachefs\000", 9); memcpy((void*)0x200000000040, "./file1\000", 8); memset((void*)0x200000000000, 0, 1); memcpy( (void*)0x200000005b80, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\x4c" "\x32\x09\xf0\x88\x20\x93\x21\x90\xf7\x78\xf0\x34\x13\x7e\x15\xea\xab\x67" "\xde\xdb\xf7\xf4\x15\xf0\xa8\x58\x58\x4a\xd8\x28\x0c\x64\x82\xd1\x24\xa4" "\x92\x41\x20\xa0\x04\x17\x5c\x28\xc0\x42\x4b\x4b\x51\xff\x40\x0b\xa9\x45" "\xa3\x45\x15\xa8\x44\x4a\x0c\xb0\x09\xab\x28\xc5\xea\x52\x5b\x48\xad\xec" "\xa2\x7f\xb8\x85\x2c\x29\x81\x2c\x65\xb9\xce\xd6\x4c\xdf\xd3\xe9\xb9\xd3" "\x77\x6e\x4f\x4f\x4f\x48\xe0\xf3\x29\x98\xdb\xf7\xf4\xed\xef\xf9\xde\x73" "\x4f\xdf\xb9\xe7\xf4\xcd\x74\x00\x00\x00\xe0\x2d\x61\xdf\xcd\xdb\x0f\x5c" "\x70\xdc\xbf\xfc\xec\x33\x23\xaf\xdd\xf0\xaf\x3f\xda\x7c\x63\xe8\x2d\x4f" "\x94\x57\xe3\x06\xfd\xe9\xf2\x9a\x37\x2a\x43\x0e\xa5\xee\x79\x4b\x27\x96" "\xd9\x7e\xf1\x37\xd7\x7d\xfb\x77\x83\x97\xff\xd3\x4f\xef\xef\xf9\xd6\xeb" "\x7b\xd7\x9f\xb8\xe1\xd7\xff\x7c\xd4\xe5\x0f\x7f\xfc\xdc\xdd\x77\x7d\xed" "\xd1\x57\xfb\x1e\xfc\xcb\x0b\x45\x71\x63\x7f\x3a\xf5\xe0\x7a\xf2\x52\x12" "\x42\xf5\xc7\xfb\xbf\xf4\xd9\xbd\x4f\x1e\x3b\x5e\x96\x84\x10\xca\x49\xff" "\xce\x10\x16\x27\x4b\x1e\x5d\x9c\x64\x42\x0c\xfd\x29\x84\xb0\x3e\x5d\x59" "\x1a\xca\x93\x9e\x7c\xe0\xb5\x33\x36\x8c\x2f\x6f\xbc\xad\x7b\x52\xf9\xa2" "\x4c\x10\xfd\xfd\xad\xad\x9a\xf6\xb3\x1d\x07\xae\x3e\x2d\xfc\xe6\x1f\xd7" "\xde\xf4\x8b\x65\xdf\xfb\x6e\xd7\xae\x17\x77\x1e\xdc\x24\xa9\x36\xf4\xa7" "\x10\x16\x5e\xda\xf8\xfa\xae\x10\xc2\xfc\xf4\xff\x71\xb1\xb7\x2d\x8d\x2f" "\x4e\x97\x6b\x42\x08\x3d\x0d\xaf\x3b\xa7\x20\xaf\x93\x5a\xcc\x7f\x65\xce" "\xfa\xf1\xe9\x72\x5e\xba\xec\x2d\x88\x13\x9f\x5f\x9e\x59\x2f\x65\xb6\xcb" "\xae\x47\x5d\x99\x65\x4f\x41\x7d\xb3\x95\x97\x47\xbb\xdb\x15\x59\x90\x59" "\xcf\x9e\x8c\x66\x2b\x2f\xcf\x58\xbe\x38\x5d\xfe\x30\x5d\x9e\x3a\xc3\xf8" "\xe5\xf8\x7f\x12\x4a\x49\xa8\xd4\xd3\xdf\x94\x1c\xec\x23\xa1\xe1\xb8\x25" "\x21\x99\x38\x96\xd5\xfa\x7a\xa9\x7e\x6c\x43\xba\xff\x99\xf5\x24\xb3\x5e" "\xca\xac\x97\xbb\x32\xfb\x35\x51\x6f\xda\xd1\xca\x49\x32\xb9\x3c\x6e\x97" "\x29\x8f\xa7\xe3\x4a\x5a\x7e\x62\xe3\xb9\xba\x89\x0b\x73\xca\xdf\x96\x2e" "\xab\xe9\x1b\xf5\xf5\xb8\x1e\xb2\x0f\x6a\x7a\xa7\x3c\xa8\xef\xd7\x84\x98" "\xd7\xfe\x69\x72\x39\x14\x4a\x0d\xe7\xa0\x66\xe5\xf5\x03\x9f\x1e\x8c\xde" "\xb4\xac\x37\x59\x32\xe5\x35\x63\x4d\xc4\xe7\xf6\xae\xbd\x7d\x45\x79\xdd" "\x63\xfb\xfa\x73\xf2\x48\xee\x4f\xd2\xf8\x49\x5b\xf1\x77\xfc\x7c\xf1\x82" "\x8f\x7e\xe7\xd6\xab\x96\xe6\xc5\xbf\xb4\x94\xc6\x2f\x65\xe2\x27\x2d\xc5" "\x7f\xfe\xbc\xa7\x5e\xbe\xf8\xd6\x6f\x7e\x35\x37\xfe\x9d\x31\x7e\x79\xe2" "\xdc\x3e\xd3\xfc\x4f\x7f\xa4\xe7\xa5\xf3\x1e\xbf\x79\x79\x6e\xfb\xec\x8f" "\xed\x53\x69\xab\x7d\x86\x5f\x78\xe2\x8e\x65\x47\x5f\xb6\x2b\x37\xff\xbb" "\x63\xfc\x6a\x5b\xf1\x57\xef\x7e\xaa\xbb\xef\xc0\x23\x7b\x72\xf3\x1f\x8a" "\xed\x33\xbf\xad\xf8\xcf\xbd\xe7\x7d\xbf\xbd\xef\x99\x87\x5e\xcc\x8d\x1f" "\x62\xfc\x9e\xb6\xe2\xaf\xdb\xbd\xf5\x73\xdd\x03\x07\x4e\x69\x1a\x7f\xec" "\x86\x10\xf6\xc4\xf6\xe9\x6d\x2b\xfe\xf3\xaf\xec\x3a\xfb\xd9\x81\x81\xdf" "\x0f\x36\xbe\xe0\x94\xbe\x83\xf9\x3f\x1d\xe3\xf7\xb5\x15\xff\xde\x9d\x77" "\xbd\xfb\x9e\x45\xb7\x9d\x9b\x7b\x7c\xd7\xc4\xf6\xe9\x6f\x2b\xfe\xf9\x27" "\x3f\x7c\xd3\x82\x03\x0f\x9d\x90\x77\xee\x4c\xee\xee\xd4\x6f\x4e\x80\xb7" "\xa6\xa3\xd2\x6b\xac\x5b\xd2\xf5\x76\xc7\x99\xb3\xd5\x30\x5e\xf8\xca\x60" "\xa5\x76\x95\xb4\x20\xfd\xbf\xaf\x93\x15\x65\x2e\x3e\xc7\xeb\x59\x58\x1f" "\x1d\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x67\x1c\x73\xda\x7f\x79\xff\xff\xfa\x50\xff\x4b\x95\x74\xbd" "\x3b\x7d\xf0\x5c\xa9\xb6\x8c\xe5\xf3\x42\x48\xe6\x87\x10\xb6\x8f\x0e\x6f" "\x1b\xdd\xb8\xe5\x8a\xc1\x8f\x5f\x79\xd5\xb6\x2d\xc3\x9b\x06\x87\x47\x07" "\x47\xb6\x8c\x6e\xbb\x76\xf0\xcc\xbf\x1b\xdc\x36\xb2\x75\xd3\xf0\xb5\xe3" "\xcf\x0e\xbd\xe3\x8c\xda\xeb\x96\x84\xa4\xb6\x4c\x4e\x98\x52\x77\xf7\xd8" "\xd8\x58\xa9\x7f\x72\x59\xac\xef\xdf\x9d\xbc\xeb\x37\x2b\xce\xf9\xdf\x7f" "\x08\x61\xe8\x98\x5f\x0d\x54\x72\xf3\x5f\x79\xd7\xe6\x7b\x8e\x6e\xf2\x33" "\x23\x59\x3d\xf6\xde\xcd\x57\x5d\xf0\xab\xb3\xbe\x91\xee\x57\x7f\x9a\x57" "\x7f\x93\xbc\xc6\xc6\xc6\xc6\x42\x4e\x5e\xff\xe7\xa2\x3f\xdf\xf3\x85\xfd" "\xbf\x3b\x25\x84\xa1\xbf\x9a\x2e\xaf\x27\x9e\xfb\x87\x9f\x4c\x4a\x68\xa2" "\xe0\x60\x9c\x54\xa9\x3b\xd4\x12\xea\x4e\x7a\x9a\xe6\x51\xcf\x3a\xcd\x27" "\xb6\x57\x65\xc3\xc6\x4d\x23\x43\xd3\xb7\xef\xf8\xeb\xcb\x39\xfb\xf1\xef" "\xaf\x7b\xf1\x4f\x1b\xae\xf9\xfc\x9f\x6b\xed\x5b\xcd\xdd\x8f\x16\xdb\x77" "\xfe\xea\xb1\x4d\xa5\x2f\xaf\x3d\xff\xff\x7d\xf9\xfa\x5a\x41\x51\x5e\x6f" "\xd4\x71\x2f\x6a\xef\xb8\x17\x31\xbf\xd8\x7e\xd5\xb4\xbd\x17\xa6\xfb\xb5" "\x30\x67\xbf\x2a\x39\xfb\x75\xf3\x2f\xf6\x3c\xf3\xe3\xe3\x6e\x7d\x75\x67" "\x18\xaa\xbc\xb2\x6c\x6a\xdd\x45\xfb\xd5\x95\x76\x80\xae\xe4\x6d\x2d\xd5" "\x1b\x6b\xe8\x49\x16\x4f\x2a\xaf\xa6\xdb\xc7\x23\x1e\x5f\xb7\x72\x74\xf3" "\xd6\x95\xdb\xaf\xdd\xf1\x8e\x8d\x9b\x87\xaf\x18\xb9\x62\x64\xcb\xbb\x56" "\x9d\xb9\xea\xec\xa1\xb3\xce\x3e\x6b\xe5\xc4\x9e\xaf\xec\xf0\xfe\xc7\xfa" "\xff\xba\xc5\xfd\x3f\x34\xfd\x69\xd1\x27\x77\xfe\x30\xfe\x6c\xad\x3f\x15" "\xe5\x55\xd4\x1e\xe3\x79\x35\xb6\xc7\x97\xa6\xc9\x6b\xfa\xf7\x5f\xcf\x85" "\x9f\xfd\xe2\xbb\xee\x7a\xfc\x82\x5a\x41\x51\x3f\x8f\x5b\xd7\xcf\x27\xe9" "\xb2\x67\xfc\x38\xaf\x0a\x0d\xfd\x6d\x6a\x5b\x35\xdb\xaf\xa2\x76\x08\x21" "\x0c\x36\x6b\x87\x97\x5f\x3d\x37\x1c\xfb\xdf\x37\xde\x54\x74\x1e\x6a\x3c" "\x32\x8d\x3f\x33\x92\xd5\x63\x4f\x2e\xff\xe3\x37\xce\xf9\xfa\xd2\xbf\xaf" "\x15\x1c\x92\xf3\x7c\x63\x42\x6d\x9e\xe7\xeb\x59\x1f\xcc\x67\xa2\xbd\xaa" "\xe9\xf1\x18\x3b\x4c\xdb\xb7\x3b\x94\xd3\xfd\xea\x6d\x9a\xd7\xaa\x27\x1f" "\xef\xba\x7d\xdf\x1f\x3e\x55\xcf\x6f\xde\xbc\x70\xcd\xf0\xe8\xe8\xb6\x55" "\xb5\x9f\x0b\xd2\x4c\x17\x24\xc7\x37\xcd\x2b\x5b\x1a\xf7\x6b\xd9\xc4\xcf" "\x72\x48\x9b\x25\xd4\xbb\x69\x93\xfe\x3a\xae\x2b\xd4\xf2\xcb\x9e\x3f\xe3" "\xe6\xd9\x56\xed\x4d\x9f\xeb\x4d\x96\x34\xdd\xaf\xac\xf8\xdc\xde\xb5\xb7" "\xaf\x28\xaf\x7b\x6c\x5f\x5e\x4b\x27\xf7\xd7\x6a\x9c\x1f\xfa\x6a\xcb\xe4" "\xed\x39\x5b\x6e\xca\xbc\xb0\x5c\x4f\xb8\x59\xfd\x87\xeb\xfb\xaf\xa8\x7f" "\x0c\xbc\xff\xeb\x0f\x7e\xe8\xc1\x1f\x9c\x39\xa5\x7f\x9c\x5e\xfb\x59\xb4" "\x5f\x49\xce\x7e\x7d\xef\x99\x7b\xbf\xf8\xad\xcf\xff\xc7\x1f\x74\x6e\xbf" "\xde\xff\x0f\x4f\xf5\xff\xf1\x7f\x7c\x6c\x45\xad\xe0\x48\x39\xaf\xd4\xb3" "\x4e\xf3\x49\x1a\xcf\x2b\xa7\x87\x50\xf4\xfe\x5b\x16\x9a\xef\x47\xee\xfb" "\xaf\xd4\x7c\x7f\x8a\xde\x7f\xd9\x7a\x0e\x6e\xdf\x3c\xde\x60\x66\xbd\x37" "\x94\xdb\x7a\xbf\x9e\xfe\x48\xcf\x4b\xe7\x3d\x7e\xf3\xf2\xdc\xf7\xeb\xfe" "\x56\xdf\xaf\xd7\x4f\x5a\x2b\x17\xbc\x5f\x0f\x97\xfe\x93\x7d\x7f\x25\x95" "\xc9\x79\xcc\xdd\xfb\x6b\x52\x47\x49\x56\x8f\xfd\xf4\x96\xa3\x76\x3e\x7a" "\xc3\x9a\xe3\x6a\x05\x45\xfd\xba\xbe\x75\xb3\x7e\x7d\x46\x0b\xe3\x8f\x9c" "\xfd\xfa\xc9\xc5\xcf\x0e\x5c\x39\xf8\x1f\xfe\x5b\xe7\xce\x1b\xdf\xfe\xbb" "\x07\x2e\xf9\xf5\xf0\xea\x4f\xd7\x0a\xda\x3f\xee\x31\x97\xce\x1c\xf7\x6a" "\xda\xbe\xd5\x9c\xf6\xad\x67\x1d\xc7\x9d\x8d\xed\xfb\xce\xcb\xaf\xdc\xb4" "\xbe\x56\x3e\xdb\xeb\xdf\x4a\xe6\xfa\xb7\xf9\x78\xa0\x9d\xeb\xdf\x74\x59" "\x30\xfe\x89\xa7\x92\xed\xd7\xee\xf8\xc4\xf0\xa6\x4d\x23\xdb\xb6\xb7\xb6" "\x5f\xad\xfe\x3e\x8d\xf5\x64\x5b\xb9\xdd\xdf\xa7\xf1\xec\xb6\xa4\x60\xbf" "\x4a\x53\xf6\x6b\xee\x1e\xb4\xd2\x5e\xad\xbe\xdf\x62\xfe\xeb\xdb\x6e\xaf" "\xc9\xef\xb7\xde\x90\xb4\xf5\x7b\x61\xc7\xcf\x17\x2f\xf8\xe8\x77\x6e\xbd" "\xaa\x7f\xca\xab\xd2\x8a\x2e\x2d\xa5\xf1\x4b\x6d\xc5\x7f\xfe\xbc\xa7\x5e" "\xbe\xf8\xd6\x6f\x7e\x35\x37\xfe\x9d\x31\x7e\xa5\xad\xf8\xc3\x2f\x3c\x71" "\xc7\xb2\xa3\x2f\xdb\x95\x1b\xff\xee\x24\x8d\x5f\x6d\x2b\xfe\xea\xdd\x4f" "\x75\xf7\x1d\x78\x64\x4f\x8c\x3f\x3f\x1b\x7f\x28\xe6\x3f\xbf\xad\xf8\xcf" "\xbd\xe7\x7d\xbf\xbd\xef\x99\x87\x5e\xcc\xcd\x3f\xc4\xf8\xbd\xed\xb5\xff" "\x2b\xbb\xce\x7e\x76\x60\xe0\xf7\xb9\xf1\x9f\x4e\xd2\x7a\xc6\xaf\x91\x42" "\x78\xe0\xb5\x33\x36\xd4\xd6\x93\xd0\x95\xbe\xdf\x62\x1e\x5d\x93\xf2\x0a" "\xd9\xf5\x24\xb3\x5e\xca\xac\x97\x1b\xd7\x4b\xb5\xb9\xd6\x7a\x05\xe5\x24" "\x99\x5c\x1e\xb7\x4b\xcb\x4f\x6c\xc8\xa5\x99\x0f\xe7\x94\xc7\xab\xb0\xea" "\xd2\xda\xf2\xf5\xb8\x1e\xb2\x0f\xa6\x2f\x3f\xdc\x94\x1a\xce\xfd\xcd\xca" "\x8b\xae\x53\x01\x00\xde\xec\xe2\xe7\xff\xf1\x1a\x34\x7e\xfe\x3f\x92\x5e" "\x28\xe5\xcf\x34\xc0\x41\xb3\x1d\x87\x2d\xcd\x89\x1b\xc7\x61\x07\xe7\x73" "\xe6\x4d\x7a\x7e\x69\x1a\x3f\xbe\x3e\xce\x03\x0e\xbc\x33\x0c\x8d\x2f\x6f" "\x1c\xac\x5d\xe8\xcf\xf4\x73\x84\xf8\x7e\xc8\xce\x73\xc6\x7a\x4e\x39\x69" "\x72\x8c\x76\xe7\x39\x8b\xe6\xdf\x97\x67\xd6\x63\x5e\xb5\xf9\xf2\x4a\xc3" "\x38\x34\x35\x75\x5c\x53\x09\x2d\xcc\xbf\x4f\xad\x67\xfa\xf9\xf7\xcc\xee" "\x17\xcf\x8f\x0f\xde\x32\x25\xad\xc1\x86\x79\xab\xec\xf1\xeb\x4a\x67\xcc" "\x9a\xdd\xef\x90\xc9\xb7\x32\x1e\x21\xaf\x7f\x64\xe7\xc5\xe2\xfd\x1c\x03" "\x0b\xc3\x9a\x89\xfa\x5a\xec\x1f\xd9\xfb\x68\xe2\x71\xc8\xde\x47\x13\xeb" "\x39\x2e\x73\xe2\x6c\xed\x7e\x95\xae\x90\xbd\x8f\x66\xb6\xfd\x23\xa6\x3d" "\x4d\xff\x98\x48\xb9\xf8\xf3\x8d\xa9\xc7\x2f\x4c\xd3\xbe\x07\x8f\x5f\xf3" "\x68\xd9\xe3\x37\x83\xe3\x5d\x1d\xdf\x7e\xae\x3f\x9f\x6d\x3e\x6f\xd8\x55" "\x18\xbf\x61\xde\xb0\xe9\x29\xad\x95\x79\xc3\xa7\x17\x4e\x73\xbe\x6c\x79" "\xde\x70\x6e\x3f\x0f\x3b\x52\xe6\x25\xa7\xc4\x3f\x44\xf3\x92\xc9\xc1\x5f" "\x59\x87\xe5\xbc\x61\x2c\x8f\xfb\x51\x69\x71\x3e\xf1\x43\x39\xe5\xb5\x77" "\xed\xce\xfa\x7a\xc3\x7c\xe2\xc2\x10\x5a\x9f\x4f\x8c\xa7\x8b\x98\xd7\xfe" "\x69\x72\x39\x14\xcc\x27\x02\x6f\x56\x71\xfc\x1f\x7f\x47\x8c\x8f\xff\xc7" "\x2f\xc0\xff\x6f\x66\xbb\xa2\xeb\xd0\xec\x55\x63\x8c\x97\x7b\x9f\x50\xb9" "\x79\x3e\x45\xe3\x8e\xa9\xf7\xe9\xf5\xb4\xf5\x7b\x7c\xdd\xee\xad\x9f\xeb" "\x1e\x38\x70\x4a\xee\x75\xce\x9e\x56\xef\xfb\xd9\x3a\x69\xad\xa7\xe0\xbe" "\x9f\xa2\x76\x5c\x91\x59\x2f\x6c\xc7\x9c\x09\x9a\xa2\xf1\x5e\xb6\x9e\xa2" "\x76\xcf\xde\x97\xd1\x1b\xfa\xda\x6a\xf7\x7b\x77\xde\xf5\xee\x7b\x16\xdd" "\x76\x6e\x6e\xbb\xaf\xa9\xfd\x22\x2d\x6e\xf7\x2f\x4e\x5a\xeb\x2b\x68\xf7" "\x37\x66\xbc\x50\x1c\xff\xb0\xb9\xcf\xa0\xdb\x78\xa1\x69\xfc\x23\xe4\x3e" "\x86\xa2\xf9\xb3\x37\xec\x3e\x86\xf4\xc6\xa7\xb9\x1a\x8f\x7c\x30\xa7\x7c" "\xa6\xf7\x37\xf4\x4c\x79\x50\xdf\xaf\x09\x47\xdc\x78\xa4\xeb\xd0\xe6\x05" "\x00\x1c\x39\xe2\xf8\xbf\xfe\xf9\x59\x3a\xfe\xff\x9f\x71\x83\xf4\x3a\xa2" "\x68\xdc\x7a\x6a\x66\x3d\xc6\xcb\x1d\xb7\xe6\x5c\x9f\xe4\x8d\x5b\xff\x2d" "\x5d\x5e\x93\xd9\xbe\x37\xfd\x17\x15\x33\xbd\x6e\x3e\xff\xe4\x87\x6f\x5a" "\x70\xe0\xa1\x13\x72\xc7\x2d\x77\xb7\x3a\x0e\xfd\x4f\x93\xd6\xfa\x0b\xc7" "\xa1\xb3\x1b\x37\xe7\x8e\x23\xd6\x74\xe6\x7e\xf1\xdc\x71\x44\x7d\x9c\x35" "\xbb\x71\x62\x6e\xfe\xf5\x71\xe2\xec\xc6\xe9\xb9\xf1\xeb\xe3\xf4\xd9\x8d" "\xa3\x73\xdb\xa7\xfe\xb9\xdb\xec\xe6\x01\x72\xe3\xd7\xe7\x01\x8e\xf4\x71" "\x6e\xc1\x7c\x5d\xa6\xb2\xb8\xda\xea\x7c\xdd\x9b\x76\x1c\x9d\xfe\xf3\xd9" "\xb9\x1a\x47\x5f\x98\x53\x3e\xd3\x71\x74\xef\x94\x07\xf5\xfd\x9a\x60\x1c" "\x0d\x00\xf0\xc6\x8a\xe3\xff\x78\x19\x17\xc7\xff\x8f\x67\xb6\x9b\xed\xe7" "\xec\xb9\xe3\x82\x0e\x5d\xb7\x67\xff\x1e\x48\x3d\xfe\xd3\x87\x6a\x5c\x39" "\xd7\xe3\xbe\xb9\x1e\xb7\xce\xf5\xb8\x7e\xae\xe7\x25\x8e\xf4\x71\xf1\x5c" "\xcf\x0b\xcd\xed\x3c\xd9\x5b\x7e\x5c\x9c\x56\x6a\x5c\x0c\x00\xc0\xe1\x2c" "\x8e\xff\xe3\xdf\xef\xca\x1f\xff\xcf\x6e\x7c\xd2\x6c\xfc\xd6\x35\x69\x7c" "\x62\x7c\xde\x34\xbe\xf1\xf9\x61\x32\x3e\x3f\xd2\xe7\xbf\x8c\xff\x7d\x2e" "\x5e\xcc\xf8\x1f\x00\xe0\xcd\x2d\x8e\xff\xe3\x3f\x7b\x8c\x7f\xff\xef\x3f" "\xa7\xeb\xd9\xbf\x5b\x6f\x9c\x9e\x13\xff\x50\x8c\xd3\xbb\x8c\xd3\xdf\xfc" "\xe3\xf4\xce\xcf\xb3\x85\xce\xdf\x07\xf0\xfd\x29\xf1\xcd\x03\x4c\x68\x3a" "\x0f\xd0\xf0\xe5\x08\xe6\x01\x00\x00\x78\x23\x74\x4d\x8c\x94\xa6\xfe\x3b" "\xfb\x8f\xa4\xcb\xec\xbf\xb3\xcf\xfb\x77\xf9\x17\xe7\x6c\xdf\xaa\x4a\x7a" "\x79\x7c\xd9\xe8\xb6\x91\x91\x4b\xae\xda\xba\x7e\x78\x74\xe4\x92\x2d\x57" "\xae\x1f\xd9\x7e\xc9\xd5\xdb\x36\x8e\x8e\x8e\x6c\xa9\x6d\x37\xdb\x71\x63" "\xee\xe7\x97\xe9\xb8\xb1\x2b\x54\xd2\xf6\x68\xbe\x5d\x76\xdc\xb6\x28\xfd" "\x7b\x08\x8b\x72\xfe\x1e\x42\x76\xfb\x18\xf6\xf8\x89\x07\x53\xff\x1e\x42" "\xb6\xda\xf9\x05\x7f\x47\xe0\xe0\xf1\x6b\x2d\xdf\xbc\xe3\x57\x9a\x66\xfb" "\x66\xfd\x23\xef\x78\xe7\xc5\xff\x70\xce\xf6\x51\xfd\xf8\x5f\xfe\xb1\xd3" "\x2f\xd9\xb0\xfd\x92\x8d\x5b\x36\x8e\x6e\x1c\xde\xb4\x71\xc7\xc8\xe4\xed" "\xc6\x47\xad\x3d\x33\xf8\xde\xcc\xd8\x2c\x33\xfa\xbe\xd4\xcc\x8f\x29\x4a" "\x33\xff\xfe\xce\xce\xe4\x51\x9a\x92\x47\x57\xda\x1e\x79\xdf\xcf\x9e\x64" "\xf2\x58\x9c\x66\xb2\x38\xef\xfb\x0f\x72\xf2\xfe\xd9\x7f\xfd\xc2\x27\x4f" "\x1e\xfb\xf3\x7d\x21\x0c\x1d\x53\x7e\xfb\xac\xda\x2f\x59\x3d\xf6\xfd\x8b" "\x46\xfe\x6d\x74\xdf\xaf\xb6\x8e\xe7\x5f\x9a\x36\xff\xfa\x96\x69\x5e\xd3" "\x7f\x5f\x69\xfc\x63\xa2\x07\xb7\x8f\xfb\x53\xd9\x74\xe5\xf6\xd1\xd3\x36" "\x5c\x79\xd5\x96\xec\x37\x4a\xb6\x27\xce\x67\x94\xea\xeb\x73\x34\x9f\x91" "\xee\x52\xb9\xc5\xf9\x89\x75\x39\xe5\x33\xbd\x4f\xa1\x3c\xe5\xc1\xe1\xa9" "\xe5\xf9\x09\x00\x00\x26\x89\x9f\xff\xc7\xeb\xd9\xf8\xf9\xe1\xe7\xd3\x0b" "\xa8\x58\xde\xfa\x38\x7d\x76\x9f\x1f\xe7\x8e\xd3\x87\x5a\x1b\xa7\x67\xbf" "\x97\xac\x68\x9c\x9e\xdd\x3e\xee\x6f\xab\xe3\xf4\xea\x2c\xc7\xe9\xd9\xfa" "\x8b\xc6\xe9\xcd\xb6\x6f\x36\x4e\xcf\x1b\x77\xe7\xc5\xff\x60\xce\xf6\x33" "\xd5\x7a\x3f\x99\xdd\x7d\x1e\xb9\xfd\xe4\xd2\xd6\xfa\x49\xf6\xfb\x0c\x8a" "\xfa\x49\x76\xfb\x99\xf6\x93\x64\x96\xfd\x24\x5b\x7f\x51\x3f\x69\xb6\x7d" "\xb3\x7e\x92\x77\xdc\xf3\xe2\x7f\x20\x67\xfb\x3c\x85\xfd\x21\x4d\x78\xb6" "\xf7\xe5\xe4\xf6\x87\x3b\xa7\xed\x0f\xf5\x69\xaf\xbf\xcd\xbc\xae\xa8\x3f" "\x64\xb7\x9f\x69\x7f\x28\xcd\xb2\x3f\x64\xeb\x2f\xea\x0f\xcd\xb6\x6f\xd6" "\x1f\xf2\x8e\x6f\x5e\xfc\x0b\x72\xb6\x6f\xd5\xe4\xfe\x31\xde\x31\x26\xfa" "\xc5\xc8\x25\x57\x5f\xb9\xed\x13\x0d\xdb\xcd\xf5\xf7\x5f\xcc\x3e\xbf\xb9" "\xfd\xfe\x8f\x76\xb5\x9e\xff\xdc\xde\xf7\x35\xf7\xf9\xcf\xed\x7d\x65\x73" "\x9f\x7f\x6f\x6e\x45\xd3\xf6\xef\xf4\xbe\xb2\xdc\xfc\x9f\x9e\xdd\x4c\x58" "\xeb\xf9\xcf\xed\xf7\xbb\xb4\xeb\x90\xcd\xd7\xa6\x37\x9b\x15\xdd\x7f\x56" "\x34\x8f\xbb\x36\xa7\x7c\xa6\xf3\xb8\xf3\xa6\x3c\x38\x3c\xb5\x32\x8f\xdb" "\xec\x79\x60\xf6\xe2\xf8\x3f\x7e\xdc\x13\xc7\xff\xb7\xa5\xcb\x4e\x7f\x0c" "\x74\xc4\x7f\x4f\x9a\xef\x31\x6b\x1e\xbf\x43\xdf\x63\x56\x74\x1d\xe3\xf7" "\x79\xba\x3c\x4c\x7f\x29\xfa\x5c\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x35\xdd\x95\xa5\x13\xcb\x7d\x37" "\x6f\x3f\x70\xc1\x71\xff\xf2\xb3\xcf\x8c\xbc\x76\xc3\xbf\xfe\x68\xf3\x8d" "\x7f\x73\xdd\xb7\x7f\x37\x78\xf9\x3f\xfd\xf4\xfe\x9e\x6f\xbd\xbe\x77\xfd" "\x89\x1b\x7e\xfd\xcf\x47\x5d\xfe\xf0\xc7\xcf\xdd\x7d\xd7\xd7\x1e\x7d\xb5" "\xef\xc1\xbf\xbc\x50\x18\xb8\x7f\xe2\x67\xe5\xd4\x74\xb5\x1a\x42\xf2\x52" "\x12\x42\xf5\xc7\xfb\xbf\xf4\xd9\xbd\x4f\x1e\x3b\x5e\x96\x84\x10\xca\x49" "\xff\xce\x10\x16\x27\x4b\x1e\x5d\x9c\x64\x22\x0c\xfd\x29\x84\xb0\xbe\x9e" "\xe7\xe4\x27\x1f\x78\xed\x8c\x0d\xe3\xcb\x1b\x6f\xeb\x9e\x54\xbe\x28\x13" "\x24\xbb\x5f\xa1\xb7\x1c\xf3\x69\xcc\x33\x84\x6b\x0a\xf7\x88\x23\x50\x35" "\xed\x67\x3b\x0e\x5c\x7d\x5a\xf8\xcd\x3f\xae\xbd\xe9\x17\xcb\xbe\xf7\xdd" "\xae\x5d\x2f\xee\x3c\xb8\x49\x52\x6d\xe8\x4f\x21\x2c\xbc\xb4\xf1\xf5\x5d" "\x21\x84\xf9\xe9\xff\xe3\x62\x6f\x5b\x1a\x5f\x9c\x2e\xd7\x84\x10\x7a\x1a" "\x5e\x77\x4e\x41\x5e\x27\xb5\x98\xff\xca\x9c\xf5\xe3\xd3\xe5\xbc\x74\xd9" "\x5b\x10\x27\x3e\xbf\x3c\xb3\x5e\xca\x6c\x97\x5d\x8f\xba\x32\xcb\x9e\x82" "\xfa\x66\x2b\x2f\x8f\x76\xb7\x2b\xb2\x20\xb3\x9e\x3d\x19\xd5\x54\xda\x8e" "\x9f\x97\x67\x2c\x5f\x9c\x2e\x7f\x98\x2e\x4f\x9d\x61\xfc\x72\xfc\x3f\x09" "\xa5\x24\x54\xea\xe9\x6f\x4a\x0e\xf6\x91\xd0\x70\xdc\x92\x90\x4c\x1c\xcb" "\x6a\x7d\xbd\x54\x3f\xb6\x21\xdd\xff\xcc\x7a\x92\x59\x2f\x65\xd6\xcb\x5d" "\x99\xfd\x9a\xa8\x37\xed\x68\xe5\x24\x99\x5c\x1e\xb7\xcb\x94\xc7\xd3\x71" "\x25\x2d\x3f\x71\x22\xc7\x72\xee\x7e\x5f\x98\x53\xfe\xb6\x74\x59\x4d\xdf" "\xa8\xaf\xc7\xf5\x90\x7d\x50\xd3\x3b\xe5\x41\x7d\xbf\x26\xc4\xbc\xf6\xe7" "\x66\x72\x68\x94\x1a\xce\x41\xcd\xca\xeb\x07\x3e\x3d\x18\xbd\x69\x59\x6f" "\xb2\x64\xca\x6b\xc6\x9a\x88\xcf\xed\x5d\x7b\xfb\x8a\xf2\xba\xc7\xf6\xf5" "\xe7\xe4\x91\xdc\x9f\xa4\xf1\x93\xb6\xe2\xef\xf8\xf9\xe2\x05\x1f\xfd\xce" "\xad\x57\x2d\xcd\x8b\x7f\x69\x29\x8d\x5f\x6a\x2b\xfe\xf3\xe7\x3d\xf5\xf2" "\xc5\xb7\x7e\xf3\xab\xb9\xf1\xef\x8c\xf1\xcb\x6d\xc5\x3f\xfd\x91\x9e\x97" "\xce\x7b\xfc\xe6\xe5\xb9\xed\xb3\x3f\xb6\x4f\xa5\xad\xf8\xc3\x2f\x3c\x71" "\xc7\xb2\xa3\x2f\xdb\x95\x9b\xff\xdd\xb5\xf8\xcf\x84\x6a\x5b\xf1\x57\xef" "\x7e\xaa\xbb\xef\xc0\x23\x7b\x72\xf3\x1f\x8a\xed\x33\x3f\x2f\x7e\x57\xb3" "\x2a\xe2\x93\xcf\xbd\xe7\x7d\xbf\xbd\xef\x99\x87\x5e\xcc\x8d\x1f\x62\xfc" "\x9e\xb6\xf2\x5f\xb7\x7b\xeb\xe7\xba\x07\x0e\x9c\x92\x1b\x7f\x4f\x6c\xff" "\xde\xf6\xfa\xcf\x2b\xbb\xce\x7e\x76\x60\xe0\xf7\x83\x79\xf1\x9f\x8e\xf1" "\xfb\xda\x8a\x7f\xef\xce\xbb\xde\x7d\xcf\xa2\xdb\xce\xcd\x3d\xbe\x6b\x62" "\xfb\xf4\xb7\x15\xff\xfc\x93\x1f\xbe\x69\xc1\x81\x87\x4e\xa8\xe6\xc5\xbf" "\xbb\x53\xbf\x39\x01\xde\x9a\x8e\x4a\xaf\xb1\x6e\x49\xd7\xdb\x1d\x67\xce" "\x56\xc3\x78\xe1\x2b\x83\x95\xda\x35\xdf\x82\xf4\xff\xbe\x4e\x56\x94\x31" "\x5e\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\x9b\xd3\x2f\xaf\x3f\xf3\x23" "\x17\xbd\xf7\x03\x6b\x2b\x49\x08\x49\xce\x36\x63\x4d\x84\x30\x6f\xe2\xb9" "\xf2\xbc\xd5\xab\x07\xdb\xa8\x77\xf8\x85\x27\xee\x58\x76\xf4\x65\xbb\x1a" "\xcb\x96\xb6\xb3\x03\x00\x00\x00\x40\xa1\x38\x0e\x2f\xd5\x4b\xaa\x61\x69" "\xb8\x3a\x99\x1f\x8e\x6f\xba\x7d\x9c\x23\x38\x3e\xae\x25\x93\xcb\xb3\x73" "\x08\x31\x4e\x76\x8e\xa0\xdd\x38\xa5\x0e\xc5\x29\x77\x28\x4e\xa5\x43\x71" "\xba\xa6\xc6\x19\x6b\x27\xce\xbc\x0e\xe5\xd3\xdd\xa1\x38\xd5\x82\x38\xd5" "\xd0\x5a\x9c\xf9\xd3\xc4\xa9\x8c\xf7\x8a\x16\xf3\xe9\x99\x36\x9f\xd6\xe3" "\xf4\x76\x28\xce\x82\x0e\xc5\xe9\xeb\x50\x9c\x85\x1d\x8a\xb3\xa8\x43\x71" "\xfa\xa7\x8d\xd3\x7a\x3f\x5c\xdc\xa1\x38\x4b\x3a\x14\xe7\xa8\x0e\xc5\x39" "\xba\x43\x71\x8e\xe9\x50\x9c\xbf\x6a\x23\xce\xbc\x26\x71\x8e\xed\x50\x3e" "\xd9\x39\xe5\x99\xf6\xc3\xbe\x74\xcb\xe3\xf2\xe2\x4c\x3c\x28\x17\xc6\xa9" "\x24\xe5\xfa\x13\xcd\xe6\xd3\x8f\x4d\xeb\x39\x61\x96\xf5\xf4\x16\xd4\xd3" "\x57\xf4\xfb\xb8\xc5\x7a\xe6\xb7\x58\xcf\x49\x99\xd7\x95\x66\x58\x4f\xb5" "\xc5\x7a\xfe\x7a\x96\xf5\x24\x2d\xd6\xf3\xb7\xb3\xac\xa7\x54\x50\x4f\xec" "\xb7\xd7\x64\xf3\x8b\xf5\xc4\xb5\x16\xfb\xff\xb5\x8d\x85\x47\x17\xc7\xf9" "\xc3\xc0\xe8\xe5\xcd\xe2\xec\xe8\x50\x3e\xd7\x75\x28\xce\xf5\x1d\x8a\xf3" "\xa9\x0e\xc5\xf9\x74\x87\xe2\xdc\x30\xcb\x38\x00\xad\x8a\xe3\xff\xda\x78" "\x2f\x5e\x89\xfd\x7d\xe8\x49\xcf\x38\xd9\x59\x80\x38\xde\x5d\x36\xf1\x73" "\xea\xef\xbb\xbc\x13\x52\x8c\xf7\xf6\x4c\xf9\xbc\xa2\x78\xd9\x81\x7a\x26" "\xde\xb2\x99\xe6\x97\x9d\x40\xc8\xc4\x5b\x9e\x29\xef\x9a\x14\xaf\x52\x1f" "\x8f\x4c\x13\xaf\xda\x18\x6f\x45\x28\x4d\x4a\xb1\x70\x7f\xb3\x13\x0a\x99" "\xfc\x4e\xcd\x94\x77\x17\xc5\xcb\x4e\x2c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x1c\xfa\xe5\xf5\x67\x7e\xe4\xa2\xf7\x7e\x60\x6d\x48\xc2\xf8" "\x7f\x4d\x8d\x35\x11\x9f\x2b\xcf\x5b\xbd\x7a\xb0\x8d\x7a\xf7\xae\xbd\x7d" "\x45\x79\xdd\x63\xfb\x1a\xcb\xba\x2b\x6d\x04\x02\x00\x00\x00\x0a\xc5\x71" "\x78\x57\xbd\xa4\x1a\xba\x2b\xab\x42\x77\x32\x6f\xd2\x76\xd5\x30\x7f\xd2" "\x7a\xb9\xbf\xb6\x1c\x58\x18\xd6\x8c\x2f\x93\xc1\xd2\xc4\x7a\x4f\xb2\x38" "\xf3\xba\xda\xfc\x41\x35\x5d\xaf\xa4\xaf\x5b\x39\xba\x79\xeb\xca\xed\xd7" "\xee\x78\xc7\xc6\xcd\xc3\x57\x8c\x5c\x31\xb2\xe5\x5d\xab\xce\x5c\x75\xf6" "\xd0\x59\x67\x9f\xb5\x72\xc3\xc6\x4d\x23\x43\xb5\x9f\x21\x74\x17\xc4\x0b" "\x21\x4c\x4c\x3f\x6c\xbf\x76\xc7\x27\x86\x37\x6d\x1a\xd9\xb6\xbd\x56\x98" "\xcd\x7f\x69\xfa\xba\xa5\xe9\x7a\x92\xbe\x6e\xe0\x9d\x61\x68\x7c\x79\x63" "\x9a\xff\x92\x82\xfa\x4a\x53\xea\x1b\x7f\xb0\xe7\xb4\xf4\x41\xbd\xa4\x13" "\x0f\xa6\x3b\x6e\x00\x00\x00\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\xee" "\x42\xe4\x3a\xcb\x38\x80\xbf\x67\x66\x76\x66\xb2\x6d\xcc\x4a\xbf\xa6\xa1" "\xd9\x0c\xf9\x28\x51\x8b\x26\x71\x2b\xa9\x96\xee\x01\xc1\x42\x9b\x84\x2c" "\x05\x99\xa9\xae\x25\xd8\x04\x8b\x9b\x26\xb4\x49\x89\x75\x6c\x03\xb6\x35" "\x41\x11\x5a\x02\x21\x92\x0b\x23\xb1\xd8\x5a\xbc\xe9\x87\x2d\x62\x3f\x08" "\x44\x6a\x34\xe0\xc6\x20\x6d\xd1\x5e\xe8\x85\xd2\x6a\x25\x2d\x01\x25\x65" "\x24\x3b\x73\xe6\x6b\x67\x32\xdb\xb1\xb8\xa6\xfd\xfd\x2e\xce\x39\xf3\x9e" "\xe7\x7d\x9f\xf3\xce\xc5\xc2\xff\xec\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\x61\xba\x32" "\x36\x59\x1a\x9f\x28\x0f\x47\x21\x44\x3d\x6a\xaa\x5d\x24\xf7\xd2\xd9\x38" "\x2e\x0e\xd0\xf7\xcb\xcf\xed\xf8\x7e\x6e\xf4\xcc\xaa\xd6\xb1\x5c\x66\x80" "\x85\x00\x00\x00\x80\xbe\x92\x1c\x3e\xd4\x18\xc9\x87\x5c\x26\x1d\xd2\xe1" "\xca\x99\x4f\xcb\x42\xcb\x8d\xd0\xcc\xfd\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\xcf\x74\x65\x6c\xb2\x34\x3e\x51\xbe\x28" "\x0a\x21\xaa\x0d\xa5\x3a\x6b\xaa\x5d\x24\xf7\xd2\xd9\x38\x2e\x0e\xd0\xf7" "\xf5\xb7\x9f\xf8\xcc\x2b\xa3\xa3\x7f\x6d\x1d\x2b\x74\xa9\xcb\x0d\xb0\x36" "\x00\x00\x00\xd0\x2e\xc9\xe1\xcd\xd0\x9f\x0f\x85\xb0\x3c\x0c\x45\x57\xb6" "\xd5\xd5\xdf\x0d\x84\xc5\x1d\xf3\x3b\xeb\x92\x75\x96\xcc\xb1\xae\xf3\xdd" "\x41\xaf\xba\xe5\x73\xac\xbb\x7a\x8e\x75\x1f\xeb\x53\xb7\xb1\x7e\xde\x1d" "\x00\x00\x00\xe0\xc2\x97\xe4\xff\x4c\x63\x64\x24\xe4\x32\x0b\x7b\xe6\xff" "\x7e\xb9\x3e\xa9\x5b\xda\x51\x97\xae\x9f\x07\xf9\xad\x00\x00\x00\x00\xf0" "\xdf\x49\xf2\x7f\xf3\x77\xf6\x85\x90\xcb\x14\x1a\x79\x7d\xae\x79\x7f\x59" "\x47\x5d\x32\xbf\xdf\xff\xed\x93\xf9\x2b\x7b\xcc\xef\xf7\xff\xfc\x0d\xf5" "\xb3\xff\xd3\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x85\x63\xba\x32\x36\x59\x1a" "\x9f\x28\xa7\xa3\x10\xa2\x1e\x35\xd5\x2e\x92\x7b\xe9\x6c\x1c\x17\x07\xe8" "\xbb\xf6\xf9\xe1\xbf\xdf\x7c\x34\xdf\x36\x96\xcb\x0c\xb0\x10\x00\x00\x00" "\xd0\x57\x2d\x87\x3f\xb8\xac\x19\xbd\xf3\x21\x97\x19\x0e\x43\xe1\xa2\x99" "\xdc\x3f\x7a\xe3\xa1\xa7\xbe\xf8\xd4\x33\x63\x21\x84\x5a\xcc\xcf\x66\xc3" "\xee\xcd\x3b\x77\xde\xb5\xb6\x76\x4c\xea\xd6\x1c\x3f\x3a\xf4\xbd\x63\x6f" "\x7e\x6b\x56\xdd\x9a\xda\x71\xde\x36\x08\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xbc\x6f\xa6\x2b\x63\x93\xa5\xf1\x89\xf2\x82\x28" "\x84\xa8\x47\x4d\xb5\x8b\xe4\x5e\x3a\x1b\xc7\xc5\x01\xfa\xbe\xf6\xb9\x2f" "\xfc\xf9\xb1\x53\xcf\xbe\xd1\x3a\x56\x18\x60\x1d\x00\x00\x00\xa0\xbf\x24" "\x87\x37\xb3\x7f\x3e\x14\x42\x36\x64\xc3\xe5\x33\x9f\x5a\xb3\xfe\x39\xa9" "\x8e\xf9\xbd\xde\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x1c\x77\x7f\xe3\xde\xaf\x6f\x9e\x9a\xda\x72\x97\x0b\x17" "\x2e\x5c\x34\x2e\xe6\xfb\x2f\x13\x00\x00\xf0\x7e\x5b\x1a\xa2\x50\x7d\x8f" "\xae\xd8\x34\xdf\x4f\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfc\x3f\x98\xae\x8c\x4d\x96\xc6\x27\xca\xf9\x28\x84\xa8\x47\x4d" "\xb5\x8b\xe4\x5e\x3a\x1b\xc7\xc5\x01\xfa\xc6\xcf\x9d\xc8\x2d\x3c\xf3\xfc" "\x8b\xad\x63\x85\x01\xd6\x01\x00\x00\x00\xfa\x4b\x72\x78\x33\xfb\xe7\x43" "\x21\x0c\x85\xa1\x70\xd9\xcc\xa7\x6e\xef\x04\x66\xf2\xff\xc8\xff\xf0\x21" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xf9\xb7" "\xa0\x79\x39\x5d\x19\x9b\x2c\x8d\x4f\x94\x17\x46\x21\x44\x3d\xca\xab\x5d" "\x24\xf7\xd2\xd9\x38\x2e\x0e\xf0\x08\x8f\xee\x39\xf8\xd9\x23\x8b\xbe\x7b" "\x53\xeb\x58\x2e\x33\xc0\x42\x00\x00\x00\x40\x5f\x49\x0e\xcf\x36\x46\xf2" "\x21\x97\xf9\x78\xc8\x85\xab\xea\x9f\xa7\xda\x27\x44\xe9\xfa\xb9\xfb\x7b" "\x81\xe6\xbc\x1d\x6d\xd3\x86\xe7\x3c\xaf\xd2\x36\x2f\x3d\xe7\x79\x7b\x3b" "\x76\x96\xa9\xef\xa6\x36\x2f\x9f\xac\x37\x52\x3b\x37\xe6\x15\x67\xcf\x2b" "\xb6\xcc\x2b\x84\x46\xfb\x62\xdb\xbc\xb0\xbf\x6d\xd6\xc2\x3e\xcf\x19\x00" "\x00\x00\x60\x1e\x25\xf9\x3f\xd7\x18\x19\x09\xb9\x4c\xae\x25\xe7\xfe\xa4" "\xad\x7e\x44\xce\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x98\xae" "\x8c\x4d\x96\xc6\x27\xca\x51\x14\x42\xd4\xa3\xa6\xda\x45\x72\x2f\x9d\x8d" "\xe3\x62\x08\x51\xaf\xb9\xbd\xdc\xfb\x9b\x8f\x5e\xfc\x95\x9f\xee\xdb\xd5" "\x3a\x56\x18\x68\x07\x00\x00\x00\x40\x3f\x49\x0e\x6f\xe6\xf7\x7c\x28\x84" "\x25\xe1\x23\x61\xc9\x4c\xee\x0f\x23\xed\xf5\x49\xdd\x3f\x4a\x67\x8f\x3c" "\xf2\xcf\xbf\xac\x0a\x61\xf5\xe5\x27\x47\x33\x9d\xcb\xfe\x30\xb9\xf8\xd5" "\x6b\x37\xbc\xd0\x79\x08\x21\xd5\x5e\x9d\x0a\x61\x51\xbd\x5f\xd4\xa3\xdf" "\xaf\x7f\xf7\xc8\x3d\x2b\xaa\x67\x1f\x0b\x61\xf5\x65\xe9\xab\x66\xf5\x0b" "\xe7\xef\xd7\x74\xae\x47\x5c\x7d\xba\xb4\x65\xc3\xce\x63\x27\x77\xf4\xff" "\x7e\x66\x3f\x2c\x00\x00\x00\x5c\x78\x92\xfc\x3f\xd4\x18\x19\x09\xb9\xcc" "\x9d\x3d\xf3\x7f\x92\xbc\xfb\xe4\xff\x86\x99\x00\xbe\xe8\x9e\x3d\x3f\xbf" "\xb4\x7e\xac\x27\xf2\x8e\x19\xa9\x91\x7a\xbf\x54\x8f\x7e\x9f\x5f\xf1\xc4" "\x9f\x56\xae\xfb\xdb\x9b\xe7\xf2\xff\xf9\xfa\x7d\xea\xe0\xb6\x23\x97\xb6" "\x35\xac\x8d\x74\x88\xe2\xea\xf8\xb6\x5d\x1b\x4f\x5e\x7b\x38\x95\xec\xba" "\xd6\x3f\xdd\xd1\x3f\xf9\x5e\xbe\xf4\xcd\x37\xfe\xbd\x75\xf7\xc3\x67\x6b" "\xfd\xf3\x21\x5f\x1f\x5f\x9c\xe9\xd6\x7f\xf6\xb1\xc3\x82\xb8\x3a\x95\x3a" "\x50\x5e\xff\xee\x81\x4a\x7b\xff\x4c\x8f\xfd\x3f\xf8\xdb\x17\x4f\xfd\x72" "\xf1\xbe\x77\xce\xf5\x7f\x7b\xe9\x70\xa3\xff\xd5\xe7\xd9\xff\xf9\xfb\x0f" "\xdf\xf2\xd0\xfe\xeb\x0e\x1e\xdd\xd8\xde\x3f\x84\x50\xec\xd6\xff\xad\x77" "\x6e\x0a\x57\xfc\xe1\x8e\x07\x3a\xf7\x3f\xdc\xb1\x70\xeb\x37\xdf\x7a\xec" "\x10\xc5\xd5\xe3\xcb\x4e\x1f\x5e\x77\xa8\x70\x7d\x7b\xff\xa8\xa3\x7f\xf2" "\xfd\xff\xec\xd4\xa3\xfb\x7f\xfc\xf0\x77\x9e\x49\xfa\x27\xbf\x15\x59\xb5" "\x7c\xae\xfd\x53\x1d\xfd\x5f\xde\x7b\xc9\x9e\x97\xee\xdf\xb4\xb8\xbd\x7f" "\xaa\xc7\xfe\x5f\xb8\xf5\x95\xd1\xed\xc5\x6f\xff\xbe\x73\xff\xb7\xb7\xad" "\x9a\xe9\xf9\x14\xb3\xf7\xff\xf8\x35\x4f\xde\xf6\xea\xe6\xf8\xbe\xce\x5b" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x2c\xd3\x95\xb1\xc9" "\xd2\xf8\x44\x39\x15\x85\x10\xf5\xa8\xa9\x76\x91\xdc\x4b\x67\xe3\xb8\x58" "\xbf\xce\xbf\x87\xbe\xaf\xdf\x7c\xe2\xad\x5b\xf7\xfd\xe8\x07\xad\x63\x85" "\x81\x76\x00\x00\x00\x00\xf4\x93\xe4\xf0\x66\xf6\xcf\x87\x42\xc8\x86\x6c" "\x18\x9e\xc9\xfd\x4f\x97\xb6\x6c\xd8\x79\xec\xe4\x8e\x30\x52\xbb\x1b\xd5" "\xcf\x99\xa9\xed\x77\xef\xfc\xc4\xd6\xed\xbb\xee\xbc\x7d\x9e\x9e\x1c\x00" "\x00\x00\x98\xab\x24\xff\x67\x1a\x23\x23\x21\x97\x59\x11\x86\xea\xf9\x7f" "\x7c\xdb\xae\x8d\x27\xaf\x3d\x9c\x4a\xf2\x7f\x2a\xc9\xff\x5b\xef\x98\xda" "\xb2\x3a\x34\xea\x5e\xde\x7b\xc9\x9e\x97\xee\xdf\xb4\xb8\xf1\x9e\x20\x84" "\x99\x9f\x05\xe4\xcf\xd5\x7d\xba\x59\x77\xe3\x0d\x27\x46\x4e\xff\xf1\x6b" "\x2b\xff\x55\xff\x1d\x41\x5b\xdd\xda\x66\xdd\xf1\x65\xa7\x0f\xaf\x3b\x54" "\xb8\x3e\x59\x2f\xb4\xd6\xad\x09\x8d\xf7\x13\x8f\x5f\xf3\xe4\x6d\xaf\x6e" "\x8e\xef\x6b\x3c\x5f\x6b\xdd\x27\xbf\xba\x7d\xaa\xfe\x7a\x22\x59\x77\xf8" "\x96\x87\xf6\x5f\x77\xf0\xe8\xc6\xc6\x3e\xea\xe7\xe1\xfa\xba\x49\xdd\x54" "\xea\x40\x79\xfd\xbb\x07\x2a\x49\x5d\xba\x7e\xce\xd7\xf7\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\xcc\x36\x5d\x19\x9b\x2c\x8d\x4f\x94\x43\x3a" "\x84\xa8\x47\x4d\xb5\x8b\xe4\x5e\x3a\x1b\xc7\xc5\x01\xfa\xae\x5f\xf1\x8b" "\x07\x2e\x3e\xf3\xec\x92\xd6\xb1\x5c\x66\x80\x85\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xc3\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\x76\xec\x2f\x44\xaa\x2a\x8e" "\x03\xf8\x39\x33\xb3\xed\xb8\xb3\xab\xbb\x1a\xb4\x15\xad\xab\x15\x85\x3d" "\x24\x05\x11\xf5\x52\x51\x11\x1a\x21\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\x07\xe9" "\xa1\x8d\x9d\x39\x77\x9c\xbd\xbb\xb7\xd1\x59\x09\xca\xcf\x07\x86\x33\xe7" "\xdc\x7b\xbf\xf7\x77\xef\x39\x73\x67\x67\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\xad\x0c" "\x37\xda\xc3\x3b\x1e\xad\xdf\x75\xd1\x6d\x5f\x3c\xfd\xc0\x89\xa7\xee\xf8" "\xe8\xe1\x6d\x57\x3c\xf9\xf6\x2f\xa3\x9b\x6e\xf9\x7c\x6f\xdf\x1b\x27\x27" "\x37\xaf\xd8\xf2\xfd\xad\xcb\x36\xed\x7f\x70\xcd\xc4\xee\x57\x0f\xfd\x31" "\xf0\xc1\x5f\x47\x3b\x06\x3f\xd1\x6c\x56\xa5\x6e\x35\x84\x78\x3c\x86\x50" "\xfd\x78\xea\xa5\x67\x26\xbf\xbc\x60\x66\x2c\x86\x10\xca\x71\x70\x2c\x84" "\xa1\xb8\xf4\xd0\x50\xcc\x25\xac\xfe\x33\x84\xb0\xb9\x55\xe7\xec\x8d\xef" "\x9f\xb8\x76\xcb\x4c\xbb\x6d\x57\xef\xac\xf1\x25\xb9\x90\xfc\x75\x85\x5a" "\x39\xab\xa7\x69\x70\x76\xbd\xfc\xbf\x54\xd3\x3a\xdb\x5a\x7f\xfc\xaa\xf0" "\xe3\xcd\xeb\xb7\x7f\xbd\xfc\xbd\x77\x7b\xc6\x8f\x8d\x9d\xda\x25\x56\xdb" "\xd6\x53\x08\x8b\x37\xb6\x1f\xdf\x13\x42\x58\x94\x5e\x33\xb2\xd5\x36\x9c" "\x1d\x9c\xda\x75\x21\x84\xbe\xb6\xe3\xae\xef\x50\xd7\xa5\xa7\x59\xff\xd5" "\x05\xfd\x8b\x53\x7b\x5e\x6a\x6b\x1d\x72\xb2\xed\x2b\x73\xfd\x52\x6e\xbf" "\x7c\x3f\xd3\x93\x6b\xfb\x3a\x9c\x6f\xa1\x8a\xea\xe8\x76\xbf\x4e\xfa\x73" "\xfd\xfc\xc3\x68\xa1\x8a\xea\xcc\xc6\x87\x52\xfb\x61\x6a\x57\x9d\x61\x7e" "\x39\x7b\xc5\x50\x8a\xa1\xd2\x2a\xff\xa1\x78\x6a\x8d\x84\xb6\x79\x8b\x21" "\x36\xe6\xb2\xda\xea\x97\x5a\x73\x1b\xd2\xf5\xe7\xfa\x31\xd7\x2f\xe5\xfa" "\xe5\x9e\xdc\x75\x35\xce\x9b\x16\x5a\x39\xc6\xd9\xe3\xd9\x7e\xb9\xf1\xec" "\x71\x5c\x49\xe3\x2b\xda\x9f\xd5\xf3\xb8\xbb\x60\xfc\xc2\xd4\x56\xd3\x07" "\xf5\x64\xd6\x0f\xf9\x37\x4d\xb5\x39\x6f\x5a\xd7\xd5\x90\xd5\x35\xf5\x0f" "\xb5\xfc\x1b\x4a\x6d\xcf\xa0\xf9\xc6\x5b\x13\x9f\x26\xa3\x96\xc6\x6a\x71" "\xe9\x9c\x63\xa6\xe7\xa8\x4c\x67\xdb\x26\xd7\x3f\x77\x79\x79\xc3\x27\x87" "\x07\x0b\xea\x88\x7b\x63\xca\x8f\x67\x90\x3f\xdd\xca\xdf\xfa\xd5\x50\xff" "\xbd\xef\xec\x7c\x6c\xb8\x28\x7f\x63\x29\xe5\x97\xba\xca\xff\x69\xed\x91" "\xdf\xee\xd9\xf9\xda\x2b\x85\xf9\x2f\x66\xf9\xe5\xf6\xfc\xde\xd3\xcd\xbf" "\xe6\x40\xdf\xf1\xb5\x9f\xee\x58\x59\x78\x7f\xa6\xb2\xfb\x53\xe9\xaa\xfe" "\xfb\x8e\x7e\xf6\xfc\xf2\xf3\xef\x1f\x9f\x6f\xae\x1b\xf9\x7b\xb2\xfc\x6a" "\x57\xf9\x37\x4d\x1c\xe9\x1d\xa8\x1f\x38\x58\x58\xff\xea\x52\x63\x4d\xd5" "\xc2\xa2\xae\xf2\x7f\xb8\xf1\xf6\x9f\xdf\xfa\x76\xdf\xb1\xc2\xfc\x90\xdd" "\xff\xbe\xae\xf2\x37\x4c\x3c\xf2\x42\xef\x48\xfd\xca\xc2\xfc\x83\xcd\x8f" "\x42\xad\xb1\x42\xbb\x58\x3f\xbf\x8f\x5f\xf7\xdd\xc8\xc8\xaf\xa3\x45\xf9" "\xdf\x64\xf7\x7f\x60\x9e\xfc\xd8\x31\xff\xcd\xb1\xdd\x37\xbc\xbe\x64\xd7" "\x9a\xc2\xf5\xb9\x2e\xbb\x3f\x83\x5d\xd5\x7f\xe7\x65\xfb\xb7\xf7\xd7\xf7" "\x5d\x52\xf4\xec\x8c\x7b\xce\xd6\x37\x27\xc0\xb9\x69\x59\xfa\x1b\xeb\xd9" "\xd4\xef\xf6\x77\xe6\x42\xb5\xfd\x5e\x78\x79\xb4\xd2\xfc\x06\xea\x4f\xaf" "\x81\xb3\x79\xa2\x9c\x99\xf3\x2c\x4e\xef\xf3\xff\x7b\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\x80\xbf\xd9\x81\x03\x01\x00\x00" "\x00\x00\x41\xfe\xd6\x83\x5c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x57\x01\x00\x00\xff" "\xff\x09\xeb\x2a\xe0", 22973); syz_mount_image(/*fs=*/0x200000000180, /*dir=*/0x200000000040, /*flags=MS_SYNCHRONOUS|MS_NOSUID|MS_NOEXEC|MS_NODEV*/ 0x1e, /*opts=*/0x200000000000, /*chdir=*/7, /*size=*/0x59bd, /*img=*/0x200000005b80); syscall(__NR_socket, /*domain=*/0x11ul, /*type=SOCK_RAW*/ 3ul, /*proto=*/0x300); memcpy((void*)0x200000000240, "/dev/kvm\000", 9); syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000240ul, /*flags=*/0, /*mode=*/0); syscall(__NR_socket, /*domain=*/1ul, /*type=SOCK_SEQPACKET*/ 5ul, /*proto=*/0); memcpy((void*)0x200000000000, "/dev/vbi#\000", 10); syz_open_dev(/*dev=*/0x200000000000, /*id=*/1, /*flags=*/2); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }