// https://syzkaller.appspot.com/bug?id=33a2cb582789f45eb473c8fa235e3dfa2453e1b8 // 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; } //% 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x200000c0, "btrfs\000", 6); memcpy((void*)0x200001c0, "./bus\000", 6); memcpy( (void*)0x20005b00, "\x78\x9c\xec\xdd\x7d\x6c\x55\x67\x1d\x07\xf0\x73\x7b\x29\xe5\x25\xa1\x65" "\xca\x32\xd4\x85\xf9\x0f\x4e\x10\xa9\x98\x58\x84\xa0\x45\x60\x02\x83\xd1" "\x81\x26\xc3\xc0\x28\x0e\xd8\x10\x06\x85\x04\x61\x63\xd3\x8e\x39\x9d\x23" "\x93\x86\x39\xc6\x8a\x2f\x0c\xa4\x02\xc6\xae\xbe\xac\x98\x98\x21\xba\x88" "\x71\x4e\x26\x8b\xc3\x86\x11\x79\xc9\x22\xe2\x02\x2b\x8c\xa8\x24\xd3\x99" "\xde\x7b\x9f\xcb\xbd\xe7\xd2\xf6\x0e\xe7\x3a\xb7\xcf\x87\xb4\xe7\x3e\xf7" "\x77\x9e\xe7\x3c\xf7\xe4\xfc\x71\xbf\x97\x3e\xe7\x46\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x10\x45\xd1\xc1\xe5\x0b\xfe\xb6\xee\x07\xcb\xbf\xf9\xd0" "\x75\x27\xa7\x6c\xbc\xff\xcc\x03\x27\x6a\x9e\x7b\x7c\xd3\xf8\xbb\xe7\xec" "\x1e\x75\xf8\x81\x55\x57\xb6\x9d\x6e\x6a\x2a\x7d\xf5\xf9\xb3\x37\x2c\xba" "\xef\xe1\xaa\xa1\x27\xf6\xcc\x3f\x14\x45\x89\x54\xbf\x44\xa6\xff\xbc\x4f" "\x4d\x9e\xb9\x68\xd6\xbc\xe9\x7d\xc2\x80\xb5\x37\xa6\xb7\x15\x15\x9d\x1d" "\x32\xdd\xf5\x58\xba\xd1\x3b\xef\xc9\x8e\x7e\xf9\x3f\xf3\xa3\x28\x2a\x8d" "\x0d\x90\xcc\x6c\x27\xf5\xcf\x69\x27\xe2\x07\x88\x56\x16\x0e\xd8\xa5\xed" "\x55\x63\x56\x0d\xdc\x38\x71\xda\xe6\xb2\xc9\x83\x16\x26\xeb\x1a\x0b\x5f" "\x3a\x1d\xfa\xf4\xf4\x04\x7a\x4a\xe6\xba\x7a\xf1\xe2\xb5\x54\x9d\xfa\x5d" "\x12\xdb\x23\xdb\xce\xb9\xf4\x12\x79\x97\x68\xba\x7f\xfc\x82\x7b\x53\x5e" "\x04\x00\xf0\xba\x54\xd6\xa4\x36\xd9\xb7\xa3\x99\xb7\xb8\xd9\x76\x7d\xbc" "\x1e\x6b\x57\xc7\xda\x0d\xb1\x76\x78\x87\xd0\x90\xdb\xb8\x1c\xe9\x71\x7b" "\x77\x36\xcf\x6b\xe2\xf5\x1e\x9a\x67\x75\x3a\x2a\x94\x75\x3a\xcf\x58\x3d" "\x73\xfe\xb3\xed\x9a\x78\xff\x58\x3b\x16\x35\x5e\xc7\x3c\xf3\x77\xcd\x44" "\x9a\x3e\x9d\xcd\xb3\x2e\x56\xef\xa9\x79\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xbc\x95\xdc\x7d\xfc\x96\xa7\x4b\x36\xfd\xe8\x7d\x4b" "\xd7\x8f\x4c\x1e\x1f\x3c\xec\x17\x5f\x6d\xda\xf2\xbd\x49\xed\xe5\x53\xbe" "\xb6\x6f\x43\xdb\xef\x5b\x9f\x7b\x4f\x53\x53\xe9\xab\xcf\x9f\xbd\x61\xd1" "\x7d\x0f\x57\x0d\x3d\xb1\x67\xfe\xa1\x28\xaa\x48\xf5\x4b\xa4\xbb\x27\xe6" "\xee\x68\xdd\xf0\xb3\x15\x53\x56\xff\x7c\xce\xa3\xcd\xe7\xde\x7b\xc7\xae" "\x64\x66\xdc\xb0\xed\x95\xb3\x73\xd4\x16\x1e\x7c\xbc\x3c\x8a\x3e\x9f\x53" "\x79\x31\x0c\x7b\x6a\x40\x14\xd5\xe4\x17\x52\xcd\xe8\xd1\xc2\xc2\xe2\xd4" "\x83\x29\xa1\x00\x00\x00\xc0\xdb\xc9\xe0\xd4\xef\x92\x6c\x3b\x1d\x07\x4b" "\xf3\xda\x89\x54\x9a\x4c\xa4\xfe\x05\xe9\xb0\xb8\xbd\x6a\xcc\xaa\x81\x1b" "\x27\x4e\xdb\x5c\x36\x79\xd0\xc2\x64\x5d\xe3\xe5\x8f\x57\xd3\xc9\x78\xd5" "\x97\x1c\x2f\xdb\xae\xb8\xf8\x93\xc8\x09\xc6\x21\xfe\xc6\xc7\xbb\x58\x0f" "\xbb\xae\x2c\x18\xa7\x6b\xf1\x11\xe3\x79\x7e\xd4\xd0\x0b\x87\x8f\x7c\x7d" "\xf9\x86\xb5\x8d\xfd\x4f\xee\xef\x3b\x30\x39\xe9\x57\x5f\xae\x1d\x7c\xc5" "\x9c\xd1\xaf\x5c\x3b\x76\xcc\x6d\x7f\x7d\x64\x47\x41\xfe\xaf\xe8\x3a\xff" "\x87\x33\x27\xff\x03\x00\x00\xf0\xdf\x90\xff\xe3\xe3\x74\xad\xbb\xfc\x3f" "\xec\xc8\xfd\x67\xee\x3a\xf5\xd3\x75\xb5\x9f\xd9\x36\xf7\xf8\xf8\x6f\xd4" "\x0e\x78\x57\xe5\x9a\x3f\x35\x7f\xf8\x73\xeb\x87\x4d\x9d\xd8\xeb\xd8\x95" "\x5b\x0a\xf2\xff\x35\x79\x87\x2c\xc8\xff\x61\xc6\x21\xff\x97\x44\x97\x97" "\xff\x01\x00\x00\xe0\xad\xec\x7f\x9d\xff\xab\x0b\xc6\xe9\x5a\x77\xf9\x7f" "\xd9\x9a\x11\x7f\x9f\x76\x61\xd6\xc4\x27\xc6\x5d\xf8\xe1\x99\x3b\x87\xfc" "\xf2\xe0\x91\x68\x6f\xfd\x88\x2f\xb4\xdc\xfe\x81\xfd\xb3\xfb\x0d\x68\xf8" "\x49\x41\xfe\xaf\x2c\x2e\xff\xf7\xca\x9d\x76\x78\xf2\x99\x30\xe1\x25\xe5" "\x51\x54\x59\xfc\x49\x05\x00\x00\x00\xf2\x84\xff\x77\xbf\xf8\xd1\x42\xc8" "\xeb\xe9\x4f\x0e\xe2\x79\x7d\xce\xf9\x83\x93\x6e\x2e\x7d\xf0\xec\x47\x66" "\x5f\x3b\x74\xdb\xd1\x21\xbb\xda\xcf\xff\x63\xc9\xf2\x4d\x17\x46\x37\xcf" "\x18\x5e\xf5\xe9\xa7\x2b\x36\x14\xe4\xff\xea\xe2\xf2\x7f\xe9\x9b\xf3\x72" "\x01\x00\x00\x80\x22\x3c\xb5\xf8\x13\x37\xed\x8c\xa6\x4f\xfa\x50\xf5\x3d" "\x87\xf7\x2f\xd8\xfe\x48\xfd\xb2\xb5\x2b\x97\x36\x96\x25\xa6\xfe\x7b\x65" "\xdb\xf5\xff\x6a\xee\x5d\x90\xff\x6b\x8a\xcb\xff\x65\x3d\xf3\x72\x00\x00" "\x00\x80\x4b\x38\xf4\xa5\x6d\xbb\x5f\x9b\xb9\xac\x75\x78\x73\xd9\xf9\xad" "\x7f\x78\xed\xcf\x8f\x5f\x3d\x7c\xf5\x81\xa6\xca\xa3\x2b\x7f\x3b\xb0\x74" "\x45\x6b\xed\xe2\x82\xfc\x5f\x5b\x5c\xfe\xef\x97\xd9\x66\x56\x3e\xa4\x3b" "\xed\x0f\x7f\x85\xf0\x50\x79\x14\xf5\xe9\x78\x50\x97\x2e\xfc\x26\x6a\xf8" "\x64\xb6\x00\x00\x00\x00\xbc\x41\x42\x4e\xff\xe7\xb1\xb6\x91\x3b\xaf\x2b" "\xfb\xf5\x53\xdf\x7f\x79\xf3\xac\xef\x7c\x7b\xd0\xde\x6f\xcd\x38\xd8\xf8" "\xdd\x09\xfd\x6f\x99\xf8\xe0\x81\x19\x07\x9e\xac\x2d\xc8\xff\x75\x5d\xdf" "\xff\x3f\xdc\xe9\x20\xac\xff\xcf\xbb\xff\x5f\xc1\xfa\xff\x9c\x42\xfa\xae" "\x7f\x63\xdd\x18\x00\x00\x00\x80\x77\xa2\xc2\xf5\xfc\xe1\xf6\xf8\xe9\x6f" "\x2e\xe8\xec\xfb\xf7\x8b\x5d\xff\x7f\xe3\x17\x5b\x5f\x3a\x7e\xfb\xfc\xaf" "\xb4\xbf\x7b\xc8\x4d\xcb\x5e\xbe\xed\x8a\x5b\x3f\x36\xfe\xd4\x1f\xa7\xdf" "\x99\xdc\x39\xee\xae\x92\xa9\x53\x5f\x3a\x5d\x90\xff\xeb\x8b\xcb\xff\xc9" "\xdc\xed\x1b\xf9\xfd\x7f\x00\x00\x00\x70\x19\xfe\xdf\xbe\xff\x6f\x76\xc1" "\x38\x5d\xeb\xee\xfe\xff\x33\x1f\xbb\xe7\x68\xfb\x5f\x5e\x18\x37\x62\x66" "\xe3\xda\x45\x27\xc7\x6f\xfc\xf1\xbc\x2d\xcf\x3c\xb6\xbb\xea\xea\x73\x0b" "\x6e\xee\xfb\xc1\x67\x97\xee\x2d\xc8\xff\x0d\xc5\xe5\xff\xb0\xed\x9f\xfb" "\xf2\xf6\x85\xf3\x73\x6f\x79\x14\x5d\xd5\xf1\x20\x73\x37\xc1\x5d\x61\xba" "\x4b\x62\x85\x96\xd2\x9c\x42\xfa\xc4\xc7\x7a\xcc\x0a\x3d\x32\x85\x96\xb2" "\x9c\x42\x4a\x5d\xac\xc7\xa8\xf2\x28\x7a\x7f\xc7\x83\xfa\x58\x61\x60\x28" "\x34\xc4\x0a\xed\x03\x32\x85\xad\xb1\xc2\xb3\xa1\x90\xb9\x1e\xb2\x85\xe6" "\x58\x61\x5f\xb8\xd2\x36\x0d\xc8\x4c\x37\x5e\xd8\x13\x0a\x99\x05\x16\x2d" "\x61\x05\x45\xff\xec\x92\x88\x58\x8f\x57\x3a\xeb\xd1\x51\xb8\x64\x8f\x17" "\xb2\x07\x07\x00\x00\x78\x47\x09\xe1\x39\x93\x65\x4b\xf3\x9b\x51\x3c\xca" "\xb6\x24\xba\xdb\xa1\x5f\x77\x3b\x94\x74\xb7\x43\xb2\xbb\x1d\x7a\xc5\x76" "\x88\xef\xd8\xd9\xf3\x51\x6d\x7e\x21\x3c\x7f\x7e\xcd\x13\xbf\xab\xfc\x68" "\xc9\x67\x0f\xdd\x7a\xc7\x84\xe1\x23\x17\xae\xbb\xb7\x61\xec\x81\xe4\xdc" "\x09\xd7\x3f\xb9\xa3\xef\xb9\x15\xa7\x47\xaf\x2e\xc8\xff\x5b\x8b\xcb\xff" "\xe1\x54\xf4\x4e\x6f\x3a\x5b\xff\x1f\x85\xf5\xff\x99\xef\x35\xcc\xae\xff" "\xaf\x0d\x85\x8a\x58\xa1\x25\x14\x6a\xe2\x77\x0c\xa8\x09\xc7\x48\x87\xdd" "\xf5\xe1\x18\x15\x35\x99\x1e\xed\x57\x65\x0b\x00\x00\x00\xf0\xb6\x16\x3e" "\x17\x48\xf6\xf0\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\x3f\xec\xdd\x7b\x9c\x54\xd5\x9d\x20\xf0\xd3\x4d\x3f\x68\x68\x9a\x16\xe3" "\x2b\x62\x6c\x75\x6d\x45\x87\xa6\x41\x51\x3f\xc1\x07\x6a\x26\x1a\x60\x4d" "\xa3\xec\xcc\xb8\xf8\x68\x84\x46\x91\x56\x10\x61\x22\xae\x51\x50\xb3\x9b" "\xc4\xc1\x28\x2a\x51\x67\x46\x61\x15\x46\x56\x71\xf0\x05\x64\x35\x01\x35" "\xa2\x89\x68\x34\x8e\x66\x46\x1d\x43\x30\xea\xb8\x3b\x7e\x14\x47\xf4\x33" "\x6b\x0c\xfb\xe9\xbe\x75\x8a\xaa\x5b\x5d\x76\x21\xa0\xb4\xf3\xfd\xfe\xd1" "\x75\xaa\x7e\xe7\x79\xeb\xd1\x75\xee\xbd\x75\x2e\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf0\x1f\xc3\xfa\xc7\x6f\x3e\xea\xef\x2e\x79\x7a\xf4" "\xa8\x0d\xf3\x06\x2c\x7f\xed\xc8\xff\xfe\x71\xfd\xe1\xcb\x16\xbd\xf7\xbf" "\xfe\xf0\xfc\x0d\x77\xec\x3b\xef\x07\xeb\x57\x2d\x59\x52\xf9\x87\x17\x37" "\x9e\x32\xf9\x7b\x37\x1d\xd9\xb8\x61\xe5\x84\x97\x42\x68\xe9\x2c\x57\x96" "\x14\x2f\x3b\x73\xf1\x8a\x1f\xad\xba\xe8\x5b\xdf\x79\xf8\x8c\x5b\xee\x7d" "\x7f\xef\xd9\x4b\xab\x32\xf5\x66\xe2\xa1\x6f\xc7\x9f\xf2\xcc\x9d\xab\x63" "\xab\xbf\xef\x17\xc2\xca\xb2\x10\x2a\xd2\x81\xc1\xb5\x49\xa0\x32\x73\xbf" "\x36\xd6\x37\xb0\x36\x84\x5d\xc2\x96\x40\xb6\x44\x5b\x9f\xa4\x44\xba\xe1" "\xf0\x44\x4d\x08\x0b\xc3\x96\x40\xb6\xaa\x9f\xd4\x84\x50\x9b\x13\x18\xf7" "\xeb\xc7\x56\xcf\xeb\x48\xdc\x58\x13\xc2\x81\x21\x84\xea\x74\x1b\xff\x5c" "\x9d\xb4\x51\x93\x0d\x6c\x4e\x12\x8d\x55\x49\xa0\x4f\xba\xc4\xb4\x8a\x24" "\xf0\xd1\xe6\x44\x36\xb0\xaa\x3c\x09\xc0\x36\x8b\x6f\x86\xec\x8b\x7e\x79" "\x4b\x7e\x86\xfa\xae\xcb\x15\x79\xfd\x55\x6e\xb7\x8e\x7d\xb1\xd2\xc3\xeb" "\x15\x13\xf5\xc5\xf3\xbd\x73\xfc\x0e\xee\x54\x8e\xaa\xf4\x03\x2d\xdb\xf4" "\xb4\x15\x54\xc7\x0e\x51\xf0\xf6\x58\xe3\xdd\xd6\x03\xde\x6d\x05\xdb\xf9" "\x3a\x4f\x5b\xee\x17\xa9\xcc\x37\x94\xcd\x5b\x42\xd5\xa1\x7c\x52\xdb\xe4" "\x09\xb3\xda\x67\xc6\x47\xca\x43\x53\x53\xaf\x62\x35\xed\xa0\xe7\xf9\xe5" "\x8d\x97\x4d\xdc\x9a\x74\x8f\x79\x1d\xc6\x0e\xd4\x6f\x97\xd7\xe1\x93\x17" "\x0e\xbc\x7b\x41\xe3\x98\xdd\x6f\x7d\x74\xc3\xe4\x37\xab\x9e\x5f\xb0\xad" "\xdd\x2c\xb6\x79\x77\xb4\xea\x90\x79\xcd\xf5\x98\xe7\x31\x1a\xe9\xf3\xa4" "\x07\xbc\xfd\x0a\xbe\x25\x35\xf8\xd2\x15\x42\xb8\xf3\xc4\x4d\xef\xfe\xfe" "\x95\xb1\xff\xf7\x37\x0f\x3f\x3b\xf8\x83\x6f\x0f\x3d\x67\xc8\x4b\xaf\x0d" "\xad\xbb\xf5\xfb\xd3\xfa\xfd\xf9\xb9\xff\xa7\xf2\xb6\xa9\x1b\x0b\xe6\xff" "\xf5\x9f\x3e\xff\x8f\x2f\xe7\x78\x5b\x9e\x97\x3b\xb6\xfa\x71\x5d\x32\x37" "\x8f\x8f\xd4\xc6\xc4\xbb\x75\xc9\xdc\x1c\x00\x00\x00\x7a\x8c\x9e\xb0\xd7" "\xf4\xad\x11\x87\xbc\x5b\xbb\xae\xe1\xd1\xfd\xbf\xb9\x62\xf2\x05\x8b\xe6" "\xbd\x71\xe6\xf9\x7f\xac\xfa\x79\xdf\x09\x87\x9c\x7c\xda\xd0\x1f\xde\x75" "\xf3\xd4\x33\x0a\xe6\xff\x0d\xa5\x1d\xff\x8f\x87\xfc\x6b\x73\x47\xbb\x26" "\x84\x91\x9d\x89\xab\xfa\x87\xb0\x67\xe7\xe3\x49\x60\x69\xec\xce\x39\xfd" "\x43\xd8\xaf\x33\xd5\x92\x1f\x38\x3e\x15\x58\x13\xc2\x5e\x9d\x89\x41\xd9" "\xaa\x52\x25\x7a\xc7\x12\x0d\xa9\xc0\x5b\x75\x99\xc0\xc8\x54\x60\x6d\x0c" "\xb4\xa4\x02\x8b\x63\xe0\xba\x54\xe0\xea\x18\x58\x9e\x0a\x4c\x8c\x81\x35" "\xa9\xc0\x09\x31\x10\xa6\xe4\x8f\xe3\x90\xba\xcc\x38\x4a\x0e\xd4\xc4\x40" "\x6b\xb2\x11\x97\xc7\xb3\x10\xfe\xad\x2e\xb6\x96\xda\x56\xaf\x64\xab\x02" "\x00\x00\xd8\x4e\x32\xb3\xc3\xca\xfc\xbb\x39\xe7\x3a\x6c\x6b\x86\x38\xbd" "\x5c\x5e\xd3\x5d\x86\x78\x06\x76\xd1\x0c\xd5\xa9\x1a\xd2\x33\xd8\xec\xb4" "\xaa\x68\x0d\x15\xdd\xd5\x50\xde\x5d\x0d\xd9\x71\xcf\xf9\xf4\xe1\x17\xd4" "\x5c\xd6\x5d\xcd\x05\xa7\x61\x94\xe5\x67\xf8\xe0\xe0\x07\xe6\xae\x7e\xe8" "\x9f\x7e\x7a\xf3\x84\x23\x9e\x39\xe4\xe3\xd6\xb3\x5e\x5d\xbf\xea\xf1\xd1" "\x9b\x7a\xfd\xd5\x7b\x63\x7e\x7a\xf9\xb8\xf9\xc3\xc6\x17\xcc\xff\x9b\x3f" "\x7d\xfe\x5f\xdd\x45\x47\xca\x0a\x8e\xff\x87\x30\xb6\xf3\x6f\xcc\x5d\x9e" "\x89\xb4\x67\xe3\xad\x2d\x79\x19\x00\x00\x00\x80\x6d\x50\xf1\xc6\xd2\x53" "\x7f\x35\xf7\x93\xb2\x25\xbf\x38\x6f\xe3\x81\x7f\x7a\xc6\xb8\x6b\x7b\xaf" "\xd8\x7f\xff\x01\x6b\x0f\x7d\xe0\xff\x35\xbc\x3d\xe0\xc4\x55\x07\x16\xcc" "\xff\x47\x96\x76\xfe\x7f\xdc\x27\xd2\x2b\x27\x73\x58\x17\x77\x43\x4c\xed" "\x1f\x42\x73\x7e\x20\xa9\x76\x44\x61\x20\x39\xea\xdd\x37\x13\x00\x00\x00" "\x80\x9e\x20\x7b\x3c\x3e\x7b\x2c\x7c\x4a\xe6\x36\x39\x45\x3b\x3d\x9f\x2e" "\xcc\xdf\xb2\x95\xf9\xe3\x81\xff\x91\x5d\xe6\x1f\x3c\xee\xda\x75\xcd\xab" "\xef\x3c\x6d\xca\x88\xc3\xd7\xac\xd9\x74\xd6\xee\xaf\x2e\xdb\xf0\xcc\x6e" "\x07\xbe\xf7\xd2\xc1\xa7\x9e\x79\xd2\x83\x53\x1b\xee\x2b\x98\xff\xb7\x94" "\x76\xfe\x7f\x9f\xfc\xdb\xa4\x13\x6b\x63\x2f\x6e\xe8\x1f\x42\xef\x9c\xc0" "\x93\xb1\x97\x1d\x81\x4e\x0d\x31\xb0\xfe\xb8\xfc\x40\x66\xfc\x6b\xe3\x06" "\xb8\x26\x56\x95\x39\x31\x21\x5b\xd5\x35\xb1\x44\x6b\x0c\x34\xa7\x02\x0b" "\x8b\x95\x78\x2e\x5b\x62\xcf\xfc\x40\xe6\xc9\xca\x36\x7e\x55\x76\x1c\x53" "\x32\x25\x72\x02\x00\x00\x00\xf0\xb9\x8b\xbb\x03\xe2\x71\xf9\x78\xfe\xff" "\xb3\xe7\xf7\x7b\xfc\x6f\x97\xdd\x76\xd9\xc3\x4b\xd6\x85\xbe\xe7\x2e\xff" "\xd5\x15\xc7\x0e\x1f\x38\x7f\x70\xef\x77\xa6\x3d\x77\xd8\x63\x7f\xf9\xfe" "\xa9\x53\x0b\xe6\xff\xad\x5b\x77\xfe\x7f\xe7\x3c\xb8\xe0\xf4\xfe\xf6\xbe" "\x21\x0c\xa9\x08\xa1\x57\xfa\x87\x01\xeb\xfa\x24\x0b\x03\xc6\x40\x6d\x59" "\x26\xf1\xd3\x3e\x49\x5d\xbd\xd2\x55\x5d\xd9\x27\x84\x11\x1d\x03\x4b\x57" "\xb5\x21\xb3\xfe\x7f\x45\x7a\x8d\xc1\x17\x6a\x92\xaa\x62\x60\xcf\xfd\xef" "\xda\xd8\xd8\x91\xb8\xb3\x26\x84\x21\xb9\x81\x97\xc6\x2f\x1a\xde\x91\x98" "\x95\x0a\x64\x1b\xff\xb3\x9a\x10\xf6\xed\x18\x6d\xba\xf1\x15\xbd\x93\xc6" "\x2b\xd3\x8d\xdf\xdc\x3b\x84\xaf\xe5\x04\xb2\x55\x4d\xec\x1d\x42\x47\x63" "\x55\xe9\xaa\x1e\xaf\xce\x5c\xc7\x20\x5d\xd5\xf2\xea\x10\x76\xcd\x09\x64" "\xab\x3a\xb2\x3a\x84\xd9\x01\x80\x9e\x2a\xfe\x2f\x9d\x94\xfb\xe0\xc5\xb3" "\x2f\x9d\x3a\xa1\xbd\xbd\x6d\xc6\x0e\x4c\xc4\x9d\xf8\x35\x61\xf2\x94\xf6" "\xb6\xa6\x89\xd3\xda\x27\x55\x17\xe9\xd3\xa4\x54\x9f\xf3\xd6\x31\x9a\x5b" "\x38\xa6\x52\x2f\x7d\xf3\x6a\x66\x8d\xa2\x7b\x46\x35\xf5\x2f\x25\x9d\xfd" "\xa1\x60\x73\x6e\x5b\x99\x1d\xf9\x05\x67\x0e\x66\xee\xc7\x2f\x43\x95\x9d" "\xe3\x1c\x56\x99\x77\xf7\xb0\xf4\x90\x0f\x3e\xa0\xb0\x89\x90\xf3\x55\xaa" "\xd8\x90\xcb\x77\xf0\x90\xfb\xe4\x56\xb2\xe5\x49\x2c\xa8\x3f\xe6\xaf\x0a" "\x7d\x43\xef\x59\x17\xb7\xcd\x68\xba\x64\xc2\xcc\x99\x33\x86\x26\x7f\x4b" "\xcd\x3e\x2c\xf9\x1b\x8f\x33\x25\xdb\x6a\x68\x7a\x5b\xf5\xe9\xaa\x6f\x25" "\xbc\x3c\x8a\x2e\x97\x95\xf2\x59\xb7\x55\x63\x6e\x25\x43\x66\x5e\x30\x7d" "\xc8\xc5\xb3\x2f\x1d\x3c\xe5\x82\x09\xe7\xb6\x9d\xdb\x76\xe1\x11\xc3\x8f" "\x38\xea\xa8\x61\x87\x1f\x3e\x7c\x48\xc7\xa0\x9a\x93\xbf\xdd\x8c\xb4\xb1" "\xab\x9a\x53\x23\xdd\xbc\xa8\xc4\x61\x6d\xc7\x91\x7e\xb5\x22\xa7\x92\xcf" "\xe3\x43\x43\x42\x42\xa2\xa7\x25\x56\xfd\xcb\x5e\xaf\x1e\xbb\xdb\xd2\x1f" "\xac\xb8\x6d\xf1\x8c\x5f\xb6\x1f\xd3\xf6\xcb\x6f\xee\xba\xeb\x98\x25\x55" "\xdf\x7e\x69\xd3\xe5\x57\x1c\xf8\xec\xff\xf8\xa8\x60\xfe\x3f\xfd\xd3\xe7" "\xff\xf1\x53\x27\x7e\xf0\x67\xd6\x67\x28\x76\xfc\xbf\x3e\x1e\xe6\x4f\x1e" "\xdf\x72\x98\xbf\x35\x06\x16\x96\x7a\xfc\xbf\xbe\xd8\xd1\xfc\xec\x89\x01" "\x0d\xa9\xc0\x9c\x18\x98\xe3\x30\x3f\x00\x00\x00\x5f\x0e\x71\x77\x64\xdc" "\x9b\x19\x77\x4a\x3f\x36\x7f\x8f\x7f\xb8\x7b\xdc\x03\x63\xe6\xaf\x3f\xf4" "\xe9\x75\x2f\x94\xad\xef\x73\xe8\x5f\x7f\xfc\xaf\xe5\x95\x57\x8c\xfb\x2f" "\xc7\x3d\xd4\x70\xc7\xf7\xff\xa2\x60\xfe\x3f\xa7\xb4\xdf\xff\x6f\xa7\xf5" "\xff\xb3\x4b\xd7\x8f\x2a\xb6\xcc\xff\xa0\x58\xa2\xb9\xd8\xfa\xff\xe9\x65" "\xfe\xb3\xeb\xff\xcf\x29\xb6\xfe\x7f\x7a\x99\xff\xec\xfa\xff\x0b\xbf\x80" "\xf5\xff\x67\x65\x03\xa9\x4d\xf2\x6f\xd6\xff\x07\x00\x00\xbe\x0c\x3e\xbf" "\xf5\xff\xbb\x5d\xde\x3f\x7d\x81\x80\x82\x0c\xdd\x2e\xef\x9f\xbe\x40\x40" "\x41\x86\x6e\x97\xf1\x2f\xf5\x02\x01\x5b\xbd\xfe\xff\x63\x0d\x87\x8c\xfc" "\xd9\xea\xef\xfd\xae\x71\xd9\x45\xd3\xde\xfb\x6f\x43\x1e\x18\x3d\x60\xef" "\x86\x7f\x79\x6c\x9f\xab\x27\x4d\x1d\x39\x7a\xf4\x88\xc1\xff\x50\x30\xff" "\xbf\xae\xb4\xf9\xbf\x85\xfb\x01\x00\x00\x60\xe7\x71\xd0\xc4\xe3\x9f\xd9" "\x38\x69\xdf\xe3\xaf\xfd\x9f\x77\xec\xb2\xd7\xcf\x5a\xbf\xbb\xfb\x11\xbb" "\xfd\x70\xd9\xd1\x6d\xf3\x37\xad\x9f\xf8\x17\x77\xbc\x7f\xde\x9f\x17\xcc" "\xff\x17\x96\x36\xff\xff\xfc\xd7\xff\x0b\xc5\xce\xff\x6f\x28\x16\x68\x29" "\xb6\x30\xa0\xf5\xff\x00\x00\x00\xe8\xa1\x8a\xad\xff\x37\xf4\xe6\xef\x5c" "\xf9\xfa\xe2\x13\x1e\xbc\xef\xca\x69\xa3\x5a\x5b\xc7\xcf\xbe\xea\xda\x03" "\x56\x1f\x54\x7d\x7a\x78\x65\xf4\xfc\x86\x3f\x99\x71\xff\x27\x05\xf3\xff" "\xe5\xa5\xcd\xff\xe3\x69\x17\xe5\x79\xb9\x63\x6f\x3e\xae\x4b\xd6\xb4\x0b" "\xe9\x35\xed\xde\xad\xcb\xfe\x64\x00\x00\x00\x00\x7a\x86\xf2\xd0\xd4\x54" "\x59\x62\xde\xbc\x85\x51\x8f\xff\xec\x6d\xbe\x9c\x59\x0a\xf4\xd3\xd2\xb9" "\x9e\x7e\xf8\x80\x17\x1f\xfa\xfa\x88\x93\xe7\x2f\xae\xba\xf6\x8d\xb2\x3d" "\x86\x6d\x7e\xe6\xc6\x99\x87\x9e\xf8\x8d\x1f\xbf\xbe\x71\x9f\xcb\xee\x3a" "\xff\x82\x03\x0a\xe6\xff\x6b\x4a\x9b\xff\xe7\xfd\x2e\xe3\xc9\x0b\x07\xde" "\xbd\xa0\x71\xcc\xee\x1f\xdf\xfa\xe8\x86\xc9\x6f\x56\x3d\xbf\x60\xcb\xf1" "\x7f\x00\x00\x00\x60\xc7\x29\x75\xbf\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf0\xc5\x3b\xe9\xd1\x9f\x5d\xfb\xee\xc4\x25\xdf\x98\xb3\xf0" "\xd7\xbb\xff\xbc\xd7\xd8\xe7\x97\x6f\x98\x35\xa7\x69\x76\xed\x8d\xaf\xff" "\xf8\xfa\xdf\x1c\x75\xf7\xa3\xe3\x0a\x7e\xff\x1f\xc6\x76\x96\x2b\xf6\xfb" "\xff\x78\xdd\xbf\xf8\xfb\x82\xaf\xe4\xe5\x8e\xad\x76\xbf\xfe\x5f\xe6\xfe" "\xb8\xd1\xf7\xce\xee\x5c\xb2\x70\x5d\x5d\x08\x07\xe4\x06\xa6\x5e\x39\x75" "\x97\x90\xb9\x36\xff\x41\xb9\x81\xd5\x67\x0e\xda\xa3\x23\x71\x65\xba\xc4" "\x23\xaf\x9d\xf0\x46\x47\xe2\xec\x74\xe0\xe4\xc1\x03\x3e\xec\x48\x1c\x9d" "\x0a\xb4\xc6\x45\x12\xf7\x4a\x07\xe2\x55\x15\x3f\xec\x97\x0a\xc4\xe5\x15" "\x5f\x48\x07\xe2\xf6\x58\x9e\x0e\x54\x65\x02\x3f\xe8\x97\x8c\xa3\x2c\xbd" "\xad\xde\xae\x4d\xb6\x55\x59\x7a\x5b\xbd\x5c\x1b\x42\xff\x9c\x40\x76\x5b" "\xad\xac\x4d\xda\x28\x4b\x0f\xf0\xc6\x54\x20\x3b\xc0\x8b\xd2\x81\x38\xc0" "\x53\x32\x81\xf2\x74\xaf\xee\xed\x9b\xf4\x2a\x06\x6a\x63\xd1\xdb\xfb\x26" "\xbd\x02\x00\x60\xa7\x15\xbf\x05\x56\x86\xc9\x53\xda\xdb\x9a\xe3\x57\xf8" "\x78\xfb\xd5\x8a\xfc\xdb\x28\x6f\xc9\xb2\xb9\x85\xd5\x96\x95\xd8\xfc\xab" "\x99\xa5\xc9\xee\x19\xd5\xd4\xbf\x94\x74\xaf\xf4\x77\xd1\x2d\xd7\x1a\xaf" "\x0c\xd5\x1d\x43\x18\x5a\xf0\x75\x35\x37\x4b\x59\xe7\x28\xb7\x4f\x2d\xdd" "\x6c\xba\xaf\x14\x19\x72\x77\xab\xbd\x95\x17\x29\x97\xb6\xb5\x9b\xae\xaa" "\xf8\x88\x6a\x92\x11\x35\x4d\x9c\xd6\x3e\xa9\xb2\xdb\x81\x1f\xd6\x7d\x96" "\x61\x15\xdd\x66\x19\x5a\x30\xd9\xc9\xcd\x52\xde\xb9\x49\x4b\xa8\xa5\x84" "\xbe\x94\x30\xa2\x12\xb7\x4d\x09\x5d\x8e\xf7\xcb\x43\x53\x53\xaf\x54\xae" "\xaf\xc7\x60\x7d\xc8\xd3\xdd\x2b\xa2\xd4\xdf\xeb\xe7\xae\xf3\x57\xec\x55" "\x90\x9b\xe7\xe9\xb7\xdb\x9f\x79\xea\xef\x5f\x5c\xb9\xdf\x93\x7f\x7c\xf6" "\xdc\x8f\xfe\x6c\xd2\x77\x2f\x9f\x77\xce\x59\xef\x1f\x7d\x5e\xf5\xdf\xfc" "\xe7\xb2\x67\xff\xeb\xc0\x5d\x0b\xe6\xff\xf5\xa5\xcd\xff\xab\x73\xc7\xf5" "\x61\xe6\x62\x00\x73\xe2\x95\xf5\x46\xf4\x0f\xa1\xb5\xc4\x11\x01\x00\x00" "\xc0\x97\xdf\x79\x17\xbe\x36\xff\xfb\x8f\x5f\xff\xd6\xfa\x96\xc6\x37\xa6" "\x0d\xb9\x7e\xf5\x3f\xce\xbe\xf9\xd2\x8a\xba\xa5\x57\xff\xe9\xcb\x8f\xfc" "\xe5\xa6\xf1\xd7\x9e\xbd\xad\xf1\xb7\x7f\x79\xd7\x7e\x8f\x4e\x9e\xf0\xdc" "\x57\xce\x3f\x6c\xd9\x49\x6f\xee\x77\xe8\x15\x8d\x67\xbf\xf3\xc0\x9f\xcc" "\x1b\xf7\xf0\x35\x7d\x6f\xfb\xf1\xfc\xbb\x7e\x54\x30\xff\x6f\x28\x6d\xfe" "\x1f\xf7\x60\x65\x0e\x05\x27\x7b\x3b\xd6\xc4\xeb\xff\x5f\xd5\x3f\x84\xce" "\x4b\xeb\xd7\x27\x81\xa5\x71\xb8\xe7\xf4\x0f\x61\xbf\xce\x54\x4b\x2c\x91" "\x5c\x50\x7f\x54\x2c\xd1\x9c\x04\x96\xc6\x1d\x26\x83\x62\x89\xd6\x96\xfc" "\xaa\x7a\xc7\xc0\xf2\x54\xe0\xad\xba\x4c\x60\x4d\x2a\xb0\x36\x06\x32\x7b" "\x29\xee\x0a\x99\x5d\x39\xd7\xd7\x85\x30\xbc\x33\x35\x36\xbf\xc4\xf4\x58" "\xa2\x3e\x15\xf8\x76\x0c\x34\xa4\x02\x4d\x31\xd0\x9c\x0a\xf4\x8b\x81\x91" "\xa9\xc0\xbf\xf6\xcb\x04\x5a\x52\x81\xa7\x63\x20\x4c\xc9\xdf\x56\x0f\xf4" "\xcb\x6c\x2b\x00\x00\x80\xad\x91\x99\x67\x55\xe6\xdf\x0d\xe9\x79\xde\xf2" "\x8a\xee\x32\x94\x75\x97\xa1\x4f\x77\x19\xca\xbb\xcb\x50\xdd\x5d\x86\x62" "\xa3\x88\xf7\xef\x8f\x19\x2a\x53\x27\xaf\x94\xe5\x64\xaa\x4c\xd7\x5a\x93" "\xaa\xa5\x20\x43\xbc\x18\xfe\x56\xf7\xab\x20\x43\x78\x2e\x3f\x67\xba\x60" "\x41\xd3\xf1\xfc\x83\xec\xf9\x06\x65\xf9\x19\x1e\x3a\xf5\xeb\xf7\x5d\xb3" "\x60\xf2\xa0\xf2\xdf\x7c\xb2\x76\x69\xeb\x07\x0f\x4e\x5c\x71\xfb\xec\x63" "\x57\x9e\xf7\xc8\x5f\x3d\x35\x69\xff\x45\xf7\xdc\xb8\x6f\xc1\xfc\xbf\xb9" "\xb4\xf9\x7f\x9f\xfc\xdb\xa4\xf5\xb5\x71\xfe\xbf\xe5\xfa\x7f\x49\xe0\xc9" "\xd8\xbd\x1b\xe2\xa9\xe3\x0d\x31\xb0\xfe\xb8\xfc\x40\x66\xc7\xc0\xda\x38" "\xd9\xbd\x26\x5b\x55\x4b\xa6\x44\x66\xd2\x7e\x4d\x2c\x31\x32\x06\x1a\x52" "\x81\xe9\x31\x30\x32\x15\x68\x1d\x9b\x09\x2c\xdc\x23\x3f\x90\x99\x69\x67" "\x1b\xbf\x2a\xdb\xf8\x94\x4c\x89\x9c\x00\x00\x00\x00\x7c\xee\xe2\x0e\x82" "\xb8\x9b\x26\xce\xff\xff\x7d\xd9\xf3\xc7\x3c\x51\xb1\xe8\x9e\x7f\x7c\x7d" "\xfc\x3d\xf7\xcf\x79\xe7\xbe\xfb\x7f\x7e\xdf\x7d\xb7\xdf\x3f\xfa\xce\x4d" "\xdf\x7c\xe1\xaa\x4b\xdf\xbf\xe4\x93\x82\xf9\xff\xc8\xd2\xe6\xff\xb1\xbd" "\xbe\xb9\x8d\x5d\x1d\x7b\xf3\xfb\x7e\x21\xac\x2c\xdb\xd2\x9b\x6c\x60\x70" "\x6d\x12\x88\xfb\x31\x6a\xe3\xcf\xe3\x07\xd6\x86\xb0\x4b\xce\x0e\x8e\x6c" "\x89\xb6\x3e\x49\x89\xaa\x54\xc3\xe1\x89\x9a\xe4\x17\xea\x55\xe9\xaa\x7e" "\x52\x93\xac\x31\x10\xef\x8f\xfb\xf5\x63\xab\xe7\x75\x24\x6e\xac\x09\xe1" "\xc0\x9c\xbd\x2f\xd9\x36\xfe\xb9\x3a\x69\xa3\x26\x1d\x68\xac\x4a\x02\x7d" "\xd2\x81\x69\x15\x49\x20\xee\xf9\xc9\x06\x56\x95\x27\x01\xd8\x66\xd9\xbd" "\x82\xf1\x05\x95\x39\xd5\x25\xab\xbe\xeb\x72\x45\x5e\x7f\x5f\x96\x6b\x82" "\xa6\x87\x57\xb0\x0f\xb4\x8b\x7c\x5d\xfd\xe6\x6a\x47\xa9\x4e\x3f\x90\xd9" "\xa7\x9a\xb5\x75\x4f\x5b\x41\x75\xec\x10\x05\x6f\x8f\x35\xde\x6d\x3d\xf1" "\xdd\x56\xef\xdd\x96\xfb\x45\x2a\xf3\x0d\x65\xf3\x96\x50\x75\x28\x9f\xd4" "\x36\x79\xc2\xac\xf6\x99\xf1\x91\xdc\x5f\xb2\x16\xd8\x41\xcf\x73\xee\xaf" "\x54\x4b\x49\x6f\x87\xd7\xe1\x9c\xcf\xde\xdb\xee\x55\xa7\x3b\xd0\x9c\xfa" "\xf8\x68\xee\xba\x5c\xd7\xaf\xc3\xb2\x58\xdd\x93\x17\x0e\xbc\x7b\x41\xe3" "\x98\xdd\x6f\x7d\x74\xc3\xe4\x37\xab\x9e\x5f\x50\x72\x37\x8a\x88\x3f\x14" "\x7e\xae\x6a\x40\x7d\xee\xe6\xdd\xd1\xaa\x43\xe6\x35\xd7\xe3\x3e\x4f\x5a" "\x7c\x9e\xf4\xc4\x7f\x03\x0d\x9e\xb6\x10\xc2\x86\xcb\x4f\xba\x61\x64\xd5" "\xf4\xab\x56\x8e\x3e\xec\xe8\x7d\xde\x38\xe3\xb4\xea\x99\x1f\xcc\xfb\xeb" "\x07\x5f\x79\xe8\xfd\xfd\xff\x76\xc5\xc4\x61\xdf\x18\x50\x30\xff\x6f\x29" "\x6d\xfe\x5f\x91\xba\xed\xf4\xef\x71\x63\x5e\xdc\x3f\x84\x83\x73\x36\xee" "\xba\xb8\xf9\x4f\xec\x9f\x7c\x0e\xe6\x04\x92\x4f\xc9\x5d\x0b\x03\xc9\x21" "\xf7\xd7\xeb\x8a\x7e\x72\x02\x00\x00\xc0\xf6\x96\xdd\xdd\x91\xdd\x5f\x30" "\x25\x73\x9b\x9c\x10\x9e\x9e\x27\x17\xe6\x6f\xd9\xca\xfc\x71\x7f\xc5\xc8" "\x2e\xf3\x97\xda\xef\x9f\x0c\x3a\x6d\x9f\x07\xf7\xb8\x77\xdc\xf5\xa7\x1f" "\x73\xcb\xdf\xff\x6e\x6c\xbf\x8d\xe3\x5f\x5e\x72\xdc\x8a\xd6\x63\x1a\x97" "\x1e\xfb\x8b\xff\x74\x76\xcd\xbc\x82\xf9\x7f\xeb\xa7\xcf\xff\x7b\xa7\xba" "\xe9\xf8\xbf\xe3\xff\xec\x20\x8e\xff\x77\x69\x67\xdf\x15\xdd\x3b\xfd\xc0" "\x9c\x6d\xda\x15\x5d\x50\x1d\x3b\x84\xe3\xff\x5d\xda\xd9\xdf\x6d\x8e\xff" "\x77\xc9\xf1\x7f\xc7\xff\xbb\xe2\xf8\x7f\x37\x1c\xff\xef\xd2\xce\xfe\xb4" "\x15\x7c\x4b\x9a\xee\x4b\x57\x08\x61\xd8\x98\xb3\x06\xd7\xde\x33\xf8\xa9" "\x0f\x07\xae\xfe\xed\x53\xcf\x4c\xf9\xa7\xb9\xad\x13\xee\xfb\xd6\x35\xb7" "\xed\xbd\xf9\xbb\xf5\x8b\x17\xd4\xef\xde\xb7\x60\xfe\x3f\xbd\xb4\xf9\xbf" "\xf5\xff\xba\x5e\xb4\x2f\xbb\xfe\x5f\x6b\xb1\xf5\xff\xa6\x17\x5b\xff\x6f" "\x8e\xf5\xff\x00\x00\x80\x1d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1\xea\x7d\x05" "\x19\xd2\xab\xf7\x15\x64\xe8\x76\x81\xc0\x6e\x97\x18\xb4\xfe\xdf\x56\xaf" "\xff\xf7\xc4\x31\x47\x8f\x5f\x3e\x7a\xf1\x6f\xd7\xec\x3b\xe6\xa0\x2b\xfa" "\xce\x9d\x7b\xfa\x6e\x4f\xdf\xf2\x72\xcb\xcc\x0f\x6b\xee\xf8\xe8\xc3\x3d" "\x7e\x75\xf0\xa8\x82\xf9\xff\x9c\xd2\xe6\xff\xf1\xe5\xd0\x37\xb7\xf5\x9e" "\xb2\xfe\x5f\xc3\xd8\x22\x55\x5d\x17\x03\xd3\x2d\x0c\x08\x00\x00\xc0\xce" "\xa8\xd8\x0e\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbe\x58" "\x7b\xde\x74\xc3\xf8\xe3\x9a\xab\x4f\xf9\xdd\x89\x97\xd7\x8c\xfe\xe1\x23" "\xeb\x0e\xaa\xbe\xee\xb5\xd3\x2f\x5f\x36\xe1\xf6\x49\x5f\xbb\xf3\xc2\x41" "\xb3\x56\x2c\x59\x52\xf9\x87\x17\x37\x9e\x32\xf9\x7b\x37\x1d\xd9\xb8\x61" "\xe5\x84\x97\x42\x98\xd2\x59\xae\x2c\x29\x5e\x76\xe6\xe2\x15\x3f\x5a\x75" "\xd1\xb7\xbe\xf3\xf0\x19\xb7\xdc\xfb\xfe\xde\xb3\x97\x56\x67\xea\xad\xcc" "\xdc\xee\x9d\x97\x3b\xb6\xfa\x71\x5d\x08\x0b\x73\x1e\xa9\x8d\x89\x77\xeb" "\x3a\xee\x6c\x09\x8c\x1b\x7d\xef\xec\x8a\x8e\xc4\xba\xba\x10\x0e\xc8\x0d" "\x4c\xbd\x72\xea\x2e\x1d\x89\xc5\x75\x21\x1c\x94\x1b\x58\x7d\xe6\xa0\x3d" "\x3a\x12\x57\xa6\x4b\x3c\xf2\xda\x09\x6f\x74\x24\xce\x4e\x07\x4e\x1e\x3c" "\xe0\xc3\x8e\xc4\xd1\x99\x40\x59\xba\xbb\x7f\xd3\x2f\xe9\x6e\x59\xba\xbb" "\xf3\xfa\x85\xd0\x3f\x27\x90\xed\xee\xf9\xfd\xf2\xab\xca\xb6\x71\x52\x26" "\x50\x9e\x6e\xe3\xef\x6a\x93\x36\x62\xa0\x36\x16\xbd\xb9\x36\x69\x23\x06" "\xda\x63\x89\x29\xbd\x43\x18\x52\x11\x42\xaf\x74\x55\xbf\xa8\x4e\xaa\xea" "\x95\xae\xea\x7f\x57\x27\x55\xf5\x4a\x57\x75\x45\x75\x08\x23\x42\x08\x15" "\xe9\xaa\x7e\x5b\x95\x54\x55\x91\x1e\xf9\x73\x55\x49\x55\x31\xb0\xe7\xfe" "\x77\x6d\x6c\xec\x48\x2c\xaa\x0a\x61\x48\x6e\xe0\xa5\xf1\x8b\x86\x77\x24" "\x66\xa4\x02\xd9\xc6\x4f\xab\x0a\x61\xdf\x8e\x97\x4c\xba\xf1\x07\x2a\x93" "\xc6\x2b\xd3\x8d\xdf\x54\x19\xc2\xd7\x42\x08\x55\xe9\x12\x9b\x2a\x92\x12" "\x55\xe9\x12\x1b\x2a\x42\xd8\x35\x27\xb0\x65\x23\x56\x84\x30\x3b\xf0\xe5" "\x10\x3f\x7d\x26\xe5\x3e\x78\xf1\xec\x4b\xa7\x4e\x68\x6f\x6f\x9b\xb1\x03" "\x13\x55\x99\xb6\x6a\xc2\xe4\x29\xed\x6d\x4d\x13\xa7\xb5\x4f\xaa\x4e\xf5" "\xa9\x98\xb2\x9c\xf4\xe6\xb9\x9f\x7d\xec\xaf\x6e\xbc\x6c\x62\xc7\xed\x3d" "\xa3\x9a\xfa\x97\x92\xae\xc8\x94\xab\xec\xec\xf2\xb0\xca\xbc\xbb\x87\xed" "\xec\xbd\x8f\xfd\xea\x93\x5b\xc9\x96\xe7\xa3\xa0\xfe\x98\xbf\x2a\xf4\x0d" "\xbd\x67\x5d\xdc\x36\xa3\xe9\x92\x09\x33\x67\xce\x18\x9a\xfc\x2d\x35\xfb" "\xb0\xe4\x6f\xaf\x4c\x34\xd9\x56\x43\x7b\xca\xb6\x6a\xcc\xad\x64\xc8\xcc" "\x0b\xa6\x0f\xb9\x78\xf6\xa5\x83\xa7\x5c\x30\xe1\xdc\xb6\x73\xdb\x2e\x3c" "\x62\xf8\x11\x47\x1d\x35\xec\xf0\xc3\x87\x0f\xe9\x18\x54\x73\xf2\x77\x7b" "\x8c\x74\xd1\xe7\x3f\xd2\xaf\x56\xe4\x54\xf2\x79\xbc\xff\x25\x24\x24\x7a" "\x5a\xa2\x3c\xef\xd3\xad\x79\x67\xff\x1c\x2f\xf8\xa2\xbf\xa5\xa3\x95\xa1" "\xba\xf3\x03\xba\x60\x5a\x91\x9b\xa5\xac\x73\x94\xdb\x63\xd0\xc7\x7f\xc6" "\x11\x7f\x96\xaf\x29\xdd\x8e\x68\x68\xc1\xc4\xa1\x20\xcb\xb0\xee\xb3\x1c" "\x56\x30\x99\xd8\x92\xa5\x26\xc9\xd2\xf9\xb5\xae\x60\x72\x98\x5b\x53\x79" "\xe7\x26\x8d\xf7\xcb\x43\x53\x53\xaf\x62\xdb\xa1\x3e\xff\x6e\xee\xe6\x7d" "\x67\x1b\x36\xef\xcb\x99\x4d\x57\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xcf\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\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03\xc7\x02\x00\x00\x00\x00\xc2\xfc\xad\xc3" "\xe8\xd9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x4b\x01\x00\x00\xff\xff\x3f\xa7\x23\x37", 21921); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x200001c0, /*flags=*/0, /*opts=*/0x20000000, /*chdir=*/1, /*size=*/0x55a1, /*img=*/0x20005b00); memcpy((void*)0x20000040, "cpu.stat\000", 9); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; memcpy( (void*)0x20000240, "\xff\xc4\xdb\x72\xb7\x18\x46\xa3\x5f\xce\xa2\x54\x4e\x97\xb2\x02\x68\xee" "\x71\x67\xdf\x34\x98\x82\x5c\x4a\xb9\x2c\xd3\xc2\x74\xda\xae\x9a\x37\x42" "\x98\xad\x63\x13\x43\xb5\xd4\x63\x7f\xb6\xd9\xed\x2e\x35\x69\xe9\x35\xac" "\xd9\xa0\x83\xee\x44\x78\x0f\x65\x4c\xd9\x4d\x58\x3d\x0a\x6f\x30\x72\xa0" "\x8c\x01\xea\x44\xf4\xcd\x6c\x88\x72\xbd\xb6\x12\xa1\x57\x28\xc4\x27\xc3" "\xf0\xb3\x6e\x72\xed\xe9\x90\x70\xc6\xc8\xff\x8b\x5c\x68\xd1\xdf\x30\x55" "\x93\x93\xfc\x7c\x73\x52\x71\x78\x4d\xfe\x08\x6c\xe5\xd3\x28\x6b\x44\x94" "\x9f\xdd\x31\xde\x36\xeb\x22\xe7\xec\xc9\x6d\xfb\x7b\x52\x12\x91\x4e\x99" "\x21\x9e\x5e\x74\xc4\xf4\xcb\x50\xc2\xb2\x7a\x6c\x88\x4a\xab\x59\x23\x18" "\xf3\x22\xda\x38\xa3\xa1\xba\x53\x15\xca\x09\x8b\x30\xc4\xc8\x31\x31\x75" "\xfb\x24\x13\x53\xbb\xfd\x82\x0c\x5e\x73\x2e\x17\x5d\xea\xcc\x29\x71\x58" "\xdf\xd7\x92\xfe\xa5\xe0\x1c\xcf\x4f\x9b\x1f\x9e\x40\x2b\xf0\x6c\xd8\x79" "\x87\x01\xf6\x3a\xa2\x65\x60\xbf\x14\x56\x66\x80\xeb\x1b\xe0\xcc\xba\x30" "\x02\x86\x13\xc7\xa6\x6a\x55\x1d\x9e\x31\x2c\x7d\xc0\x1c\xa7\x71\x42\x40" "\x88\xc8\xe6\xb3\x93\x07\x2a\x96\x1f\x0f\xfc\x20\x2c\x23\xeb\x9b\xd0\x88" "\x75\xda\x6a\xf1\x40\xbc\xc9\x67\x91\x23\xe1\xc3\xd7\x29\x2f\xc3\x1b\x60" "\x69\x51\xa7\x01\x64\x40\x6e\x37\x72\x80\x70\x36\x28\xcf\xfd\x66\x67\xc9" "\xe9\xe7\xe3\xf7\xab\x84\xc9\x6b\xc1\x5e\xb3\x31\xb5\xd0\x5f\x1b\x57\xa6" "\x72\xcf\xbc\x2e\xcc\x8d\x28\x5f\x0e\x4b\xa4\x63\x67\xaa\xb7\xaf\xad\x83" "\xb7\xc6\xc8\xc5\x55\xad\x66\xae\x27\x88\x1c\x0c\xe0\xcf\xef\x34\x11\x07" "\x00\x7b\x35\x85\xea\xa9\xad\x51\x41\xb9\xeb\x7d\xaa\xa1\xad\x71\x1c\x1e" "\xab\xfc\x06\x5d\xbb\x71\xd9\xa1\x2f\x00\xf4\x8c\xfa\x78\x80\xfa\x24\xbb" "\xef\xd1\xc6\x81\x37\x63\x71\x0b\x73\xaa\xa7\xe9\xe2\xbf\xd7\xd4\x89\xed" "\xcc\x9f\x4a\x2f\x41\x1c\x64\xa3\xbc\x18\xc5\x61\x0e\x18\x16\x4f\x43\xdd" "\x4e\x05\x98\x68\xad\x8f\x63\x45\x34\x2e\x01\xd1\xca\x4c\x98\xc7\xff\xd8" "\x9e\x18\x6c\xa7\xd4\x03\x0c\xae\x88\x72\x15\x7a\xb2\x69\xb7\x74\x05\x2e" "\xe1\xb1\x2d\x7b\x1f\x09\xb5\xce\x95\xe2\xce\x94\x74\x9e\x17\x93\xc0\xa7" "\x69\xa1\xd7\xce\xfb\x94\x25\x81\xd3\x1f\x13\xf0\x4c\x33\x1b\x75\x61\x76" "\x11\x6c\x51\xa4\x9d\x6c\x61\xa4\xdf\x0c\x11\x1e\x4c\x94\xa2\xd7\x7e\x3d" "\xde\xa0\xab\x0e\xc0\xb8\xa4\xce\x51\x24\xf3\xde\xe5\x05\x78\x1d\xff\x08" "\xdf\xd4\x5e\xd4\xcd\x14\x61\xa0\x25\x55\xdd\xfa\x33\xe6\x2f\x82\x25\x8e" "\x4b\xb6\x23\x68\x7e\x12\x22\xa3\xa8\xc6\x3d\x9b\x8e\x3c\xd6\x7f\x92\x97" "\x30\x2d\x7a\xef\xf2\x8a\xbd\xc7\x0e\x91\x66\xce\xe1\xd6\xcd\xc3\x39\x6b" "\xea\x6c\x20\x5d\x8f\x49\x67\x12\xcf\x7b\xa8\x7c\x16\xa4\x27\x42\x1d\x6f" "\xc8\xf4\x27\x17\x95\x6a\x1a\xa4\x45\x19\xb1\x90\x77\x8e\x74\xbf\x04\x88" "\xb6\x6d\x52\xb9\xa8\x09\x47\x5f\x83\x5c\xec\x78\xfc\x83\x2a\x0e\xb5\xf1" "\x27\xf0\x82\x2a\xb3\xe0\x4a\xe9\xa6\x42\x8a\x64\xad\xcd\x2d\x7d\x67\xc4" "\x73\x34\x21\x3b\xaa\x14\xd9\x74\x6d\xe1\x3b\xe6\x4b\x34\xeb\xcd\x03\xcc" "\xa1\xf5\x75\x3e\x5d\x00\x42\xe2\x73\x8d\x67\xe4\xdb\xb5\x15\x7d\x8b\x04" "\x39\xd3\x4e\x14\xcd\x98\xf4\x0a\xf8\x34\x24\x65\x83\x95\x65\xc7\xc9\x0b" "\x1a\x71\x51\xeb\x16\x75\x14\xb9\xd6\x35\x1a\xcc\x06\xb5\x57\xe3\x48\xed" "\x60\x27\x15\xce\x7a\x9b\x76\x9a\x5b\xc8\x60\xe4\x7c\xef\x32\xd2\x12\xdc" "\x88\x8c\xf8\x2c\x54\x52\x3a\x84\xdf\xd1\xda\xf6\x38\x06\x13\x27\x6c\xbe" "\x17\x1c\xca\x27\x36\x5b\x30\xcd\x31\x2a\xd6\x11\x82\x0d\x43\x5f\xe7\x5e" "\xd4\x01\x4a\x3c\x14\xd9\x25\x1d\xa2\x70\xf7\xc3\x7d\xd3\xb5\x77\x03\x1e" "\xfe\x1c\xd7\x2f\x6f\x7e\x73\x0d\x3f\x51\x0d\xfe\xcf\x65\xfc\x2a\x20\xd1" "\xe7\x85\x4e\x60\x0d\x89\xe8\x69\x2e\x03\x6f\x62\xf7\x40\x21\xa1\x04\x7d" "\xea\xe8\xb5\xce\x5e\xa7\x6d\xb3\xa7\x65\x39\x50\xd1\xee\x97\xc7\x8a\x60" "\xca\x63\x02\x09\x7b\x1c\x7d\xbc\x6d\x52\xad\x9f\x03\x1e\x56\x81\x95\x68" "\xfe\xe6\xd6\x59\x17\x09\xda\x6c\x94\x49\x67\x60\x79\x1a\xe1\x1f\x8f\xd9" "\xff\x73\xbf\x29\xee\xc2\xef\xd1\xd9\x44\xc5\xeb\x25\xd5\x60\xdf\x7a\xd6" "\x92\x7e\x5c\xe8\x4f\x36\x5c\x68\xb0\xa9\x05\xfd\xe9\xfc\x33\x6a\xfc\xfa" "\x0a\x8f\x24\x81\x7f\xc6\x9f\x12\xbf\x91\x24\x1b\x65\xf3\xad\x13\xf9\x40" "\x7a\x69\x7b\xc9\x7e\x92\x4b\x3d\xd0\x32\x17\x85\x95\x67\x5f\x11\x3a\x00" "\x26\x39\x55\x7b\x8d\x39\x91\x78\x39\xa1\x7c\x14\x52\xcf\x62\x8a\xf2\x21" "\x38\xa3\xac\x49\x72\x45\x77\x11\xed\x94\xb4\xfb\xf0\x09\x9d\xcd\x36\x8f" "\x47\xba\xf9\xd4\xd2\xbd\xb7\x5d\x5a\x4e\x6e\xe5\xb5\x2d\x83\xc6\x1f\x74" "\xef\x77\x7f\x45\xa5\xbd\x8e\x63\x6b\x51\xd4\x22\xaf\x29\xfc\xd0\x6e\xc0" "\xb6\xcf\x04\x4c\x4b\xcc\xf9\x00\xa8\xc8\x95\x30\x02\x74\x29\xee\xb4\x18" "\x62\xf3\x0d\x5d\x73\x60\xb7\xc6\x43\xdd\x92\xa8\x9f\xd8\x74\xaa\x4e\xd4" "\x81\xb8\xec\x94\xfe\xa6\xc3\xe4\x1c\x8a\xa1\x00\xf9\x76\x9f\xa7\x34\xf7" "\xbe\x46\x52\xbb\xa5\x61\x50\x5a\xbc\x04\xde\x90\x79\x81\xce\x48\xe5\xbe" "\x0e\x65\x22\xc9\xf4\xc7\xed\xaa\x3b\x10\x8a\x25\xa3\x17\xf1\x7d\xfd\x57" "\x80\x2e\x2f\x1c\x87\xf5\xe7\x61\x22\xf6\xd9\x6c\x5a\x8d\x73\x62\xf2\x24" "\x95\xf6\x09\x24\x3c\xb4\x54\x4b\xef\x0a\xef\xb9\xd8\xb3\x17\x9d\x83\x5f" "\x31\xb2\x7c\xa8\x39\xfd\xc4\x7c\xff\xc6\x51\x6b\xdc\xf5\x18\xa0\xc5\x53" "\x69\x37\x9e\xa1\x10\xc3\xb7\x30\x0c\x29\x2b\xe9\x14\xef\x6a\x09\x59\xc3" "\xb4\x63\x0c\xda\x0a\xcd\xfe\x96\x6a\xc7\x54\xdc\x00\xec\x0f\x8c\x0a\x42" "\x7e\x13\xe5\xc0\x82\x2c\x59\xf6\x20\xbf\xfd\xd4\xbb\xcd\xf3\xe7\x21\x07" "\x1b\x82\x5f\xa9\x95\x41\xf3\x89\xbc\xbc\x87\xef\x92\xa3\x05\xd5\xfa\x15" "\x6a\x3c\x0b\xde\xe5\x37\xae\x20\x13\xa5\x8e\x55\x59\x27\x2f\x12\x45\x48" "\xe2\x10\x04\xb5\x9c\x35\xba\x1e\xf1\xa3\x2a\x5d\x1a\x10\xdb\x2b\x6b\xe1" "\xc7\x62\x56\x63\x05\xe6\x29\x80\x73\xa3\xe0\xf6\x55\x0e\xf6\xfd\x3d\xca" "\x68\x62\xcb\xaf\x03\x29\xb1\xce\x61\x5f\xc7\x71\xd4\xaf\xa2\x53\x60\x40" "\x63\xc9\xd2\x39\x29\x27\x2a\x7a\x15\x0f\xaa\x8c\xca\xf2\xcf\xb5\xa6\xee" "\x45\xc4\x6f\xdd\x81\x4d\x78\x7a\x96\xf6\xb6\x2f\x67\x2a\x8d\xf1\xa2\xf4" "\xf9\x6e\x7c\x9e\x17\x2d\xb2\xdd\x68\x64\x81\x29\xc2\xf6\xad\x44\xa9\x05" "\xa4\x15\x8c\x3f\x8f\xf8\xdb\x76\xd5\x31\x0a\x23\x6f\x5f\x27\xed\x53\x06" "\x57\x23\x75\x22\x9f\x26\xdf\x05\xc8\x9d\xd9\x25\x14\xd7\x89\x32\xbd\xe3" "\xe0\x66\x32\xd5\x47\x16\x22\x0b\x1a\x50\x75\x0f\xdb\xd7\x3f\x26\x13\x25" "\x26\x6b\xc8\x60\xb5\xec\x0a\x31\x3d\xe6\x1e\x03\x44\x3b\x53\x92\xc4\x77" "\x47\x33\x06\x10\x9d\xd7\xf2\xe2\xb1\x4f\xf8\x96\x8a\xf6\x4c\x17\xf9\xe5" "\x26\xd7\x7f\x21\xb6\xba\x79\x0e\xeb\x55\x17\xff\x2f\x52\xc2\xd6\x46\x27" "\x96\xe5\xae\x12\x5d\x4d\x20\xfc\x47\x3b\x15\xaf\x99\xfd\x47\x7a\xf7\xe1" "\xa9\x10\xd8\xf4\xc7\x25\x95\xba\x17\x54\x68\x36\x92\x1a\x6e\xef\x8c\x54" "\x0c\x57\x7e\x1b\xe5\x10\xdc\xcf\x33\xe2\x8b\x0f\x9f\x99\xe4\x7d\xa9\xaf" "\xd8\xe4\x5a\xa1\xa1\x28\xd0\x01\x28\x67\x31\xea\xe4\xa5\xc7\x96\xd9\x5a" "\xbd\xb6\x1e\x98\x94\x6d\xe8\x9a\x4e\x89\x92\xad\xa4\x06\x2f\xab\x89\x83" "\x36\xcf\x42\xa2\x04\x47\xc3\x56\xf9\x13\x59\x54\x80\x00\x14\x81\xf9\x15" "\x99\xd8\x51\x51\x5d\x87\x34\x1a\x31\xc7\x48\x4c\x9e\xf1\x46\xc3\xc6\xa2" "\x72\x5e\x4b\xa0\x13\xde\xc2\x36\x7a\xfc\x41\xb5\x6b\xa6\xa6\xe6\x6f\x32" "\xaf\x30\x57\x64\xbf\x51\xc0\xc6\x56\xae\xad\xd6\x25\x38\xf8\xc7\x42\xf8" "\x11\xa2\x05\x4c\xde\x21\x70\x92\x6d\x04\x65\x8a\x4a\x6d\x17\x7c\xbc\x9b" "\x4d\x0a\xcd\x9b\x00\x08\xca\x3e\xff\x53\xb0\x17\x72\x5a\xde\x01\x6c\x87" "\xd8\x81\xc7\xfc\xf0\xd4\xd5\x41\x8d\xc1\xb2\x4e\x48\x34\x55\x2e\x92\xe4" "\x87\x64\x7f\xe3\x6f\xa7\xf0\x2f\x6d\xd8\x7a\x22\xa4\x2d\x68\x66\x05\x48" "\x5a\xb2\x22\x83\x44\x91\x36\x40\xee\xe4\x60\xaf\xa6\x78\xc5\xb9\x12\xd4" "\x0d\xe1\x47\x48\xce\x59\x8e\x11\x48\xec\x70\xde\x79\xad\xf6\x39\x77\xfe" "\x8b\x9a\x72\x85\xef\x9d\xcc\x35\x01\x38\x9a\xca\x9a\x47\x61\x15\xa5\x81" "\x78\xbb\x5e\xa8\xd7\x2a\x60\xa4\x1b\xad\x5a\xdd\xa7\xd1\x6e\x30\xbb\x7e" "\xb2\x44\x84\x18\x80\xa9\x04\xfa\xff\x46\xd8\x8d\xa6\x3f\x72\xab\x73\xef" "\x4b\xa7\x45\x43\xab\xaf\x7d\xa2\x14\xe0\x8e\x33\xa9\xaf\xfe\xc9\x65\x4a" "\xc2\x32\x50\xde\x76\x1b\x6c\x50\x3b\xdb\x81\x6f\x90\xae\x30\x04\xb0\xc4" "\xed\x7d\x0c\xf2\x8b\xca\x91\x96\xeb\xc9\x2c\xf3\x28\xc4\x91\x8b\xde\xfa" "\xb8\xa8\x35\xac\x7d\xe0\xa7\xb6\xae\x63\x2c\x76\x10\x2a\x5c\xa2\xa6\xe3" "\xf9\x81\xc0\x64\x01\x76\xfd\x2e\xee\x9e\x61\xe6\xde\x09\x18\xc1\x09\xac" "\xcd\x99\xb3\x22\xd4\x37\x5a\x15\x5f\xb6\xc3\x94\x79\x15\x39\xf0\xe7\xfc" "\xf0\xf3\xc7\x73\x02\xcd\xbe\xb3\xd1\x12\xe6\xcd\x45\xc9\x53\x1c\xa6\x40" "\xa4\xe6\x16\x63\x1a\x77\x28\xcb\xfb\x9a\xf3\xa6\x42\xf5\xdb\xe2\x38\x5f" "\x4e\xe4\x02\x6e\x78\x7e\x2b\x57\xfe\x62\x33\x30\xb5\xac\xbc\xc4\xd2\x6c" "\x5c\x45\xc1\xef\xc8\x00\x0c\x32\x9d\x9d\x73\x16\xdd\x1e\x38\x31\x6c\xf8" "\x5f\xe0\xbf\x2f\xe3\x2c\xa6\xb3\xf0\x5d\x2d\x42\xeb\xb8\xd2\x1b\x9a\x64" "\xe0\xf1\xd9\xd6\x7e\x20\x6d\xe2\x31\x17\x43\x06\xd0\x51\x44\xab\x82\x3e" "\x4f\x99\x0a\xa5\xea\xe8\x94\xcb\x74\x0b\x5b\x14\x5e\xc0\x36\x63\xa7\x17" "\x01\xaf\xb2\xb5\xa2\x7d\xab\x1b\x65\xb4\x36\xdf\x25\xa1\x11\xad\xe2\x0b" "\x08\xae\x61\x64\x93\x7c\xaf\x0b\x9f\x51\x12\xf8\x2c\xfe\x65\x26\x61\x29" "\x66\xed\xfd\x36\xfc\x5d\x43\xdb\x02\x40\x79\x5a\x07\x24\x18\x58\xc2\x5b" "\x16\x86\x47\x0a\x6d\x65\x8e\x0f\x18\xb4\xca\x32\xbd\x2a\x80\x69\xa3\xf8" "\x29\x45\x7e\x05\xd1\x74\x29\x1e\xe4\xff\x85\x77\x1d\x38\x4a\xa6\xdf\x77" "\x9c\xba\xc9\xeb\x8a\xc0\xbb\x1c\x7a\x8b\x34\x58\x12\x05\x5b\x6b\xcc\xfe" "\xca\x77\xe4\x21\xe8\xf2\x4f\xe5\x1c\xc4\xc4\xc7\xf8\x1f\x9c\xfc\xa1\xad" "\x2f\xf1\x46\x1c\x22\x46\xd0\x78\x3e\x89\xc0\xe9\x3a\xf9\x63\xbb\xb8\x3d" "\x38\xab\x52\xe9\x06\x20\xc7\x83\xce\xd3\x34\xca\x27\x7f\xa6\x97\x1b\xb0" "\xa3\xdb\x5a\xd6\xae\x5e\xaf\xb8\x69\x6e\x8f\xc2\x3d\x66\x04\x8e\x95\xef" "\xc0\xfa\x96\xc9\xe1\x43\x24\xe3\x24\xd2\x3e\x6e\x95\xe2\x61\x0d\x10\x7c" "\x16\x93\x32\xb2\xf4\x6e\xc6\xed\x39\x04\xf9\xe0\x95\x85\xb9\xe3\x6a\x17" "\x52\xdd\x8a\xcd\xe5\x24\xb9\x2d\x9a\xbd\x30\xad\xf9\x7b\x4d\xb8\x53\xd3" "\x23\x65\xa2\xdf\x45\x89\xed\xf1\x7b\x4c\xe3\x9d\x9f\x1c\x87\x97\x4e\x35" "\x7f\x58\x7f\xdd\x5b\xbd\xf3\x32\x1c\xea\xfa\x07\xef\xe2\x79\xdd\xa3\xa5" "\x0b\x98\x46\x6f\x88\x2d\xd8\x47\xaa\x14\x82\x6a\xfc\x91\x92\x47\x24\x55" "\x3f\x19\x4c\xf6\x93\xc1\x13\x39\xf5\x74\xc4\xb2\x26\x1f\xd9\x73\x46\x33" "\x7f\xef\x3a\xaf\xd9\x6e\x14\x75\x0a\x39\x14\x79\x3f\x04\xf5\x7a\xa9\x08" "\xf5\x8f\x90\x18\xbf\xe1\xd4\x08\xad\xf0\x25\xbe\x36\x42\xee\x1b\xd3\x57" "\x94\x03\x9c\x44\xf3\xd8\xe3\x79\x46\x98\x4f\x9f\x7e\x38\xbc\xa2\x50\xcb" "\x50\xe4\x71\x9b\x01\xa2\x79\x30\xff\x2e\xc8\xee\x7a\x7f\xff\x58\x49\x07" "\x1a\x4a\xa0\xdf\x57\x73\x54\x92\xa2\x4d\xaf\x82\x0f\x86\xfa\x48\xfe\x12" "\x18\x0e\xfd\x6b\xcd\xc7\x8c\xb3\xf4\x01\x7c\xef\x4e\xad\x66\x46\xec\xef" "\x85\x49\xd4\x23\x74\x7e\xdd\x2f\xe5\x59\x0f\xac\xcd\xec\x72\x5d\x2b\x23" "\x78\xc2\x66\x52\x3e\x87\x4c\xbf\x89\x0b\x5a\x10\x51\x88\x43\xfe\xca\x06" "\x04\x93\x1d\xaf\x99\xf8\xaf\xbf\x4d\x3d\xa5\x2d\x7e\x0b\x07\x48\x05\x35" "\x44\x6b\x91\x75\x4a\xf6\x47\x6d\x84\x00\xde\x20\x01\xea\xd3\x5c\xf8\xbb" "\xb1\x29\xca\x23\xef\x70\x9b\x2a\xee\x0c\x4a\x40\xfd\xd5\x94\x0f\xdf\x67" "\x30\x7b\x9e\x1f\x00\x95\x85\x87\x7f\xc9\xd3\xb3\xac\x32\x82\xa1\x8a\xff" "\x16\x79\x8c\x7e\xbb\xb2\x0d\x11\x6a\xb0\xf7\xee\x56\x56\x4c\xb0\xd2\x42" "\xde\xb0\xd8\xa9\x35\xba\x86\x65\x4b\x11\x78\x17\x0c\xe2\x4b\xbb\xc0\x76" "\x74\xcb\x09\x30\x76\x7a\x39\x7e\x79\xe6\x55\x90\xd8\xa4\xa4\xff\xf5\x58" "\x93\xb4\x15\xb1\x07\x7d\xb5\xaa\xbf\x58\x21\x8d\x77\x64\x12\x4a\xa9\xdf" "\x62\x3e\xd3\x6a\x9b\xec\x2c\x1d\xa1\x0b\x6c\x54\x07\x26\x6d\xe9\xf8\x90" "\x98\x7e\x73\xf9\xb8\xd3\x24\x18\x7a\xf4\x26\x29\xa3\x57\x4e\xdf\x9c\x4f" "\x1f\x00\xd6\xf0\x35\x84\x93\x2d\xa0\xde\x56\x61\x57\x2f\xdb\x78\xb5\xfb" "\xb5\x8c\xe3\x1d\x8a\x19\x3a\x5f\x97\x6d\xeb\x65\xa9\xc6\x08\x56\x91\x67" "\xae\x8c\x22\x31\xc3\xc7\x9d\x8a\xf2\x0c\x1d\x97\xf9\xa6\x34\xcc\xb3\x38" "\xbb\x16\x0e\x6a\x49\x5a\x9b\x92\xb6\x27\xd6\xc5\xd0\xab\x67\x97\xd8\xfd" "\x1d\xe7\x40\xf2\x4d\x9b\xaa\x51\x8d\xa8\x2a\x55\x0a\x25\x87\x36\xaa\x2c" "\xf1\x19\xec\x21\x58\xe1\x77\x91\x18\x4c\xbc\xee\xea\xd4\x1f\xc4\x28\x2a" "\x8e\xd6\xae\x83\xf5\x51\x5f\x84\xf0\xab\x29\x3c\x3e\x16\xcb\x53\xd3\xda" "\x7d\xbf\x3f\x7f\xfc\xff\xee\x17\xef\x41\xc1\x09\xbd\xed\x1b\x58\xab\x43" "\x6d\x8e\x1f\x9a\xea\x2e\xe1\x3d\xfc\x8a\x16\x15\xb8\x94\xad\x42\xfc\x64" "\xe5\xaf\xe2\x3b\x4c\xcb\xec\x50\x95\x6e\x1e\x7a\x2c\x0d\x82\x89\x09\x40" "\x1f\x98\x30\x17\xb5\xd2\x89\xcb\x3f\x3f\x49\xb6\x28\xca\xf4\x96\xaf\x30" "\xe0\x7a\xa4\x0e\x88\x39\xdd\x6f\xf5\x86\x37\xcc\xba\x79\xf5\x7b\x84\xe9" "\x89\xe2\x49\x0e\x01\xf9\x4e\xa6\x9a\x3c\x42\x0e\x8d\xa1\xe5\xf7\x42\x6e" "\x07\x9d\x11\x7e\x28\xcd\x71\x8b\xce\xa6\xfb\x45\xb1\x78\xec\x4d\x96\xf5" "\x16\xd1\xd7\x42\x92\xf6\x64\xb4\x64\xb6\x5f\x9f\x4a\x66\x42\xf0\x4e\xe1" "\xa0\xb0\x89\x14\x74\x9b\xa2\x5b\xa3\x6d\xa0\xe7\x11\xd6\x50\x92\xdf\xb5" "\xe6\xca\x71\xbf\xc5\xf8\x96\xc9\x1d\x2f\xd9\x41\x75\xe0\xf5\x39\xde\xc8" "\x37\x66\x6f\x5c\x7c\x47\xef\xf9\x0a\x8c\xa5\xc5\x64\xb1\x9b\x96\xeb\x28" "\xa5\x96\xb1\x02\xae\x5d\x0a\xc7\x92\x57\x34\x07\xf3\x26\xa9\x42\x46\x68" "\x3a\x51\x2d\x1d\x15\x09\xe0\xc8\x1a\xa9\xaa\xd6\xb0\x45\xa0\xaa\x05\xdf" "\xa9\xfe\xbf\x93\x66\x9b\xa3\x67\x68\x71\xda\x16\x5e\xd5\xfd\xe7\x3f\xec" "\x8c\xb4\xdd\x82\xd7\x2b\x72\x43\xff\xc5\xcb\xdc\x9a\xaf\x86\x12\x3a\x40" "\xd2\xb0\x09\x62\x19\x4e\x2c\xca\xeb\x61\x74\x1b\x65\x39\xcb\x24\x40\x5a" "\xdf\xf8\x02\xf7\x9a\x7a\xaa\x3c\xb6\x24\x3c\xc6\x91\x1a\xa8\xd5\x44\x47" "\x3b\xac\x24\x32\xec\x87\x69\xcb\xd6\xf4\x98\x9b\xa4\x63\xe6\xbd\x83\xcc" "\x80\x50\xae\xa3\x99\x0e\x38\xb6\xbc\x5d\x27\x37\xfb\xfb\xdf\xf3\xee\xe3" "\x06\x4a\x5b\xce\x87\xee\x4f\x86\x0f\x72\x7f\xd5\xed\x67\x48\x59\x98\xf5" "\x11\x0a\x71\x09\xab\x1c\xc1\xad\x2b\xd1\x48\x25\x3c\x58\x87\x1a\x1f\xa1" "\xa9\x4f\x7f\x71\x4d\x08\x6d\x7f\x23\xbe\x3c\xa1\xe8\xd9\xf5\x89\x21\x22" "\x07\x1c\x5b\x62\xe2\x4f\x59\x9f\xd9\xaf\x70\x25\x2c\xd4\x6a\x53\x96\xb9" "\x6a\x87\x60\x1a\x96\xde\xa4\x4d\x40\x46\x5b\x99\xc5\x34\x9c\x26\x87\x58" "\x0f\x94\x5f\xa6\x23\x93\x4c\x3d\x5d\xa9\x13\xc7\x0e\x3c\x80\x48\x4b\x90" "\x25\x0b\xe6\xd9\x71\xdc\xb0\x83\x6d\x5c\xe3\x03\x1c\x3d\x44\xd8\xaa\x53" "\x69\x0f\x40\x1f\x8b\xd8\x2c\x52\xb5\x58\xa7\x2e\xa7\x54\x07\xca\x16\xdf" "\xc6\xda\x96\xdb\x2f\x84\x7e\x6d\x39\xbc\x41\xd0\xa5\x5f\x62\x93\x62\x2a" "\xc4\x3f\x3e\x41\x6c\xaa\xf9\x10\x61\xac\xbe\xf9\xd8\x89\xa2\x81\x06\xc0" "\xaf\xdd\x76\x7e\xc0\xfa\x1a\xd0\xd1\xa7\x0f\xb3\xfe\x87\xf2\xa9\x19\xcf" "\x6c\xd6\xd2\x89\xd8\xe0\x28\xe9\xf9\x93\x61\xc4\x5e\x92\x03\xa6\x2c\x19" "\xbf\xea\xac\x6c\xa0\x2d\x4d\xa4\xa0\x31\x72\x60\x51\x2d\xdf\x7e\x3b\x01" "\xb7\xbb\xd9\x53\xf8\xe0\x21\xd7\x5c\x88\x90\xff\x1e\x27\x71\x53\xe6\xdb" "\x0f\xe2\x50\x70\xfb\xd7\xe0\xd7\x25\x04\x09\x90\x37\xa5\xf7\x3a\x7a\xdb" "\xf2\xdc\xfb\xf6\x8c\x1c\xd7\x44\xdc\x6b\xde\xba\xb5\xec\x63\x0d\x01\x33" "\x87\x79\x33\x0d\x95\x87\x1e\x64\xb1\x6f\xf0\x28\x35\x2d\xd4\x1f\x94\xd4" "\xe5\x0c\xf1\x3f\xbe\x9e\xec\x79\x16\xef\x09\x2d\xff\x5b\x3a\x19\xf1\xaa" "\x5c\xab\xed\x47\x5c\xa4\x18\x0b\x1a\x4d\x35\x88\xe0\x51\x9f\xd0\xe2\xf3" "\x8d\x74\x29\x60\x0e\x97\xe7\x51\x58\x9a\xc9\xc4\x2f\xe5\x7c\x0e\x43\x9d" "\x1f\xd6\xff\xaa\xd1\xa1\xb4\xb1\x34\x32\x34\x9f\x17\x1b\x64\x20\xbb\xa8" "\x16\xbd\x1b\xf4\xb1\xe1\x1f\x22\x54\x9d\xd1\x03\x52\xf9\xd4\xf3\x80\xd7" "\xcf\x0f\x07\xce\xc5\xa0\xbf\xd5\x3e\x6e\x42\x04\x3a\x48\xde\x30\x68\x7c" "\x65\xb9\x3b\x6a\x47\x36\xc2\x40\x5b\xcf\xff\x18\x71\x28\x9b\x17\x1f\x28" "\x8b\xf9\xf4\xe1\x6f\x18\x83\xe1\x8b\xee\x49\x40\x74\xf6\x60\x48\xe5\x1f" "\xc8\xf5\xba\xba\x69\x1c\x44\x25\xab\xb5\x67\xbd\xcf\xb5\x49\xaf\x89\xa0" "\x07\x23\x97\xfe\x2e\x07\x90\xcc\x06\xd1\x2b\x40\xfc\x9b\x16\x8c\xaf\x18" "\xaf\x0d\xe2\xda\x94\x56\x42\x50\x73\xed\x4f\xa5\x11\x1c\x5f\x10\xc0\x46" "\x19\xdf\x68\x20\x2c\xb3\x69\x57\xb5\x1e\xbe\x9c\x75\x1c\xb3\xfc\xaa\x48" "\x7e\x59\x1e\x0e\xa8\x1c\x4c\x96\x86\x66\xe9\x60\x44\xdc\x40\x40\x08\x10" "\x89\xa6\xa5\xde\x3d\x70\x12\xf1\x56\xa3\x69\x1c\xc5\xbe\xb2\xb8\xe4\xfe" "\x87\xac\x6f\x3e\x9e\x6f\xd3\x27\xa2\xc7\x39\xf5\xb7\x2c\xd4\x59\x60\xc1" "\xa6\xfd\x9f\xbc\x00\x8a\xda\x63\x01\xd3\x36\x99\xbc\x89\x7d\xad\xff\xd3" "\x28\x29\x60\x18\x08\x15\x7e\x57\x9f\xf8\xfe\x08\x31\x3c\xd3\x3b\x1f\x26" "\xbe\x31\x7a\x9c\xe6\xa8\x35\xfb\xff\x2f\xaa\xf0\x90\xda\xcf\xa1\xee\x27" "\x2b\x05\x4b\x4b\xa8\x48\xcf\x0d\xfa\x3c\xcc\x53\xd3\xde\xef\x96\x8d\xb2" "\x29\x29\x28\x3a\x7c\x57\x96\x9a\xba\x14\xac\x75\xc0\xd9\x1f\xad\x5c\xb6" "\x43\xda\x76\xa8\xbe\x78\xf3\xf2\x74\x29\x29\xd4\x27\xac\x8c\x9a\x62\x75" "\x0f\x0d\xca\xa5\xff\x97\x03\x0c\x6b\x5f\x67\xe3\x28\x0f\xac\xd1\xce\xbf" "\xaa\x6c\x65\xe8\xa2\x07\xa9\x7e\x55\x03\x2a\xd6\x7e\x6f\x4b\x5a\xcf\xd1" "\x24\x96\xa3\x35\x52\x9d\xbd\x86\x5a\x88\xfd\x56\x08\xd0\xcc\x0f\xd4\xd4" "\x88\xb5\xf3\xbc\x7b\x3f\x2d\xd5\x5b\x98\x96\x1d\xb1\xf1\x1a\x92\x76\x46" "\x11\x2e\x86\xe8\xc9\x23\xab\x3a\xb6\xa5\xe3\xd6\x17\x13\xe5\x4f\x5e\xcb" "\xba\xb9\x56\x7b\x8b\x27\x1a\x05\x3d\x0c\xd8\xbc\xdf\x6e\x7a\xec\x9b\x73" "\xf6\xc4\x19\x50\x00\x2e\xc1\xa6\xa3\x3f\x3f\x9f\x36\x55\x36\x17\x65\x19" "\x21\x30\xf9\x82\x3a\x07\xa2\x9c\x02\x15\x97\x82\xbc\x29\x07\x72\x2a\x53" "\xe6\x31\xa2\x27\xde\xe2\x9f\xef\x9d\xb3\xa5\xde\xc9\xf1\xb0\x90\x7f\xcc" "\x3a\x82\x98\x03\x86\x30\xbb\x1f\xb2\x4c\xb6\xe8\xae\x45\x7b\x0d\xf9\x79" "\x85\xdf\xaa\x4d\x2d\x6a\xa9\x3f\xbb\x76\x92\x1a\xd4\xf0\xe5\x2d\x32\x5f" "\x58\xf7\x6b\x9b\x9c\x59\x57\x9c\x95\x98\x09\x01\x62\x31\x6a\xc3\xe7\x64" "\x29\x0d\x8b\xdc\x75\x3c\x73\xdd\x76\xa4\x2c\x8e\x11\xb2\x60\xc5\x1d\xad" "\x35\x7a\x2b\x3f\x19\x32\x67\x7b\xb3\xd0\xb3\xab\xbf\x08\x21\xae\x20\x7c" "\x52\x74\xc1\x5d\x28\xab\x30\x9f\xc9\x92", 4096); syscall(__NR_pwrite64, /*fd=*/r[0], /*buf=*/0x20000240ul, /*count=*/0x1000ul, /*pos=*/6ul); *(uint64_t*)0x20000080 = 4; *(uint64_t*)0x20000088 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0109428, /*arg=*/0x20000080ul); memcpy((void*)0x20000080, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000080ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; *(uint64_t*)0x20000140 = 0; *(uint64_t*)0x20000148 = 5; *(uint64_t*)0x20000150 = 0; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x4010942a, /*arg=*/0x20000140ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); loop(); return 0; }