// https://syzkaller.appspot.com/bug?id=5870f4bbc7294f2b4405a408e35e7e96100fb284 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); memcpy((void*)0x20000240, "udf\000", 4); memcpy((void*)0x20001900, "./file0\000", 8); memcpy((void*)0x20000000, "noadinicb", 9); *(uint8_t*)0x20000009 = 0x2c; memcpy((void*)0x2000000a, "mode", 4); *(uint8_t*)0x2000000e = 0x3d; sprintf((char*)0x2000000f, "%023llo", (long long)0x1ff); *(uint8_t*)0x20000026 = 0x2c; memcpy((void*)0x20000027, "shortad", 7); *(uint8_t*)0x2000002e = 0x2c; *(uint8_t*)0x2000002f = 0; memcpy( (void*)0x20003240, "\x78\x9c\xec\xdd\x4b\x6c\x5c\xd5\x19\x07\xf0\xef\xf8\xda\x89\xe3\xd0\x32" "\xbc\x5c\x4a\x59\x8c\x04\x0b\xe4\x42\x64\xe7\x01\x36\xa9\xaa\xa4\x31\x93" "\xa2\x46\x40\x71\xdc\xa8\x22\x8b\x4c\xe2\x49\x3a\xc2\x19\xbb\x76\x52\x19" "\x84\x20\xed\x06\xaa\x2e\x4a\xa5\xae\x58\x54\x08\x95\x4d\x2b\x24\x16\xb4" "\xaa\xda\x0d\x42\x5d\xb4\x8b\x4a\x51\x37\xed\x06\x29\x82\x2a\x6d\x17\x48" "\xee\xa2\x6a\x17\x28\xa9\xee\xf8\x8e\x3d\x76\x12\x32\x40\x9c\xc1\xe9\xef" "\x07\xc9\x77\xe6\xcc\xff\xce\x9c\x73\x2d\x45\xfa\x7c\xe7\x11\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xc4\xd7\x1e\xd9\x3b\x3c\x92" "\xba\xbd\x0a\x00\x00\x00\x60\x3d\x3d\x36\xf1\xe4\xf0\x0e\xfd\x3f\x00\x00" "\x00\xdc\xd0\x0e\xba\xfe\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xb0\x1e\x52\x64\x71\x2e\x52\xbc\xfb\xc6\x62\x3a\xd2" "\xbc\xbd\xa4\xff\x40\xbd\x71\x7a\x61\x72\xbc\x72\xf9\xc3\xb6\xa4\x48\xd1" "\x13\x59\x33\x9f\xff\xe9\x1f\xd9\xbe\x63\xe7\xae\x07\x1f\x1a\x6d\xd5\x8f" "\x3e\xfe\x5a\xfb\x62\x3c\x3e\x71\x70\x6f\x79\xdf\xcc\xc9\xd9\xb9\xda\xfc" "\x7c\x6d\xaa\x3c\xd9\xa8\x1f\x9b\x99\xaa\x75\xfc\x08\x9f\xf6\xf8\xb5\x86" "\x9a\x27\xa0\x7c\xf2\xe9\xd3\x53\xc7\x8f\xcf\x97\xb7\x6f\xdb\xb1\xea\xee" "\x85\xd2\xf9\xcd\x5b\x07\x4b\xbb\x47\x0f\x1f\xda\xdf\xca\x4e\x8e\x57\x2a" "\x13\x6d\x99\xde\xbe\x4f\xfc\xec\x97\x48\xd7\xee\xa1\x00\x00\x00\xd8\x80" "\x36\x45\x16\xf7\x45\x8a\xf2\x5b\xff\x48\xd5\x88\xe8\x89\x4f\xdf\x0b\x5f" "\xe5\x77\x07\xeb\x6d\x4b\x94\xf2\xfe\xbb\xb9\x89\xc9\xf1\x4a\x73\x23\xd3" "\xf5\x6a\xe3\x54\x7e\x67\xea\x29\x52\xa5\xe6\xff\xcb\xf6\xb4\x7a\xe4\xeb" "\xd0\x8b\x7f\x3a\x29\xce\xe4\x3f\xa7\x7c\xc1\x43\xf9\xf6\x26\x66\xab\x73" "\xd5\xa3\xd3\xb5\xf2\x13\xd5\xb9\x53\xf5\x53\xf5\x99\x46\xea\x59\x5a\x6d" "\x6a\x6e\xb3\x27\x46\x53\xc4\x6c\x44\x2c\x66\xdd\x5e\x3b\x00\x00\x00\xdd" "\xd2\x17\x59\xbc\x1f\x29\x5e\xf9\x60\x31\x1d\x8d\x88\xac\xd5\x07\x7f\xf9" "\xb1\x89\x27\x87\x77\x5c\xfd\x01\x4a\xd7\x61\x91\x97\xd1\x9b\x3f\x75\x16" "\x71\x36\x36\x42\xcf\x0e\x00\x00\x00\xdd\xb5\x39\xb2\x78\x34\x52\x6c\x79" "\x6d\x38\x8e\x15\x7d\x75\xb3\x6d\xde\xd3\x17\x37\xe5\x75\x31\xe2\xbb\x45" "\xf2\xe5\xe2\x76\x4a\x11\x71\x2e\xe2\x5f\xae\x27\x03\x00\x00\xc0\x86\xd0" "\x1b\x59\xfc\x29\x52\xcc\xa4\xc5\x34\xd5\xea\xfd\x9b\xaf\x2b\x3f\xf0\xad" "\xf2\xa3\x8d\xe3\x33\x6d\xd9\xd6\xeb\xca\x37\xfc\xfb\x03\xae\x27\xaf\x4d" "\x00\x00\x00\xe0\x33\xa0\x3f\xb2\x38\xda\x7c\xc5\xff\x62\xfa\xe4\x1f\x76" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xeb\x2d\x8b\xdf\x46\x8a\x37\x4f\xde\x97" "\x66\xf3\x9b\x43\x93\xe3\x95\xf2\xc4\x6c\x75\xae\xde\x38\x51\x3e\x58\x3d" "\x3a\x5d\x6b\xa6\x52\x4f\x6f\x5f\x5e\xcb\xc5\x51\x17\x2f\x5e\xbc\x58\x4a" "\x4b\xb5\x5c\xd4\xe1\xa2\xee\x29\xea\x13\x45\x3d\x52\xd4\xd9\xa2\x9e\x29" "\xea\xcb\x45\x7d\xb5\xa8\x6f\x16\xf5\xed\xa2\x9e\x2d\xea\xb9\xa2\x2e\x16" "\x35\x7a\x8a\xe7\x2f\x6a\xb9\xa8\xc3\x45\xdd\x53\xd4\x27\x8a\x7a\xa4\xa8" "\xb3\x45\x3d\x53\xd4\x97\x8b\xfa\x6a\x51\xdf\x2c\xea\xdb\x45\x3d\x5b\xd4" "\x73\x45\x5d\x2c\x6a\x64\x5d\xfc\x71\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xac\x93\x2d\x91\xc5\xa6\x48\x51\x7f\xe5\x7b\x71\x26\x9f\x28\x9d\xdf\xbc" "\x75\xf0\xe6\xdd\x63\x07\x27\xbe\x91\xda\x72\x5f\xb8\xca\xe3\xe4\xd9\x6d" "\x11\xf1\x4e\x44\x9c\xcd\x27\x86\x0e\xd4\x1b\xa7\x17\xca\x93\xe3\x95\xca" "\x44\x5b\xae\xb7\x6f\xa9\xe6\xa5\x27\x3f\xae\x27\xff\xef\xda\xef\x0b\x00" "\x00\x00\x58\xd1\x1f\x59\x3c\xdf\xec\xde\x17\xd3\xf7\xbb\xbd\x18\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x43\xea" "\x89\x2c\x3e\x88\x14\x2f\x36\x16\x53\xa4\x7c\x26\xc5\x91\x58\xaa\xe7\xb2" "\x6e\xaf\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x17\xfd\x29\x8b\x7d\x91\xe2" "\x9f\x8f\xf4\x37\x6f\x9f\x8d\x88\xbb\x22\xe2\xc2\xc5\x0b\x17\x2f\xbc\xdf" "\xfb\xe1\x85\x8b\x6b\x75\x7b\xc5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac" "\x8b\x94\xc5\x1b\x91\xe2\xc3\x5f\x2e\xa6\x52\x44\x2c\x94\xce\x6f\xde\x3a" "\x58\xda\x3d\x7a\xf8\xd0\xfe\x2c\xb2\x48\x79\xa4\x3d\xff\xf8\xc4\xc1\xbd" "\xe5\x7d\x33\x27\x67\xe7\x6a\xf3\xf3\xb5\xa9\xf2\x64\xa3\x7e\x6c\x66\xaa" "\xd6\xe9\xd3\xf5\x1f\xa8\x37\x4e\x2f\x4c\x8e\x57\xd6\x65\x33\x57\xb5\x65" "\x9d\xd7\xbf\xa5\x7f\xdf\xcc\xec\x33\x73\xf5\x13\xdf\x39\x75\xd9\xfb\x07" "\xfa\xf7\x1e\x9d\x3f\x35\x57\x3d\x76\xf9\xbb\x63\x4b\x94\x22\x86\xdb\x67" "\x86\x9a\x0b\x9e\x1c\xaf\x34\x17\x3d\x5d\xaf\x36\x9a\x87\xa6\x9e\x2b\x2c" "\xb0\x14\x51\xee\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\x06\x52" "\x16\x3f\x8f\x14\xf5\xbf\xec\x4c\xe5\x62\xae\x37\x22\x52\xc4\xe7\x96\x6e" "\x65\xcb\xd9\xd7\x9f\x6b\xce\x37\x4d\xaf\xa9\x2d\x0b\xa5\xf3\x9b\xb7\x0e" "\x96\x76\x8f\x1e\x3e\xb4\xbf\x93\x71\xea\x74\xa1\x43\x07\xea\x8d\xd3\x0b" "\xe5\xc9\xf1\x4a\x65\xa2\x6d\xba\xb7\xef\xd2\x68\xbe\xa6\x94\xb2\x78\x2a" "\x52\x7c\xfb\xf7\x77\x46\xb9\xb9\x9f\x81\x88\x52\x44\x79\x4d\x36\xcf\xfd" "\x2e\x52\xbc\xf0\xde\xce\x22\x57\xfa\x52\x9e\xdb\xb3\x2a\xd5\x3f\x34\x39" "\x5e\x29\x3f\x36\xd3\x78\x60\xef\xf4\xf4\xcc\xb1\xea\xa9\xea\xd1\xe9\x5a" "\x79\x62\xb6\x7a\xac\xd6\xe9\xfa\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e" "\xe3\x06\x52\x16\xf7\x44\x8a\x97\x7e\x74\x36\x0d\x17\x73\xbd\x11\x91\x96" "\x4a\x44\x64\xcb\xd9\xd7\xbf\x12\xd1\x53\x8c\xfb\xd3\xea\xba\xac\x74\x7e" "\xf3\xd6\xc1\xcf\xef\x1e\x3d\x7c\x68\xff\xd2\xf8\xe6\xdd\x63\x63\x03\xf7" "\x5f\x69\x7e\xed\xe1\x57\x34\x74\xa0\xde\x38\xbd\x50\x9e\x1c\xaf\x54\x26" "\xda\xa6\x7b\xfb\x2e\x8d\xe6\x6b\x4a\x29\x8b\x97\x22\xc5\xc4\xdf\xef\x8c" "\xe1\xe6\x7e\x06\x22\x4a\x11\xc3\x6b\xb2\x79\x6e\x2c\x52\xfc\x7a\xe4\xee" "\x22\xd7\xb3\x29\xcf\x8d\xb4\xb6\xb3\xf4\x88\xc7\xeb\xd3\xb5\xe1\x3c\x7b" "\x3a\x52\xfc\xf4\xc7\xad\x6c\x34\xb3\x3b\x8b\xec\x6d\x2b\xd9\x91\x3c\xfb" "\x7e\xa4\xb8\xf9\x07\xab\xb3\xbb\x8a\xec\xed\x2b\xd9\xed\x79\xf6\xab\x91" "\xe2\xa9\x9f\x5c\x3e\x7b\xc7\x4a\x76\x47\x9e\x7d\x2a\x52\x7c\xf3\xad\x72" "\x2b\x3b\x90\x67\xc7\x8a\xec\xe0\x4a\x76\xdb\xb1\x99\xe9\xa9\x4e\x4f\x2f" "\x00\x00\x00\x37\xb6\xbc\xff\xff\x4d\xa4\xb8\xe3\xae\xaf\xa7\x56\xcf\x7b" "\xc5\xfe\xff\xb9\xe6\x7c\xd3\x99\x35\x75\xd9\x25\x3d\xff\x47\x8f\xaf\x55" "\xff\x5f\x6a\x9b\x3b\x53\xf4\xf5\x3f\x2c\xfa\xff\x91\xab\xf4\xff\xd3\x91" "\xe2\xdf\xf7\xde\x5d\xe4\x96\x7a\xef\xed\xc5\xfd\xb7\x34\xff\x5e\xe9\xff" "\x1f\x8f\x14\xff\xed\x5d\x9d\xdd\x51\x64\x6f\x5d\xc9\x8e\x74\xba\x2d\x00" "\x00\x00\xb8\x1e\xf2\xfe\xff\x67\x91\xe2\xc5\xc5\xf7\x7a\x5b\x3d\x6f\xd1" "\xff\x17\x9d\xf5\xe5\xfb\xff\xbb\x7a\x57\xd7\x65\x5d\xea\xff\x6f\x69\x9b" "\xcb\xd7\x34\xff\xcc\xb3\x4f\x57\xa7\xa7\x6b\x73\x06\x06\x06\x06\xcb\x83" "\x8f\xf1\x8f\x23\x00\x00\xdc\x60\xf2\xfe\xff\x70\xa4\x38\xfa\xab\x9e\xd4" "\xba\x8e\x5d\xf4\xff\x37\x2d\xdd\x5a\xe9\xff\xff\xf3\xfc\x4a\xff\xff\xf0" "\x9a\xba\xac\x4b\xfd\xff\xad\x6d\x73\x0f\x2f\xad\x3f\xfa\x7a\x23\xfa\x4f" "\x9d\x9c\xed\x1b\x8c\xe8\x9f\x7f\xe6\xd9\x07\xea\x27\xab\x27\x6a\x27\x6a" "\x8d\x91\xb1\xed\xbb\x76\x8c\x3d\x34\xba\xab\x6f\x53\xeb\xda\xfe\xca\xa8" "\xe3\x53\x07\x00\x00\x00\x1b\x46\xde\xff\xbf\x13\x29\xfe\xf6\xc7\x3f\x2f" "\xbf\x8f\xbd\x93\xeb\xff\x03\x6b\xea\xb2\x2e\xf5\xff\xb7\xb5\xef\x29\xda" "\xaf\xff\x77\x7c\x2a\x00\x00\x00\xe0\x86\x95\xf7\xff\xdb\x22\xc5\xbb\xbb" "\xfe\xba\xfc\x79\x73\xab\xfb\xff\x95\x0e\x3d\xef\xff\x5b\x9f\xff\x77\xdf" "\x3d\xab\xeb\xf2\x6f\x09\xba\xd4\xff\xdf\xde\x36\x57\x2a\xd6\xf5\xe0\xc7" "\x3c\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0" "\x2d\x03\x29\x8b\xdb\x22\xc5\x6b\x1f\xde\x9f\xc6\x8a\xb9\x4e\x3e\xff\x6f" "\x6a\x4d\x5d\xd6\xa5\xf7\xff\x0f\xb6\xcd\x4d\xc5\xf5\xf9\xfe\xbf\x8e\x4f" "\x32\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\xde\x40\xca\x62\x4f\xa4\xf8" "\xc5\x0b\x7f\x88\x3d\xc5\xdc\xea\xef\xff\x8b\x7b\x5b\xd9\xf6\xef\xff\xbb" "\x92\x85\xe6\x77\xfb\x95\x76\x8f\x1e\x3e\xb4\xbf\x93\xf1\xb5\xfa\xfe\x3f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc7\xbe\xfd\xac\xc6\x55" "\xc5\x01\x1c\xff\x9d\x39\x89\x4d\xd0\xc5\xac\x04\x77\x77\xa7\x44\x90\xd8" "\xf8\x27\x20\x42\xc4\x10\x11\x8a\x06\xd3\xe8\x46\x24\xd3\x26\x91\xc1\x64" "\x32\x26\x29\x74\x99\x9d\xe0\x2a\x6b\x57\xc5\xad\x08\x59\xf8\x00\x7d\x84" "\xbc\x80\x10\xff\x54\xdc\x28\xe3\x13\x44\xee\x9d\x33\x52\xb5\x58\x69\xd2" "\x4c\x03\x9f\x0f\x2d\x5f\x26\x73\xee\xbd\xe7\x26\xab\x5f\xe6\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\xf1\x4a\x91\xe3\x66\xa4\xf8\xfe\xdb\x41\x3a\xc9\xf5\xeb\xa1\xa9\x6b\xdd" "\xde\xad\xdb\xab\x8b\x4b\x0f\x3e\x6c\x3a\x45\x8a\x56\xe4\x66\x7d\xfd\x7f" "\xea\xe5\xab\x73\xaf\xbc\xfa\xda\xeb\xf3\xa3\xfe\xf7\xf1\xe7\xed\xb9\x78" "\x7f\xe5\xfa\x5b\xd5\xdb\x3b\xdb\xfd\xdd\x8d\xbd\xbd\x8d\xf5\x6a\xb5\xd7" "\xbd\xb9\xb3\xbe\xf1\xbf\xcf\x70\xd6\xe3\xff\x69\xa6\xf9\x06\x54\xdb\x9f" "\xdd\x5a\xdf\xdc\xdc\xab\xae\xbe\x34\xf7\xb7\xb7\x6f\xb7\x7f\xb9\xf2\xf4" "\xb3\xed\x37\xe6\x3f\xfe\xe8\x9d\xd1\xda\xd5\xc5\xa5\xa5\x95\xfb\xd6\x4c" "\x4c\x3e\xf2\xd5\xff\x25\x9d\xdf\xa9\x00\x00\x00\xb8\x84\x9e\x8a\x1c\xdf" "\x44\x8a\xea\xbb\x5f\xd3\x0f\x39\xa2\x15\x67\x9f\x85\x1f\xf2\xbb\x83\xc7" "\x6d\x3a\xda\xf5\xfc\xdd\xdc\xc4\xea\xe2\x52\x73\x23\x5b\xdd\x4e\x6f\xbf" "\x7e\x33\xb5\xca\xaa\x76\xf3\xef\x2f\x0b\xa3\x19\xf9\x02\x66\xf1\xb3\x49" "\x71\x10\x11\xad\x7a\xc3\x33\xf5\xed\xad\xf4\x3b\xbb\x9d\x1b\x5b\x1b\xd5" "\x72\x67\x77\xbf\xbb\xdf\xdd\xe9\xa5\xd6\x70\xb7\xa9\xb9\xcd\x56\xcc\xa7" "\x88\x7e\x44\x0c\xf2\xb8\xf7\x0e\x00\x00\xc0\xb8\x4c\x46\x8e\xcd\x48\xf1" "\xd5\x6f\x83\xf4\x63\x8e\xc8\xa3\x39\xf8\xc5\xf7\x56\x3e\x98\x9d\x7b\xf8" "\x09\xda\x17\xb0\xc9\x07\x98\xa8\x2f\x9d\x23\x8e\xe3\x32\xcc\xec\x00\x00" "\x00\x30\x5e\x57\x3e\x59\xfe\xf2\xf9\x48\x31\xfd\xf5\x6c\xfc\x94\x87\x73" "\x75\x33\x36\x2f\x4c\xc6\x33\x75\x07\x11\x9f\x0f\x57\xc6\x61\x79\x9d\x52" "\x44\x9c\x44\xfc\xe1\xf3\x64\x00\x00\x00\xb8\x14\x26\x22\xc7\x72\xa4\xd8" "\x49\x83\xf4\x73\x2e\xb3\x7f\xf3\x5c\xf9\xb5\x0f\xab\x77\x7b\x9b\x3b\xf7" "\xad\x1d\x3d\x57\x7e\xe9\xff\x3e\xe0\x22\x79\x36\x01\x00\x00\x80\x27\xc0" "\x54\xe4\xb8\xd7\x3c\xf1\x3f\x48\xf7\x7c\x9e\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\x13\x2b\xc7\x9b\x91\xe2\x68\xfb\x85\x34\xc8\x11\x31\xb3\xba\xb8\x54" "\xad\xf4\x3b\xbb\xdd\xde\xa7\xd5\xf5\xce\x8d\xad\x8d\x66\x55\x6a\x4d\x4c" "\xd6\xad\xca\x51\xa7\xa7\xa7\xa7\xed\x34\x6c\x55\x3a\x5b\xba\x50\xba\x5c" "\xba\x56\xda\x2f\x3d\x28\x3d\x2c\xbd\x53\x7a\x54\x7a\xb7\xf4\xb8\xf4\xa4" "\x74\x50\x1a\xad\x72\xfd\xd2\xaa\x74\xb6\x74\xa1\x74\xb9\x74\xad\xb4\x5f" "\x7a\x50\x7a\x58\x7a\xa7\xf4\xa8\xf4\x6e\xe9\x71\xe9\x49\xe9\xa0\x34\xf2" "\x38\x7f\x5e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe3\xd1\x8a\x1c\xbf\x47\x8a\x2f\x7a\x83" "\x74\x9a\xeb\xaf\xa4\x58\x8b\x61\x4f\xf2\xb8\x77\x07\x00\x00\x00\x9c\x87" "\x3f\x03\x00\x00\xff\xff\x39\xdc\x49\x80", 6310); syz_mount_image(0x20000240, 0x20001900, 0, 0x20000000, 5, 0x18a6, 0x20003240); memcpy((void*)0x20000000, "tmpfs\000", 6); memcpy((void*)0x20000040, "./bus\000", 6); syz_mount_image(0x20000000, 0x20000040, 0, 0, 2, 0, 0x20000000); return 0; }