// https://syzkaller.appspot.com/bug?id=3e5389d59338c0dd31e39187eb1bd9941c20cfd3 // 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 #ifndef __NR_ftruncate #define __NR_ftruncate 46 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } //% 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; } uint64_t r[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); use_temporary_dir(); intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x20000c40, "udf\000", 4)); NONFAILING(memcpy((void*)0x200000c0, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x20000100, "noadinicb,nostrict,mode=00000000000000000000004,uid=forget,noadinicb," "umask=00000000000000040002000,lastblock=00000000000000000013,undelete," "partition=00000000000000000005,\000", 171)); NONFAILING(memcpy( (void*)0x20000d00, "\x78\x9c\xec\xdd\x5d\x68\x5c\xe9\x79\x07\xf0\xe7\x9d\x23\xad\x46\xda\x34" "\xd1\x66\x13\x6f\xd2\x66\xd3\x81\x94\xc4\x28\xb5\xf1\x57\x6c\x05\x97\x20" "\x67\x15\xb5\x01\xc7\x1b\x22\x2b\x74\xaf\xa2\xd1\x87\x9d\x61\xe5\x91\x91" "\xe4\xc6\x9b\xb6\x41\x6d\x49\x0b\xbd\x09\xdd\x9b\xd2\x9b\x22\x9a\x2e\x2d" "\xe4\xa2\x57\xdd\x5e\x56\x69\xb6\x90\x50\x0a\x25\xe4\x22\xbd\x28\x08\x9a" "\x2c\x7b\xd1\x0b\x5d\x04\x0a\x2d\x1b\x85\x73\xe6\x1d\x69\x64\xcb\xb6\xb2" "\x5e\x5b\xd2\xee\xef\xb7\xcc\xfe\xcf\x9c\x79\xce\xf8\xfd\x18\x9f\x39\x02" "\xbf\x3a\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\x44\x7c" "\xf6\x73\x97\x4e\x9d\x4e\x07\xdd\x0a\x00\xe0\x71\xba\x32\xf9\xa5\x53\x67" "\x7d\xff\x03\xc0\xbb\xca\x55\x3f\xff\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x61\x97\xa2\x88\x63\x91\x62\xe8\xd5\xcd\x34\x5d\x3d\xef\xa8" "\x5f\x6e\xb5\x6f\xdd\x9e\x1a\x9f\xd8\xfb\xb0\xc1\x14\x29\x6a\x51\x54\xf5" "\xe5\xa3\x7e\xfa\xcc\xd9\x73\x9f\x3a\x7f\x61\xb4\x9b\xf7\x3f\xfe\xed\xf6" "\xe1\x78\x7e\xf2\xea\xa5\xc6\x73\x8b\x37\x6e\x2e\xcd\x2f\x2f\xcf\xcf\x35" "\xa6\xda\xad\xd9\xc5\xb9\xf9\x7d\xbf\xc3\xc3\x1e\x7f\xa7\x91\x6a\x00\x1a" "\x37\x5e\xbc\x35\x77\xed\xda\x72\xe3\xcc\xc9\xb3\xbb\x5e\xbe\x3d\xfc\xfa" "\xc0\x93\xc7\x86\x2f\x5e\x38\x71\x7e\xb4\x5b\x3b\x35\x3e\x31\x31\xd9\x53" "\xd3\xd7\xff\x96\xff\xf4\xbb\xdc\x6b\x85\xc7\x13\x51\x44\x33\x52\xbc\x39" "\xfc\x46\x6a\x46\x44\x2d\x1e\x7e\x2c\x1e\xf0\xd9\x79\xd4\x06\xab\x4e\x8c" "\x54\x9d\x98\x1a\x9f\xa8\x3a\xb2\xd0\x6a\xb6\x57\xca\x17\x53\x2d\x57\xd5" "\x22\x1a\x3d\x07\x8d\x75\xc7\xe8\x31\xcc\xc5\x43\x19\x8b\x58\x2d\x9b\x5f" "\x36\x78\xa4\xec\xde\xe4\xcd\xe6\x52\x73\x66\x61\xbe\xf1\xc5\xe6\xd2\x4a" "\x6b\xa5\xb5\xd8\x4e\xb5\x4e\x6b\xcb\xfe\x34\xa2\x16\xa3\x29\x62\x2d\x22" "\x36\x06\xee\x7e\xbb\xfe\x28\xe2\xa3\x91\xe2\xe5\x53\x9b\x69\x26\x22\x8a" "\xee\x38\x7c\xb2\x5a\x18\xfc\xe0\xf6\xd4\x1e\x41\x1f\xf7\xa1\x6c\x67\xa3" "\x3f\x62\xad\x76\x04\xe6\xec\x10\x1b\x88\x22\xae\x44\x8a\x9f\xbd\x76\x3c" "\x66\xcb\x31\xcb\x8f\xf8\x78\xc4\x17\xca\x7c\x35\xe2\x95\x32\x3f\x13\x91" "\xca\x0f\xc6\xb9\x88\x9f\xee\xf1\x39\xe2\x68\xea\x8b\x22\xfe\x3d\x52\x2c" "\xa6\xcd\x34\x57\x9d\x0f\xba\xe7\x95\xcb\x5f\x6e\x7c\xbe\x7d\x6d\xb1\xa7" "\xb6\x7b\x5e\x39\xf2\xdf\x0f\x8f\xd3\x21\x3f\x37\xd5\xa3\x88\x99\xea\x8c" "\xbf\x99\xde\xfa\xc5\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x6f\xb7\xc1\x28\xe2\xdb\x91\xe2\x4f\x9e\xfd\xbd\x6a\x5d\x71\x54\xeb" "\xd2\xdf\x77\x71\xf4\x3d\x2f\xfc\x76\xef\x9a\xf1\x67\x1e\xf0\x3e\x65\xed" "\xc9\x88\x58\xad\xed\x6f\x4d\x6e\x7f\x5e\x3a\x9c\x6a\xe5\x7f\x8f\xa0\x63" "\xec\x4b\x3d\x8a\xf8\x46\x5e\xff\xf7\x47\x07\xdd\x18\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x77\xb5\x22\x5e\x88\x14\x5f\x39" "\x71\x3c\xad\x45\xef\x3d\xc5\x5b\xed\xeb\x8d\xab\xcd\x99\x85\xce\x5d\x61" "\xbb\xf7\xfe\xed\xde\x33\x7d\x6b\x6b\x6b\xab\x91\x3a\x39\x96\x73\x3a\xe7" "\x6a\xce\xb5\x9c\xeb\x39\x37\x72\x46\x2d\x1f\x9f\x73\x2c\xe7\x74\xce\xd5" "\x9c\x6b\x39\xd7\x73\x6e\xe4\x8c\x22\x1f\x9f\x73\x2c\xe7\x74\xce\xd5\x9c" "\x6b\x39\xd7\x73\x6e\xe4\x8c\xbe\x7c\x7c\xce\xb1\x9c\xd3\x39\x57\x73\xae" "\xe5\x5c\xcf\xb9\x91\x33\x0e\xc9\xbd\x7b\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xde\x49\x6a\x51\xc4\xcf\x23\xc5\xb7\xbe\xb6\x99\x22\x45\xc4" "\x58\xc4\x74\x74\x72\x7d\xe0\xa0\x5b\x07\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\xea\xa9\x88\x93\x91\x62" "\xfd\x85\x7a\xf5\x7c\xad\x16\x71\x35\x22\x7e\xbe\xb5\xb5\xd5\x7d\x44\xc4" "\x66\x99\x0f\xeb\xa0\xfb\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x87\x56\x2a\xe2\x63\x91\xe2\xe9\xff\xdb\x4c\x8d\x88\xb8" "\x3d\xfc\xfa\xc0\x93\xc7\x86\x2f\x5e\x38\x71\x7e\xb4\x88\x22\x52\x59\xd2" "\x5b\xff\xfc\xe4\xd5\x4b\x8d\xe7\x16\x6f\xdc\x5c\x9a\x5f\x5e\x9e\x9f\x6b" "\x4c\xb5\x5b\xb3\x8b\x73\xf3\xfb\xfd\xe3\xea\x97\x5b\xed\x5b\xb7\xa7\xc6" "\x27\x1e\x49\x67\x1e\x68\xf0\x11\xb7\x7f\xb0\xfe\xdc\xe2\xcd\x97\x96\x5a" "\xd7\xbf\xba\xb2\xe7\xeb\x43\xf5\x4b\x33\xcb\x2b\x4b\xcd\xd9\xbd\x5f\x8e" "\xc1\xa8\x45\x4c\xf7\xee\x19\xa9\x1a\x3c\x35\x3e\x51\x35\x7a\xa1\xd5\x6c" "\x57\x87\xa6\xda\x3d\x1a\x58\x8b\x18\xdb\x6f\x67\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x34\x86\x52\x11\x9f\x8b\x14\x3f" "\xf9\xaf\x73\xa9\xbb\x6e\xbc\xaf\xb3\xe6\xff\x57\x3a\xcf\x8a\xed\xda\x57" "\xfe\x60\xe7\x77\x01\x2c\xdc\x91\x5d\xbd\xbf\x3f\x60\x3f\xdb\x69\xbf\x0d" "\x1d\xa9\x16\xde\x37\xa6\xc6\x27\x26\x26\x7b\x76\xf7\xf5\xdf\x5d\x5a\xb6" "\x29\xa5\x22\x9e\x89\x14\x9f\x78\xf9\x43\xd5\x7a\xf8\x14\x43\x7b\xae\x8d" "\x2f\xeb\xde\x5b\xd6\xdd\x38\x97\xeb\x86\x7f\xad\xac\x5b\xdd\x55\x55\x1f" "\x99\x1a\x9f\x68\x5c\x59\x6c\x9f\xb8\xb4\xb0\xb0\x38\xdb\x5c\x69\xce\x2c" "\xcc\x37\x26\x6f\x36\x67\xf7\xfd\x8b\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\x3e\x86\x52\x11\x3f\x8a\x14\xff\xf3\xf7" "\xff\x91\xba\xf7\x9d\xcf\xeb\xff\xfb\x3a\xcf\x7a\xd6\xff\xff\x56\xb5\x84" "\xbe\x52\x4f\xbb\x73\x5b\xb5\xb6\xff\xbd\xd5\xda\xfe\xce\xf6\xfb\x2e\x8e" "\x0e\x7d\xf4\xd9\x7b\xed\x7f\x14\xeb\xff\xcb\x36\xa5\x54\xc4\x37\x23\xc5" "\xd9\x1f\x7d\xa8\xba\x9f\x7e\x77\xfd\xff\xf4\x1d\xb5\x65\xdd\x9f\x45\x8a" "\x37\x9e\xfd\x48\xae\xab\x3d\x51\xd6\x35\xbb\xdd\xe9\xbc\xe3\xb5\xd6\xc2" "\xfc\xa9\xb2\xf6\xaf\x23\xc5\xaf\xbf\xd9\xad\x8d\xaa\xf6\x7a\xae\x7d\x7a" "\xa7\xf6\x74\x59\x3b\x18\x29\xfe\x72\x73\x77\xed\x57\x73\xed\x07\x76\x6a" "\xcf\x94\xb5\xc7\x23\xc5\xf7\xfe\x7b\xef\xda\x0f\xee\xd4\x9e\x2d\x6b\x7f" "\x12\x29\xfe\xe9\xef\x1a\xdd\xda\xa1\xb2\xf6\xf7\x73\xed\xb1\x9d\xda\x93" "\xb3\x8b\x0b\x73\x0f\x1a\xd6\x72\xfe\xbf\x13\x29\xfe\xf6\xca\xef\xa4\x6e" "\x9f\xef\x39\xff\x3d\xbf\xff\x61\xf5\x8e\xdc\x76\xd7\x9c\xdf\x7f\xfb\xed" "\x9a\xff\xe1\x9e\x7d\xab\x79\x5e\xff\x34\xcf\x7f\xf3\x01\xf3\x7f\x3e\x52" "\x7c\xa7\xfe\x91\x5c\xd7\x19\xfb\x99\xfc\xfa\x53\xd5\xff\x77\xe6\xff\x13" "\x91\xe2\x3f\xff\x6d\x77\xed\xb5\x5c\xfb\xfe\x9d\xda\xd3\xfb\xed\xd6\x41" "\x2b\xe7\xff\xdb\x91\xe2\xbb\x7f\xf5\xe3\xed\x3e\xe7\xf9\xcf\x23\xbb\x33" "\x43\xbd\xf3\xff\xab\x7d\xbb\x73\xfb\x53\x72\x40\xf3\xff\x54\xcf\xbe\xe1" "\xdc\xae\xd9\x5f\x72\x2c\xde\x8d\x96\x5f\xfa\xfa\x8b\xcd\x85\x85\xf9\x25" "\x1b\x36\x6c\xd8\xd8\xde\x38\xe8\x33\x13\x8f\x43\xf9\xfd\xff\xe7\x91\xe2" "\xff\x8f\x15\xa9\x7b\x1d\x93\xbf\xff\xdf\xd3\x79\xb6\x73\xfd\xf7\xbf\xdf" "\xd8\xf9\xfe\xbf\x78\x47\x6e\x3b\xa0\xef\xff\xf7\xf7\xec\xbb\x98\xaf\x5a" "\xfa\xfb\x22\xea\x2b\x37\x6e\xf6\x3f\x13\x51\x5f\x7e\xe9\xeb\x27\x5a\x37" "\x9a\xd7\xe7\xaf\xcf\xb7\xcf\x9c\x3e\xf5\xe9\x4f\x9f\x3f\x7d\xea\xf4\xf9" "\xfe\x27\xba\x17\x77\x3b\x5b\xfb\x1e\xbb\x77\x82\x72\xfe\x7f\x10\x29\x7e" "\xf8\x0f\x3f\xdc\xfe\x39\x66\xf7\xf5\xdf\xde\xd7\xff\x43\x77\xe4\xb6\x03" "\x9a\xff\xa7\x7b\xfb\xb4\xeb\xba\x66\xdf\x43\xf1\xae\x54\xce\xff\xdf\x44" "\x8a\xa7\x3e\xfb\xe3\xed\x9f\x37\xef\x77\xfd\xdf\xfd\xf9\xff\xf8\xc7\x76" "\xe7\xf6\xdf\xbf\x03\x9a\xff\x0f\xf4\xec\x1b\xce\xed\x6a\xfd\x92\x63\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x70\x94\x0c\xa5\x22\xfe\x22\x52\xfc\xee" "\x1f\xff\x66\xea\xae\x21\xda\xcf\xbf\xff\x9b\xbb\x23\xb7\x1d\xd0\xbf\xff" "\x3a\xd6\xb3\x6f\xee\x31\xad\x6b\xd8\xf7\x20\x03\x00\x1c\x22\xe5\xf5\xdf" "\x07\x23\xc5\x3f\x6f\x7d\x7f\x7b\x2d\xf7\xee\xeb\xbf\xf8\x8d\x6e\x6d\xef" "\xf5\xdf\xbd\x1c\x86\xfb\xff\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x51\x97\xa2\x88\x3f\x8c\x14\x43\xaf\x6e\xa6" "\xf5\x81\xf2\x79\x47\xfd\x72\xab\x7d\xeb\xf6\xd4\xf8\xc4\xde\x87\x0d\xa6" "\x48\x51\x8b\xa2\xaa\x2f\x1f\xf5\xd3\x67\xce\x9e\xfb\xd4\xf9\x0b\xa3\xdd" "\xbc\xff\xf1\x6f\xb7\x0f\xc7\xf3\x93\x57\x2f\x35\x9e\x5b\xbc\x71\x73\x69" "\x7e\x79\x79\x7e\xae\x31\xd5\x6e\xcd\x2e\xce\xcd\xef\xfb\x1d\x1e\xf6\xf8" "\x3b\x8d\x54\x03\xd0\xb8\xf1\xe2\xad\xb9\x6b\xd7\x96\x1b\x67\x4e\x9e\xdd" "\xf5\xf2\xed\xe1\xd7\x07\x9e\x3c\x36\x7c\xf1\xc2\x89\xf3\xa3\xdd\xda\xa9" "\xf1\x89\x89\xc9\x9e\x9a\xbe\xfe\xb7\xfc\xa7\xdf\x25\xdd\x63\xff\x13\x51" "\xc4\xf7\x23\xc5\x9b\xc3\x6f\xa4\xef\x0e\x44\xd4\xe2\xe1\xc7\xe2\x01\x9f" "\x9d\x47\x6d\xb0\xea\xc4\x48\xd5\x89\xa9\xf1\x89\xaa\x23\x0b\xad\x66\x7b" "\xa5\x7c\x31\xd5\x72\x55\x2d\xa2\xd1\x73\xd0\x58\x77\x8c\x1e\xc3\x5c\x3c" "\x94\xb1\x88\xd5\xb2\xf9\x65\x83\x47\xca\xee\x4d\xde\x6c\x2e\x35\x67\x16" "\xe6\x1b\x5f\x6c\x2e\xad\xb4\x56\x5a\x8b\xed\x54\xeb\xb4\xb6\xec\x4f\x23" "\x6a\x31\x9a\x22\xd6\x22\x62\x63\xe0\xee\xb7\xeb\x8f\x22\xbe\x19\x29\x5e" "\x3e\xb5\x99\xfe\x65\x20\xa2\xe8\x8e\xc3\x27\xaf\x4c\x7e\xe9\xd4\xd9\x07" "\xb7\xa7\xf6\x08\xfa\xb8\x0f\x65\x3b\x1b\xfd\x11\x6b\xb5\x23\x30\x67\x87" "\xd8\x40\x14\xf1\x8f\x91\xe2\x67\xaf\x1d\x8f\xef\x0d\x44\xf4\x45\xe7\x11" "\x1f\x8f\xf8\x42\x99\xaf\x46\xbc\x52\xe6\x67\x22\x52\xf9\xc1\x38\x17\xf1" "\xd3\x3d\x3e\x47\x1c\x4d\x7d\x51\xc4\xb9\x48\xb1\x98\x36\xd3\x6b\x03\xe5" "\xf9\xa0\x7b\x5e\xb9\xfc\xe5\xc6\xe7\xdb\xd7\x16\x7b\x6a\xbb\xe7\x95\x23" "\xff\xfd\xf0\x38\x1d\xf2\x73\x53\x3d\x8a\xf8\x41\x75\xc6\xdf\x4c\xff\xea" "\xef\x35\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x21\x52\xc4" "\x5a\xa4\xf8\xca\x89\xe3\xa9\x5a\x1f\xbc\xbd\xa6\xb8\xd5\xbe\xde\xb8\xda" "\x9c\x59\xe8\x2c\xeb\xeb\xae\xfd\xeb\xae\x99\xde\xda\xda\xda\x6a\xa4\x4e" "\x8e\xe5\x9c\xce\xb9\x9a\x73\x2d\xe7\x7a\xce\x8d\x9c\x51\xcb\xc7\xe7\x1c" "\xcb\x39\x9d\x73\x35\xe7\x5a\xce\xf5\x9c\x1b\x39\xa3\xc8\xc7\xe7\x1c\xcb" "\x39\x9d\x73\x35\xe7\x5a\xce\xf5\x9c\x1b\x39\xa3\x2f\x1f\x9f\x73\x2c\xe7" "\x74\xce\xd5\x9c\x6b\x39\xd7\x73\x6e\xe4\x8c\x43\xb2\x76\x0f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x67\xa9\x45\x51\xdd\xc5" "\xfd\x5b\x5f\xdb\x4c\x5b\x03\x9d\xfb\x4b\x4f\x47\x27\xd7\xdd\x0f\xf4\x1d" "\xef\x17\x01\x00\x00\xff\xff\x49\x02\x74\xf7", 3089)); NONFAILING(syz_mount_image(/*fs=*/0x20000c40, /*dir=*/0x200000c0, /*flags=*/0, /*opts=*/0x20000100, /*chdir=*/0x43, /*size=*/0xc11, /*img=*/0x20000d00)); NONFAILING(memcpy((void*)0x20000240, "cpuset.effective_mems\000", 22)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000240ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; NONFAILING(memcpy((void*)0x20000080, "#! ", 3)); NONFAILING(memcpy((void*)0x20000083, "./file0", 7)); NONFAILING(*(uint8_t*)0x2000008a = 0xa); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000080ul, /*len=*/0xbul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0xb36000ul, /*prot=PROT_WRITE*/ 2ul, /*flags=MAP_STACK|MAP_POPULATE|MAP_FIXED|MAP_SHARED*/ 0x28011ul, /*fd=*/r[0], /*offset=*/0ul); NONFAILING(*(uint32_t*)0x20000580 = 8); NONFAILING(memcpy( (void*)0x20000584, "\x81\x11\x34\x51\x60\xbb\x19\x77\x1b\x0a\xf9\x2c\x0b\x93\x4f\x9e\x1a\x8a" "\xc2\xaf\xb5\x14\x63\x27\x45\x57\xef\xea\x18\xc2\x31\xe8\xa1\xee\xaf\xe6" "\x4a\xd9\x39\xec\x86\xbc\x20\x1d\xa5\x6b\xb0\xbf\x6b\x7a\x78\x74\x88\xc4" "\xe5\xdf\x6a\x81\x63\x09\xf2\x4e\x00\xd2\x60\xab\x7a\xf3\x7a\x62\xa4\x75" "\x4a\x45\xfb\x4d\x45\x74\xc6\x73\x13\x67\x66\x25\xa7\x18\x9f\x41\x77\xe7" "\x62\x10\x14\xfa\x14\x0b\x05\x0e\xde\x11\x83\xef\x85\x10\xde\x28\x68\xd9" "\xbe\x41\xe5\x3b\x81\x7d\x1f\x25\x16\x4a\x48\xb5\xa1\xaf\xb3\x05\x90\xc4" "\x62\x76\x1f\x24\xf2\x83\x53\x18\x3c\x34\x78\x53\xfa\xbd\xe8\x2e\xaf\xf4" "\x46\x7a\x7a\x75\xe2\xd6\xbe\xaa\xa2\xae\x81\xee\xc8\xf7\xa6\x58\x80\x01" "\x60\xcd\x45\xc8\x1c\xd1\xf1\x8b\xd3\xea\xbd\x07\x89\x15\x45\xfd\x40\x79" "\x7c\x73\xf2\xe6\x27\x3f\xe3\x16\x9c\xb3\x81\xa5\x43\xf1\xf3\xad\xbb\xad" "\x62\x34\x5c\x11\x24\x0f\x36\xcc\x17\xda\xe3\x39\x18\x8f\x27\x69\x51\x45" "\x54\xc7\xce\x8d\xf1\xa6\x9f\xe3\x27\x9d\x5b\x3d\x3a\xc2\xeb\xaa\xf5\xd2" "\xf5\xfa\xd3\xeb\x0d\xcd\x51\xb3\xcf\x67\x16\x20\xc6\x1b\xee\x00\xe7\xd2" "\xd6\x13\x82\x2d\xbc\x78\x43\xbd\xb4\x3e\x07\x00\x34\x57\x31\xce\x9b\x5d" "\xaa\x62\xef\xf6\x4a\x0b\x35\xf4\x39\xe1\x77\xf1\x4c\x05\x1b\x8d\x42\xf1" "\x79\xd9\x5f\x0d\x14\x29\xc5\xd7\x5a\x02\x52\xcf\x49\x4c\xde\x7f\x2c\x73" "\x6c\xeb\xf9\x63\xa7\xbc\xc7\x1a\xd2\x56\x16\x0b\x75\xe3\x73\xb9\x26\x45" "\x36\x33\x3c\xbb\x80\x40\x39\xf1\x40\x33\xbd\x3e\x6b\x38\x07\x82\x4e\x1c" "\xab\x5e\x7d\x1e\x5a\xb6\xc4\x88\x7a\xcb\xd2\x22\x27\x9f\xc1\xcc\x7a\xe6" "\x94\x29\x5d\xca\x41\x22\xf9\xde\xea\xa6\x91\xef\x8f\x15\xa0\x8b\x11\x24" "\xfb\xc9\x56\xc0\x15\x21\x1f\x81\x56\xbc\x5a\x8a\x9d\xb0\xa1\x82\x12\x49" "\x89\xdb\x2b\xf5\xd0\x28\xa8\x65\x54\x6b\x26\xa9\x17\x3d\xa7\xac\xc6\x18" "\x57\x92\x0f\x35\xfa\xeb\xb5\x98\x12\x37\x2a\xce\xbd\xd6\xb5\x0c\x04\x0a" "\xc2\xc3\x5a\x73\xfb\x62\x0d\xd1\xef\x62\xf8\xc0\x92\x6d\xd6\x38\x7d\xac" "\xa4\x6f\xb5\xaf\xa9\xbd\xe3\x3c\x32\x6c\xee\x84\x53\x9e\x0e\x1d\xcf\x7c" "\xc5\x13\x50\xb9\x83\x58\x2f\xbd\x11\x1e\xf5\xb6\x5f\x4f\x6d\x72\x3c\x5c" "\x2a\xab\xfd\xa6\xd1\x18\x7a\x9d\x6b\x84\x5f\xef\x8a\x95\x3e\x52\xd4\x65" "\xd7\x74\xfa\x5b\x60\xd4\x9f\xdb\x9f\x65\x25\x72\xfd\x95\x22\xf2\xa5\xc0" "\x48\xb6\x94\xe1\xdb\xc0\x7b\x1f\xa7\xbf\x3d\x88\x42\x8c\x70\x58\xa2\xcf" "\xb6\xfc\x5d\xed\xc4\xc9\xe8\x0a\x15\x08\xb3\x02\x10\xb3\x1c\x1a\x00\xe2" "\xb5\x04\x0e\x3f\xdf\x47\x55\xd9\xaa\xe9\xdd\xce\x8c\xdd\xa0\x60\x44\x68" "\xa4\xc4\xa0\xd7\x09\xb8\x99\x73\xfd\x4e\xea\x58\x36\x39\x05\xc0\xd0\xa0" "\xe4\xd9\x09\x4d\x72\x3b\x2a\x46\xf5\x9f\x82\x9e\x8d\x3e\x4f\xa0\x89\x68" "\x3d\x68\x93\xc6\x68\x77\x4a\x66\x49\x13\x26\x95\x55\x95\xd1\xdd\xb4\x25" "\xf4\xc0\x3d\x84\x14\x75\x8d\x72\x0b\x9a\xcd\x99\x8c\xdc\xc8\xc8\x01\x26" "\x47\x31\x42\xa0\x35\x06\x80\x81\x9b\x98\xf6\xdf\x80\x40\x6a\x08\x31\x04" "\x8b\x04\x98\x8a\xad\x8c\xa1\x4b\x1b\x22\xc8\xf8\xe0\x70\xef\x13\x8a\xec" "\x21\x8c\x8b\x6a\xf9\x75\x5b\xa1\x03\x54\xda\x8a\x1e\x8c\xde\xd2\xd1\xca" "\x18\x09\x19\xa1\xd5\xde\x62\x80\x72\xec\xfa\x58\x3c\xb6\x02\x77\xa8\x57" "\xb6\x9d\xd2\xba\xba\xfe\x65\x4b\x6d\x96\x41\xc2\x31\x51\xfa\x73\xc2\x01" "\xa1\x22\x94\x01\x48\xc9\x0c\x7d\x15\x18\xec\xc1\x12\x3c\x31\xd9\xc5\x4f" "\x48\xfa\x06\xcc\x59\x7f\x94\x9a\x0f\x21\xf5\xeb\x86\xbf\xbc\xd0\x5e\x5b" "\x23\xc6\xf0\xab\x5e\xb7\x63\xe9\xea\xe4\xd8\xdf\xdf\xa2\xe5\xf0\x7c\x49" "\x31\x89\xd7\xe5\x6a\x16\x87\x1e\xb1\x6e\xcc\x63\x6d\xa0\xbc\x9f\x9e\x95" "\x67\xd8\x9c\xce\xd7\x40\x27\xdd\x58\x10\x73\x66\x4d\x08\xc9\xde\x40\x0d" "\xc1\x9f\xc6\xdd\xa1\x6a\x7c\x19\x0a\x41\x84\x9f\xbc\xd3\xc9\x5f\xc9\xae" "\x2d\x95\x1b\x74\x2b\xb6\xf8\xd0\xd4\x88\x73\xe5\x20\xc0\x6b\xb9\x67\xc1" "\x38\x13\x5e\x98\x17\x11\x4e\xa6\x93\x5b\x14\x90\xfd\x2d\x00\x7d\x34\x9a" "\xab\xbf\x5d\x77\x49\x0b\xb7\xb5\x7c\x66\xf4\x8c\x05\x9f\x6e\xb4\xa2\xe6" "\x06\x79\xfc\x4e\xc2\x8f\x53\x5e\xc1\x6b\xf1\x38\x0d\x39\x84\x86\x40\x6f" "\x84\xc9\x40\x19\x87\x59\xac\xaa\xea\xf3\x3a\xc2\xdd\x2c\x12\xbd\xfc\xeb" "\x48\x6a\xf6\xcc\x37\x56\xc8\x19\xc5\xa9\xcd\x6a\x3e\x73\x57\x5d\x8e\x4a" "\xca\x4f\x74\x9c\x58\x5e\x8c\x21\x14\x1d\x6e\x7e\x3b\x6e\xb3\x7b\x57\x20" "\xf5\xca\xa9\x02\xb0\xab\x90\x64\xf3\x02\x0b\x83\x11\xf5\x22\x93\x77\x17" "\x99\xc8\xd8\x0d\x59\x2d\x45\x57\xae\x06\xcd\x80\xe0\xcb\x9d\x5d\x47\xcb" "\x9b\x6a\x67\xf5\x8d\xbb\xab\x5f\x07\xb3\x2a\xdb\x31\x43\x53\x21\x72\x2b" "\xc5\x7a\xe7\x5b\x31\x31\x9a\x16\x55\x4a\xa6\x14\x2c\xb8\xae\xe0\x32\xb7" "\x32\x6c\x2d\x13\x28\xe9\x6b\xf1\x25\x39\x21\x67\x91\x7d\x4e\x94\x51\x8f" "\xae\x5f\x86\x64\xf5\xc5\x69\xbe\xb4\x95\x3c\x81\xea\x91\x76\xbd\x59\x3f" "\xf7\xce\x53\x79\xf7\x92\x85\x36\x90\x94\x4f\x95\x6c\x9e\x11\x4b\xae\x9b" "\xf7\xbb\xaa\x2c\x24\x26\xcc\x2c\x00\xbb\x6c\xde\xa6\x5b\x13\xb7\x2f\x29" "\x34\x69\x89\xcc\xfa\x41\xe6\x29\x4c\x1a\xc2\x79\x48\xbb\x9c\xb5\xa1\x46" "\x79\xe2\xe0\xe0\xd3\x9c\x20\x59\x9e\xbe\xff\x35\x2b\xcb\x8d\x5a\x1b\xc4" "\x46\x1d\xa5\xc1\xc7\x11\x7a\x59\xbe\xd3\xd0\x7d\x49\xa9\x90\x14\xdf\x4d" "\xfc\xf8\xbf\xb1\x63\xda\x1d\x4f\x6d\xf3\xbe\x05\xd3\x96\xfd\xae\x11\x8e" "\x3f\xda\xe3\x82\x17\x2a\x72\xbe\x92\xb1\x6a\xbb\x94\x1e\x9b\xe7\x7a\x84" "\xf8\x26\x31\x3e\x0a\x79\x6a\xc5\x94\x18\xb9\x4f\x12\x0b\xd2\xd2\x3a\xbf" "\xd4\xd9\xb0\x14\x63\x9a\x31\xad\xf3\x5e\xfe\xc9\x43\x62\x3e\x78\xf2\xc8" "\xf1\xe4\x92\x00\x64\x76\x9b\x3d\x87\x58\x2c\xf5\x28\x53\xb5\x54\x96\x57" "\x9a\xf7\x98\x35\x60\xce\xec\xda\x6d\xb0\x5f\xe0\x0b\x58\x85\x79\x55\x4b" "\xe9\xe8\x16\xb7\x8d\x2f\xee\x6d\x2b\x9a\x73\x91\xa0\x4b\x68\xbc\xae\x4c" "\x97\xce\xcd\xc9\xcf\xc1\xe5\x50\xbd\x79\xe9\x26\x14\xbf\x1e\x45\x59\x83" "\xbf\x95\x37\xa5\x58\x28\x6c\x65\x9f\x6d\x68\xce\x90\xd8\x05\x64\x38\x08" "\x93\xb6\xda\x1c\xf6\xc8\x26\x27\x16\x63\x31\x77\x97\xdd\xa3\x7f\x93\xbe" "\x87\x66\xbd\x0d\xe6\x40\x3a\x0a\xce\xb6\x10\x56\xe3\x97\x8f\x73\x6a\x6a" "\xca\x42\x35\x07\xdc\xa0\x17\xaa\xe5\x88\xfc\x5e\x17\x90\xa4\x97\x06\x72" "\x6f\x92\x12\x1e\x4d\x62\xac\xd9\xe3\xcc\x19\xc9\x64\xf4\x03\x1f\xa1\x06" "\xcb\x28\x65\x2b\x50\xad\x44\x40\x3c\xdd\xf9\x3c\x54\x66\x0d\xc8\x99\x64" "\x9b\x42\xa1\x9f\x2e\x19\x27\x15\x1a\x43\x38\xff\xe1\x91\x1d\x0f\x86\x32" "\x7e\x5b\x67\x06\x39\x43\x50\x1f\xad\xe6\xaf\x37\xa2\xeb\x9a\xef\x0a\x29" "\x65\x09\x5f\x13\x62\x57\x67\x38\xeb\xdd\x78\xfa\x73\xa3\xce\xf2\xb7\xb3" "\xf9\xc8\x2b\x8c\x81\x46\xce\x07\xa6\x6b\x43\xc9\xb2\x65\x0e\x70\x83\x1b" "\xdd\xf2\x74\x51\x3f\xa5\xa0\x68\x3a\x9f\x62\x96\x45\x05\x42\x3f\xb1\x01" "\x07\x46\x26\xb2\x50\x84\x39\x72\xaf\x20\xc3\xc8\xc8\xb1\xbf\x69\x6d\x3d" "\xad\x42\x02\x84\xea\xd3\xf7\x3e\xfb\xfe\x97\x69\x9b\xa8\x4b\x02\x25\xbd" "\xcf\x1e\x64\xae\x92\xe4\x21\xcc\xa2\x45\xcb\xb9\xe4\x3d\xe1\x15\xe7\xc0" "\x1b\x3b\x6d\xac\xeb\x3c\x48\x0a\x30\x99\xcb\x15\x99\xde\xf0\xbd\xc1\xcf" "\xf0\xea\xe7\xb3\x98\x43\x29\x6a\x1e\x8e\xf9\x17\x85\x02\x96\x68\xe5\x5e" "\x91\x7e\x60\x41\xbd\xa7\x9c\xd7\x93\xc3\x84\x5d\x2e\xcc\xe2\xfe\xd2\x30" "\x3a\x3e\x1e\x8e\x1a\xe8\xe9\x17\x84\x8e\x2c\x40\xe2\xd5\xd1\xcb\xf3\xc1" "\xa5\x05\x81\x1f\x8d\xdc\x1b\x08\x59\xc6\x8b\x18\x40\x2f\xca\x44\xa3\xcd" "\x80\x72\x63\x94\xcb\x34\x86\xdf\xe0\xfb\x6d\x35\x5b\xc7\x28\xeb\x58\xf8" "\xe4\x0a\xc4\x80\xbe\xa1\xac\x3b\x3f\xbb\xfe\x96\x1c\xf0\x0a\xa8\xe0\x05" "\x5a\x1f\x9b\x2b\xd6\xf1\x34\x9b\xb7\x39\x60\xc8\xdf\x2f\xba\x8c\xbd\x41" "\x36\x53\x5e\x7f\x17\xd3\xe5\xdf\x9f\x63\xd7\xdc\x0f\xe3\xa0\x2b\xb8\x95" "\x30\xf0\x52\xb1\x24\x21\x8d\xab\x13\x03\xed\x8d\x24\xf1\xdc\x54\x84\xa2" "\x8e\xd7\x0d\x97\x87\x2a\xc1\xad\x11\x5c\x62\xc1\x30\x8a\xe7\x57\x26\xd5" "\x81\xfd\x74\x9b\xc5\x44\xce\x89\x4f\x31\x7d\x19\xed\x5e\x8e\x04\xb6\xa5" "\x19\xce\x50\x75\x3a\xe4\xb8\x24\x1a\x36\x21\xc0\xaf\x03\xa2\xac\x33\xd6" "\x94\xdf\xfc\x40\xf4\x6d\x40\x7e\xf2\x92\x26\x76\x83\x8f\x8f\xcc\xe6\x55" "\x7b\x8f\x83\x64\x36\x1d\xfd\xa4\xf0\xf3\x9e\xdd\x04\xa0\x93\x95\x51\x44" "\xaf\x19\x6e\x0f\x99\x6c\x75\x2f\x9f\x86\x82\x23\x61\xbc\xf9\x2c\xdf\x55" "\x34\x5d\x0c\x78\x43\x14\xa8\xc0\x96\xdf\xbf\xb5\xe6\x93\x0e\x1e\x37\xf7" "\x37\xd1\x38\xfe\x2e\xc0\x22\xc9\x00\x21\x51\xe8\x0f\x6d\x46\x45\x83\x6f" "\x2d\xc0\x9e\x65\xd8\x92\x1f\xba\x34\x52\xd4\x32\xda\xc3\x0e\xb0\x9f\xa0" "\x8d\xd8\x12\x62\x7f\x6b\x46\xa1\x9b\x3a\x4e\xb3\x4a\x4a\xad\x78\xd4\x23" "\x6d\x10\x33\x20\xdf\xcc\x63\x5b\x0c\x8b\x43\x18\x04\x01\xec\x35\xe4\x1f" "\xb3\x7e\x1f\xfb\x6d\xf6\xf7\x55\x7e\x4f\xbb\xd2\x79\x85\xfc\xda\xfe\xf1" "\xe8\x1a\x0f\x28\xd6\xab\x81\xba\x88\xc4\x0f\x22\xa4\x2b\x0b\x15\x36\x97" "\x2d\xd5\xec\x1b\xdc\x5a\xde\x2e\x63\x8a\x77\xa6\xd6\x46\x6e\x21\x02\xee" "\x8e\x64\x6e\x14\xbd\x6c\x7a\x88\x16\x90\xca\xb4\x0a\xb9\xb5\x89\x1d\x2d" "\x01\xc8\xe2\xca\xb4\x06\xd3\xdc\x91\xcf\x76\xab\xc0\xfd\x04\xd2\x29\x15" "\x70\x4e\xeb\x9b\x41\xac\x9b\xa7\xd6\xeb\x98\xd5\x63\xfc\x75\x54\x65\xc8" "\x48\x06\xc5\xc7\xb4\xff\xac\xdc\xd0\x53\x13\x25\x5f\x86\xca\x0e\x16\x05" "\x04\x9b\x0e\x7f\xbc\x74\x3b\x68\x11\x0f\x71\xa9\x46\x1f\x3e\xaf\x1b\x11" "\x13\xb5\x5d\x22\xfa\xc6\x2d\xe8\x83\x0b\x14\x73\x0e\x7b\xcf\x79\xf1\xd2" "\x3b\xf2\xad\xea\xb8\xd0\xa6\xdf\x71\xb7\x6e\x50\x88\x8a\x69\x88\x6f\x49" "\xb0\x19\xc8\xe3\x7d\xd0\x40\x0c\xc5\x67\x2a\x03\x1c\x6d\xf8\xe9\x18\xf9" "\xf1\x2e\x35\x33\xd0\xcf\x68\xc9\x68\x6d\xcc\x25\xdf\x20\x07\x73\x1b\xd8" "\x29\xa5\x3c\xd0\x05\x6a\x1f\xbd\xcf\x01\xd0\x1b\x13\xf0\x6d\x48\x6f\xfa" "\xec\xe7\xaa\xbd\x72\xdd\x77\x18\x49\x37\x5f\x5d\x09\x3e\x9d\x32\xfe\x45" "\xbb\xfe\x8e\x8b\x9e\x2c\x37\x65\xce\xfa\xc4\xf1\xe9\xd4\x97\x64\x42\xaa" "\xdd\x80\xf7\x47\x42\xa3\x58\x9c\xc3\xda\x53\x50\x80\xf5\x11\x98\x13\x16" "\xc2\xe8\x08\x6c\xa9\x3b\x69\xb8\x81\x52\x85\x7c\x86\xb4\x27\x25\x4b\x98" "\xf1\x52\xa0\x86\x9c\x77\x34\x1c\x8a\xa8\x73\x07\x57\xf8\x18\x39\xdb\x39" "\x55\x88\xcd\x6e\x60\xdc\x49\x18\x34\xa3\x73\x6f\x89\xaf\xbe\xcf\x39\x74" "\x2b\xca\x69\x41\x83\xe1\x61\xd1\xf6\xde\x84\x71\xd4\xd0\xca\x5c\x28\xda" "\xc3\x5e\xb1\x28\x87\x4c\x64\x20\xdc\x56\x33\x94\x2d\xcf\x29\xc2\x7b\x8d" "\x28\x4a\xa7\xe8\x6a\x9c\xa3\xc3\xe3\x4d\x08\x88\xe8\x44\x15\xb2\x38\xee" "\x30\xa4\xb0\x17\x9f\xfc\x0d\xe1\x66\x17\xbc\x96\xb1\xff\x81\x53\xb6\xc6" "\xd9\xdd\xbf\x24\x11\xbf\xe4\x2b\x50\x15\x40\xa9\xe1\x96\x70\x83\x17\x95" "\xbe\xc0\x5b\x8a\x24\x2a\x04\xa6\x2f\x35\xe3\x27\x5d\x88\x1e\xd8\x00\xa4" "\x6d\x27\x6d\xcb\x4f\xe9\xa4\x2d\xd3\xe3\xb8\xf9\x3e\xbf\xe2\x18\xae\xec" "\x56\x58\x77\xe4\xc1\x5c\xa9\x53\x5f\xf7\x96\x4f\xc3\x48\xb5\x62\x84\x3d" "\x91\x19\x7d\x1a\x98\xda\xad\x0a\x0a\xb2\x53\x21\x45\x7f\x35\x81\xff\x07" "\xb5\xe5\x29\x8b\x6e\x2d\xe1\xd3\x9a\x71\x45\x29\x8c\x93\xba\x16\xb7\xe0" "\x46\xa6\x06\x52\xdd\x4d\x41\x85\xbf\x46\x83\x06\xf1\xfc\xc2\x22\xd3\xc5" "\x24\x65\x73\xdd\xa2\x48\x2f\x51\x11\x9e\xe1\x46\x49\x81\x11\x1f\x5b\xea" "\x2b\x33\xd1\xf6\x3a\xdd\x9e\x84\xfe\x77\x69\x20\xf3\x12\x54\x98\x16\xa6" "\x90\x91\x3a\x8d\x8c\xee\x3a\xe6\xc2\xe1\x94\x5f\xcc\xe1\x17\x8b\x18\xf8" "\x06\x3e\x95\x62\x13\x11\x87\x64\xdd\x35\x4e\x18\xc3\x27\xee\xa8\xaa\x2c" "\xc5\x31\xca\xa9\x1a\x24\x14\xfd\x66\x5d\xab\xf5\xcf\x6c\x8c\xe3\xf9\xa1" "\x07\xaa\x95\x4b\x23\xc0\x4a\x2b\x77\x70\x35\x12\xed\x60\x6a\x19\xea\x05" "\x1d\x59\xbb\x8b\xd4\x1f\x8e\x40\xe2\x12\xe5\xe5\x3b\x96\xed\x56\x58\xd3" "\x1e\xb3\x77\x46\x34\x7b\xcc\xa9\xb6\xc3\x6b\x83\x45\xbe\x5f\x93\xca\x36" "\x59\x8a\xa2\x6b\xac\x35\xd0\xd2\xbd\xe8\xfd\x7a\x2b\xb1\xf7\xcc\x32\xb1" "\x30\xb2\x3c\x94\xab\xf4\x60\x88\x26\x7a\xfa\x94\xfd\x2c\x2e\x22\x50\xd2" "\xd8\xac\x80\x3d\x7a\x81\xf0\xaf\x70\x6f\x3b\xea\xe8\xbc\x94\x4d\x3f\x9f" "\x8c\xe9\x55\x68\x67\xe9\x8e\x07\x7b\xe8\x02\x7b\x09\xa9\x05\x20\x6a\xb0" "\x28\xb2\x26\x15\x25\x91\x8d\xa7\x55\x7c\x83\xfc\x85\x8e\x14\xf2\x6a\xed" "\x52\xa5\xe6\x26\x9c\x98\xdb\xf6\xb8\x4b\x5c\x09\xbb\xf6\x42\x55\x77\x37" "\xe6\xf7\xec\x0c\x0e\x31\x55\xf9\xbb\x39\x6e\xd7\x3f\x75\x35\x27\x2f\x92" "\xf1\x3b\x8f\x8d\xd2\x40\x02\x81\x68\x36\xc5\x2d\x77\x0b\xeb\x86\x51\x16" "\x89\x7b\xa7\xfb\x34\xa1\x12\x4d\xcd\x0c\xcd\x6e\x71\x55\x08\x9e\xd0\xc6" "\x76\x8e\xbf\xda\xc9\x9a\xea\x96\x2d\xd7\x19\xc0\x27\x50\x5d\x5b\x6d\xb6" "\xb8\x50\x5d\xd4\x39\x59\x53\xfd\xe5\x1e\xc8\x20\xdf\x2b\x98\xba\x6e\x30" "\x4c\x03\xc8\x88\x0b\x1e\xfa\x9b\x19\x25\x96\x7a\x74\x6e\xdd\xd8\xd8\x36" "\x1e\x62\x5a\x89\xfd\x1a\xc8\xaa\x74\x72\x51\xc3\x09\x27\x65\x8e\xe7\x06" "\x91\x1e\x21\xa7\x02\x2f\x93\x2c\x17\xa7\x7a\xbe\x4c\x3b\x6d\x09\x04\x4d" "\x33\xa1\xeb\x53\x56\xeb\xb5\xbd\x2a\x8b\x79\xf0\x37\x96\x4d\xae\xff\xe3" "\x74\x2b\x08\x50\x69\x27\xdd\x80\x06\x9b\x2e\xe5\xc3\xc0\xd9\xdc\xd9\x7f" "\x19\x96\xd2\x0c\x08\x70\x28\xd8\xc3\x89\x4a\xa1\x07\x22\xde\xa5\x14\x98" "\xbe\xf4\x96\xbb\xf9\x88\xc5\x63\xc5\x06\x62\xa8\x5d\x6b\x8e\x98\xd4\x34" "\x4a\x4c\x81\xf2\x00\x11\xfe\x18\xe9\x10\x5b\x32\xaf\xdc\x58\xc8\xce\x17" "\xe0\x4e\xdb\x78\xc7\x67\xbe\x06\x28\xfe\x2b\x6d\x11\x41\xbc\xe1\x18\x38" "\x1c\x6f\x93\x82\xda\xca\x4e\xf9\x21\xfa\xce\xb8\xef\xc9\x31\x29\xc1\x92" "\x3f\x1c\x65\xba\xdb\xa5\x05\x4c\xf0\x38\x12\x69\x26\xc5\x30\xb7\x59\xf6" "\x83\xd9\xe6\x51\x33\x26\xdd\x95\x88\xb8\xe3\xed\x74\x57\x46\xf4\x25\x84" "\x60\xfe\x21\x93\x2e\xfb\x1c\x7a\x21\x47\xcf\xcd\x14\x82\x53\x9a\xe1\x76" "\xcb\xb1\x9a\x10\x00\x05\x03\x55\x2d\xa4\xac\xe4\xb8\x5f\x67\x2d\xa2\x3a" "\xa8\xae\x3c\x78\x96\xe0\xdb\x2a\x55\x16\x1f\xb9\xe4\xed\x85\x53\x08\x3b" "\x02\x9e\x82\x5d\xa2\xaa\xcf\x55\x9f\x0c\xba\x75\x0f\xc1\xae\x46\x64\x17" "\xb6\x77\xba\x1c\xda\xc3\xaa\xf0\x2d\x1c\x43\x8b\x19\xe2\x55\x43\xb5\xf2" "\x7d\x21\xed\x53\x00\xb6\x06\xce\x10\xaa\xb7\x2f\x9f\x80\xfd\xe1\x9d\x81" "\x1a\x8b\xb1\x11\xd7\x3a\x6b\x1a\x13\xa4\x66\xd5\xb8\x3f\x22\x01\x40\x68" "\xd2\x13\xe1\xdb\x89\xb4\x45\x38\x93\x6a\x63\xff\x3c\x36\x90\x58\x0b\xfc" "\x9c\x24\xaa\x90\x07\x08\x1f\xf6\xd1\x92\xf1\xae\x8e\x67\xfb\xc3\xae\xb3" "\xc4\xa3\xd9\xa1\x06\x7b\xa1\x35\x1e\xb3\xba\x1e\xd9\x81\x5b\xd5\xb2\xc3" "\x14\xa1\xde\x00\x0f\xec\x76\x46\xd0\x5e\xac\xb3\x47\xb4\xbd\x52\x48\x04" "\xfd\x9e\xe9\x9d\x37\xd8\xf3\xf3\x18\xb6\xd3\x5a\xb0\x5b\x1f\x4e\xd5\x67" "\xd6\x78\xc0\x43\xe9\x8e\x16\xd8\xf7\x7c\x1b\x71\xcc\xa7\x65\x70\x06\xab" "\xaa\xb1\x41\xaf\x8b\xa0\xa4\xc3\x62\x9a\x99\x2f\xd7\x9f\x52\x7b\x2e\x97" "\xa0\xe8\xfe\xff\xc1\xe9\xcc\x3d\xcf\xe2\xb6\xf2\x68\x0b\xa0\x9a\x6c\x6b" "\x86\xb3\x2c\xb6\x7a\xa4\x90\xb4\x89\x31\x6c\x8c\x35\x21\x73\xfb\xa9\xef" "\x33\xbd\x6c\x84\xfd\xf7\x19\xbb\xfb\x45\xaa\xa5\xdc\x93\xdc\xa5\x6b\x75" "\x5e\xf8\x34\x64\xe7\xaa\x4f\xd6\x55\x10\x51\x84\xa9\x11\xf4\x74\x7b\x57" "\x94\x0b\xbc\x6b\xd5\x48\x8a\x19\xb5\xbb\xdb\xf0\x23\x43\xf0\xb7\xbc\xe3" "\xe8\x77\x65\x84\x84\x87\x8b\x4b\x19\xb2\x8e\xfd\xe3\xb9\x1a\xd9\xbc\x1e" "\xde\x9f\x88\xaa\xf9\x06\x14\x27\x07\x63\x29\x7d\x61\x6f\x80\xfc\x55\x36" "\x3a\xf1\x7f\x00\xaa\x7a\x31\xb7\x65\x04\xd4\x81\xd5\xb3\xd8\x80\xc7\x2d" "\x1f\x3a\x03\xec\x38\x78\x56\xfd\x22\x22\x11\x6c\xa0\x81\x62\x96\xbf\x8d" "\x73\xd4\xa6\x11\x96\xfb\x54\x10\x2f\x84\x85\xb8\x99\x82\xcd\xb0\x0e\xfd" "\xf2\x41\xdf\xdb\x4a\x53\x60\x52\xb6\x0f\x3e\x23\x00\xed\xbf\xc5\xd4\xb2" "\xc1\x68\x81\x3e\x2c\x57\xf0\x46\x82\xc4\xf4\xd0\x41\x21\xdf\x4f\x04\x26" "\x79\x25\x84\x04\x3a\x18\x83\xfb\x98\xcc\xcf\xf2\x35\xec\xf1\x83\x68\x28" "\xbe\xfe\x40\x9a\x02\x0b\xe5\xf0\xb1\xf5\x7d\x0c\x15\xda\x65\x63\x62\x5f" "\xf9\xcc\x0f\x70\xb7\xa4\x58\xe9\x0c\x33\x5c\x36\xcf\xe3\x7b\x59\x91\x53" "\x8d\x2c\xb0\x89\xf8\x59\x31\x70\xc6\x24\x05\x9e\xfa\x96\x41\x44\x84\x68" "\x01\x2b\x71\xae\xb2\x57\x23\x8c\xe6\x4c\x95\xa2\x6a\x89\xfb\xc9\xa3\x4e" "\xc6\xf7\xe9\x54\xb7\x3b\x3c\xec\xc0\x4a\xe4\xbc\xd7\xea\xc1\x41\x4d\xb7" "\x4b\x71\xc2\x4f\x30\x47\xcd\x0d\x70\x80\x8e\xaf\x07\xd4\x5e\x90\x62\x28" "\x9a\x59\xed\x1c\xc4\xa0\x58\x49\x9f\xd1\x0d\xdb\x40\x3c\xee\x44\xd7\x1f" "\xb2\xd9\x5d\x0a\xbe\x34\x51\x99\x09\xde\xe6\xfa\x28\x5a\xaf\x7e\xca\x1a" "\xde\xc0\x74\x0c\x44\x35\x8f\xb1\x66\x7c\x55\xa9\x9e\xd2\x2b\x9d\xe7\x17" "\xdd\x30\x61\x8f\x07\x9f\xb9\x8e\x68\xb6\x0b\x6e\x3f\xd7\x1f\x57\x11\x7b" "\x2b\x97\x83\xbf\x46\xbd\x61\x48\x39\x04\x44\x87\x3a\xc8\xe4\x5a\x9e\x3c" "\x59\x69\x7e\xa0\xf0\xe9\x9d\xaf\xdd\xa9\x54\xe4\x77\x02\xda\x87\xd6\xce" "\x66\x15\xcc\x02\xec\x97\x0b\xea\xd4\x5d\x33\x54\x91\x58\xae\xb2\xfe\x97" "\xff\x3f\xcd\xd4\x0c\xe8\x14\xe4\x96\x13\x48\xc3\x2c\xc6\xe3\x22\xfc\x69" "\x03\x4a\x5f\x0c\x90\xe8\x03\x76\x4e\x13\x54\xa4\xc8\x6c\x16\xe0\x7d\xf8" "\x8b\x87\x1f\x8f\x91\x32\x48\x90\x72\xe0\xb3\x5f\xa8\x41\xb0\xee\x7c\x6c" "\xde\x04\x94\x17\x7f\xc9\x8e\x90\x25\xb4\xbe\xbe\xf6\x70\xd8\xad\xe4\x8a" "\x45\x08\x99\x5d\x8b\x5c\x3d\x40\x0e\xee\xc2\x0e\x29\x03\x3d\xe3\x33\x79" "\x1c\x77\x5b\x1a\xe2\x45\x08\x62\xb3\x43\xda\xbc\xb4\x6b\x1a\x2b\xcc\xe4" "\x57\xba\x26\xbe\x74\x05\xc5\x84\xe2\xa2\x5d\xc6\xf6\x8e\x6d\x19\x99\x4c" "\xe2\xf2\x7b\xad\x0c\x5b\x7e\x08\xe6\x1f\x89\x9e\x17\x2f\x98\x05\xd3\x1f" "\x79\x2f\x65\x6a\x3c\xa3\x0f\x2c\xab\xf9\xe4\x0c\x3c\x93\x8f\x6c\xf2\x69" "\xe8\x67\xd3\x3b\x0b\xca\x96\xf4\x56\xc5\x95\xb2\xce\x19\xb8\x94\xde\xad" "\x75\xe4\xd5\xd9\x06\x1e\xb1\x21\xc9\x6b\x57\xd1\xf1\xb4\xa2\xd3\x37\x13" "\x48\x37\xed\x33\x41\xb2\x14\xb1\xb1\xae\x02\xe4\x0e\x9f\x7a\xfc\x42\xf5" "\xa0\x9c\x94\xe1\x53\x5f\xaf\x69\x01\x51\xff\xf6\xe7\x2c\xfe\x9f\x4c\x69" "\xe2\x29\x88\x72\x1b\x0d\x9e\xd4\xa3\xb7\x88\x9a\xc7\x32\x84\x00\xac\xd3" "\x8d\xeb\xf5\x6d\x79\xf6\x80\x4e\x07\x8b\xe7\x2a\x94\x6e\x45\x10\x59\x59" "\x2d\x30\x4e\x65\x44\xa2\x55\xe1\x9b\xed\x65\x5e\x40\x68\xfe\x2f\xb2\x1c" "\x9a\x52\x67\x26\x6d\x70\x79\x30\x6a\x66\x0d\x0e\xa1\xc7\x78\x6f\x7e\xac" "\xdc\xd1\x08\xba\x0c\xa4\x48\x2b\xb5\x16\x41\x81\xde\xa5\xa1\x88\x1c\xfa" "\x42\xdc\xbe\x95\x13\xd3\x3a\x7f\xb7\x4e", 4096)); NONFAILING(*(uint16_t*)0x20001584 = 0x1000); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000580ul, /*len=*/0x1006ul); syscall(__NR_ftruncate, /*fd=*/r[0], /*len=*/0xda0ul); return 0; }