// https://syzkaller.appspot.com/bug?id=b2e1556716a64f70e53256feb878d22a288f483e // 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 #ifndef __NR_statx #define __NR_statx 332 #endif static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[4] = {0xffffffffffffffff, 0x0, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000002000, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000002000ul, /*mode=*/0ul); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x2 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000002080ul, /*flags=*/2, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x404 (8 bytes) // opts: ptr[in, fuse_options] { // fuse_options { // fd: fs_opt["fd", fmt[hex, fd_fuse]] { // name: buffer: {66 64} (length 0x2) // eq: const = 0x3d (1 bytes) // val: fd_fuse (resource) // } // comma0: const = 0x2c (1 bytes) // rootmode: fs_opt["rootmode", fmt[oct, flags[fuse_mode]]] { // name: buffer: {72 6f 6f 74 6d 6f 64 65} (length 0x8) // eq: const = 0x3d (1 bytes) // val: fuse_mode = 0x4000 (23 bytes) // } // comma1: const = 0x2c (1 bytes) // user_id: fs_opt["user_id", fmt[dec, uid]] { // name: buffer: {75 73 65 72 5f 69 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // comma2: const = 0x2c (1 bytes) // group_id: fs_opt["group_id", fmt[dec, gid]] { // name: buffer: {67 72 6f 75 70 5f 69 64} (length 0x8) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // comma3: const = 0x2c (1 bytes) // opts: fs_options[fuse_opts] { // elems: array[fs_opt_elem[fuse_opts]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // } // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd", 2); *(uint8_t*)0x200000002142 = 0x3d; sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x200000002155 = 0x2c; memcpy((void*)0x200000002156, "rootmode", 8); *(uint8_t*)0x20000000215e = 0x3d; sprintf((char*)0x20000000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x200000002176 = 0x2c; memcpy((void*)0x200000002177, "user_id", 7); *(uint8_t*)0x20000000217e = 0x3d; sprintf((char*)0x20000000217f, "%020llu", (long long)0); *(uint8_t*)0x200000002193 = 0x2c; memcpy((void*)0x200000002194, "group_id", 8); *(uint8_t*)0x20000000219c = 0x3d; sprintf((char*)0x20000000219d, "%020llu", (long long)0); *(uint8_t*)0x2000000021b1 = 0x2c; *(uint8_t*)0x2000000021b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=MS_NODEV|MS_NOATIME*/ 0x404ul, /*opts=*/0x200000002140ul); break; case 3: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000000021c0ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x2000000021c8; r[2] = *(uint32_t*)0x2000000021d0; r[3] = *(uint32_t*)0x2000000021d4; } break; case 4: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x2b (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x2b418842 (4 bytes) // max_background: int16 = 0x5 (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (4 bytes) // time_gran: int32 = 0xffffffff (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x0 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x200000001dc0 = 0x50; *(uint32_t*)0x200000001dc4 = 0; *(uint64_t*)0x200000001dc8 = r[1]; *(uint32_t*)0x200000001dd0 = 7; *(uint32_t*)0x200000001dd4 = 0x2b; *(uint32_t*)0x200000001dd8 = 0; *(uint32_t*)0x200000001ddc = 0x2b418842; *(uint16_t*)0x200000001de0 = 5; *(uint16_t*)0x200000001de2 = 0; *(uint32_t*)0x200000001de4 = 0; *(uint32_t*)0x200000001de8 = -1; *(uint16_t*)0x200000001dec = 0; *(uint16_t*)0x200000001dee = 0; *(uint32_t*)0x200000001df0 = 0; *(uint32_t*)0x200000001df4 = 0; memset((void*)0x200000001df8, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000001dc0ul, /*len=*/0x50ul); break; case 5: // statx arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 31 00} (length 0xe) // } // flags: statx_flags = 0x1000 (8 bytes) // mask: statx_mask = 0x100 (8 bytes) // statxbuf: nil // ] memcpy((void*)0x200000000640, "./file0/file1\000", 14); syscall(__NR_statx, /*fd=*/0xffffff9c, /*file=*/0x200000000640ul, /*flags=AT_EMPTY_PATH*/ 0x1000ul, /*mask=STATX_INO*/ 0x100ul, /*statxbuf=*/0ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {25 10 dd 22 ed 6f 68 56 e7 c0 63 88 03 c7 c4 fa 4c 85 a9 2b // e4 d9 f3 e2 d5 83 0a 0c a0 8c 67 96 dc 1f 16 0d cf 56 f3 a7 7c c1 1a // 52 d4 18 45 ee fb cd 79 b5 11 77 ec 86 82 91 a9 64 fa be 09 96 7d 95 // 46 65 49 89 92 18 e7 bc 03 46 44 18 49 65 3d 80 8b 20 97 e3 31 b5 43 // 24 88 d5 01 55 99 f5 4e 84 74 4c 74 82 d0 1c 82 3b 15 29 39 da 76 88 // 92 0d 58 b4 ac 66 49 72 ad dc 71 0e 59 57 19 87 32 c6 ed 09 73 e7 f7 // 07 70 ed 22 73 49 40 c1 9b 0b ce 9f 0a ec d7 54 1d d6 44 8b 98 f5 41 // 60 42 18 3b ae b4 36 91 3c 11 ac 5a 76 91 6f 77 74 7d 19 ad 8d f6 92 // ba 93 da bd 67 64 f9 12 84 46 13 44 e6 fb c1 7c a9 16 22 75 bd 0a 76 // ab 18 ea 9c 6d 1f 32 8b dc 43 11 8f 11 fd a9 02 84 eb 60 10 c5 71 ba // 51 08 53 85 47 80 06 9d ce 64 52 ef e4 ad 6b de 49 3c 64 76 75 95 6f // c8 ef f2 b1 97 19 6b b6 92 d1 0c fa d9 61 02 b8 04 d8 98 3a 10 d7 48 // f9 06 9f 88 f0 58 92 0a 04 0d c7 5b e6 5a 99 1d 83 f6 7b 5b 1d 87 13 // d8 ff 1f 4c a0 9d 38 16 e5 86 45 05 07 9f 7b 98 02 76 3f 4f 0a e1 6d // 7d 12 ae df 15 5e 50 a1 92 47 9d a0 c2 f3 7b b8 10 c6 d8 9e f2 3c ec // fb 88 8e 3e d7 d5 50 e4 80 20 49 dc 86 14 c0 4c e9 24 67 c4 ee c4 6e // 1b 94 24 e8 57 bb 64 9e 6e 0f cc 34 f9 0a b8 ff 86 15 e4 8a cd 55 15 // 68 db 35 76 c6 9c ba 9a 7c 9b a5 66 a0 f2 c6 b1 59 19 f6 e1 d6 6d 27 // ea 95 87 09 5b e2 54 4f 26 91 df 4a ad a6 a3 5c 85 b8 60 cc 0b f4 e6 // eb 9a b6 7e 46 34 d2 6b 84 93 65 39 b7 e0 48 16 63 c9 c7 db 2b dc a4 // 6b e3 87 67 92 54 75 08 81 1b 09 83 c8 36 09 72 dd ae 1c c5 66 21 53 // d9 83 a6 65 9f aa d7 cc 13 65 3a fe da 6d be 2f 32 f9 3c 96 55 ad 78 // 6a e2 6b d4 97 13 05 ee 4e c0 3d ec ee 9b 4b 8b ed 36 69 a2 1c f4 43 // 5c b8 6c eb 9a 0e f0 4d 02 c0 26 b6 e4 43 3d 9a d5 99 a4 75 8f 08 fe // 56 38 d7 04 6b aa 31 f0 3f 03 27 41 1d 84 e5 81 e2 e1 5b cb 1f 13 67 // 98 24 1e 1b d3 f8 01 ae 5f c6 81 85 92 f2 1b 7e 6c 25 28 88 92 2a 04 // 45 54 d2 37 aa 32 5d 61 9b 2f 4a dc de 20 a3 fa 8c 62 a4 43 e2 48 f2 // c7 db 9c 14 de cd a6 f3 08 6b ee b4 2e be a7 71 d0 8f 50 d6 b1 70 43 // ff 64 8b bb 92 15 8b 8d 4e 4b df d0 44 74 11 b2 04 83 67 8d 55 61 b8 // 08 6f 00 b5 58 85 32 22 fc e7 58 10 3b eb 32 dd 9e da b3 6b 02 de ec // 46 db 6d 74 e7 09 c3 94 8d d1 2e 79 5e db 51 55 1a 8f 69 33 60 1d 87 // 9a c9 6f e8 94 bd 6d db c2 4a ed a0 cb 0f 30 11 4e d8 b9 15 79 3d de // 81 19 87 3b f5 8a 8e f0 7b cf a6 f6 95 51 f8 5d 87 02 2d 22 79 8e 92 // 3c f4 c7 ae 10 9f fe 30 3f 3b b0 d6 6b e1 ae 73 28 92 bf 25 c5 58 fc // 44 0f 87 82 07 fc 4e 33 7f a9 2e 26 48 54 9a 62 b4 a0 3a 57 a0 9e 67 // ac 16 b8 06 6f 77 7d 30 2c 8f 5c 27 37 43 b8 d6 00 6b 4b 10 e6 49 d5 // ad 6e 2e 1d 51 50 c9 98 fb 6f 8c 39 06 29 62 61 69 ee 78 b9 88 08 cc // 87 b2 41 3d 12 d5 3b 16 f4 5b e2 0d 2f 03 3f 93 3e 24 fc 11 40 2e 33 // 3a 62 37 35 fa d5 40 22 24 d7 27 43 83 7c bb 37 4e e6 55 b9 23 c1 f7 // ae fc 50 9d 6f 64 89 76 c8 07 be c7 be 71 2d 89 ed 96 f6 88 05 6c 2a // 36 2b 18 01 cd 9e 56 c0 3d c1 86 c0 91 19 e1 b8 2f e7 a9 56 a9 31 f3 // 30 11 95 f9 fb 9b d9 95 fd 36 74 c1 1c 75 af 03 4f 82 ff 36 22 62 82 // 35 33 f3 e7 fc 52 c0 f2 e8 79 6f 76 3e 72 4b cd d1 cf 2d 54 ce c2 79 // a0 94 44 83 bf 4d 18 43 b6 33 eb 65 88 14 74 73 b0 f5 d9 83 e7 ba 79 // 02 a7 e3 a8 e7 5d a6 14 1d 7f e6 7f 66 e2 e5 81 71 9f 20 72 86 a1 6e // 52 6d 24 b6 91 0b 46 a5 bd 57 7b 65 f1 6e c6 92 91 49 ec 61 7e c7 68 // ca 1e 5f 17 fb 5b d4 0b ca b4 38 21 ca 47 f5 af 5f 22 ba 71 30 de ef // 10 e2 55 2c 4c f2 f6 7e 7b 10 c7 5e 3b a0 15 23 dd fa af 0f ab 49 9c // db 80 82 c2 d5 92 c4 3a b2 71 0b ce 36 00 01 7e a7 d6 c9 09 73 a0 dc // 89 9e c2 72 7f 96 77 d6 51 8b bc ab 7f d9 32 ed 5f 42 ee 5a f0 46 7a // 72 94 ab d9 c6 99 66 2f 42 da b4 93 3b ba 90 87 a9 63 c4 1f ef 1a d4 // 82 f0 46 6b d1 94 26 d2 2f 57 96 4b a4 c0 8e f8 37 64 33 ac bb bd 0b // 1d 4b 0b 7c e9 c6 53 b1 c5 d6 6d b3 ef d9 1a 07 b8 44 61 3e 0c ef b6 // 9c f5 27 3c 3a 41 18 bc b3 e4 50 4c 18 2d 4f a6 29 2a cd 71 ea 62 b1 // 8f 6e 23 4f 43 be 2a e0 b9 3e d6 d6 88 64 e5 b8 e1 1d 0d 59 71 d8 b8 // 95 72 51 9b ab 43 89 4d 1e 91 83 75 29 09 7b 0c a6 e3 a1 d2 13 e3 cf // da c5 fb 80 c8 89 81 c4 6c ac be 53 f6 59 a9 e3 07 14 72 9c cb cb ff // 08 e7 26 d5 0e f0 b7 99 ec 8c 38 35 7a 26 07 5a 3d 40 11 55 6b e9 6e // 47 0c a9 ac c4 e0 2d 76 00 4b 60 7c ea 55 ad 49 62 ab ae 96 07 77 a6 // 25 aa 7a f9 ab 9d 89 55 f1 78 94 dd d1 ed 99 ad 3f eb 84 4d b2 ec 63 // 71 49 ba 57 f9 d7 36 64 ca 7a 0f 88 00 af d2 17 3d f3 49 0b af e7 17 // 0c e2 4b 18 10 a8 2c 5b 13 2b f0 eb f4 cf ba 6c 8a 1d d6 d7 9a cb ee // 91 9d 9a d2 7a 53 c0 fe 68 e9 28 bf a4 fb b3 8e b8 eb 89 60 bc f6 70 // cd 33 fd 14 4a e8 df 9e 17 2c 73 d0 35 49 3a 6f c2 b0 19 ee 2a 7b 0e // bb 7d 05 77 ae d6 17 9c e7 2a 3b 51 3c b2 1a a1 60 30 c7 de e0 79 a4 // f7 71 8f ff 12 6d 07 12 43 c7 29 9f 43 98 8f 56 e7 b3 69 6f 56 2d 95 // 7d cc ac c1 d7 41 43 43 01 bf 8f fe ba af bc 64 1a af 99 3f 55 03 6a // 7c 63 72 70 f7 74 3a b5 69 59 1a 11 05 a1 7f 7b 67 10 19 44 9b e1 71 // 30 cc d8 04 c4 a2 ce 20 d5 2c 8d 9c cb 03 66 33 8e b3 44 6f 7e 25 98 // 21 dc c2 86 c6 40 5b fb af 1b ba 4b de fd 8e 29 99 21 1d 59 ad 94 bd // 21 38 90 23 4f 84 33 1b f6 ec fc 91 f1 49 09 55 aa 24 f7 8c a5 10 5d // de 2c 0f 29 76 63 ff 36 4b 23 5a bd 64 d0 f6 ca f2 70 43 df d6 3a 29 // 1d 8b 69 80 50 2c f8 d7 f0 cb ce 31 2f 39 4e 1e 16 79 9b 50 2e ac 92 // 0e c0 07 4f 15 84 5c cf db 04 b1 0f 99 d7 10 cc 55 15 db b5 ef d9 3a // e7 9e 30 ba ad 78 95 72 5c 80 7c 36 50 8d 7d 4d 9a 6e 68 7c 9b 69 fe // 15 c8 90 b5 68 21 9f 14 ad bf e7 fd e1 42 46 91 c5 7c 07 cb 66 fc de // aa 9b 35 59 8b 41 1a 82 cc af 47 c5 7a 27 ca 2d 0e 23 53 58 8a ac 4a // 90 99 16 6b d7 62 b6 44 74 c6 89 d5 c1 b9 48 90 41 85 84 2b c8 71 6c // 50 cf 78 a8 76 ad 7a 4d 09 d7 fb c7 e0 03 75 ec f1 1a d9 d8 30 53 4c // 8b fe 2d 7e 17 a7 66 0a c8 a2 97 a6 b7 a2 51 32 00 4f c6 c1 7c e4 06 // 53 6a cc f9 ee 46 17 ef 4e 5a 72 8a 83 d2 72 6f 4f 37 63 6f f7 65 27 // 6c 7f 22 79 09 08 8c 92 03 73 6f df c4 45 65 a6 a7 cc 25 41 97 61 99 // 9f 5b 2b 17 bc c9 ff df 60 cc 0e 05 d6 72 ae 78 51 11 bc 1b 31 23 68 // d3 59 6a 14 a9 e7 ef 26 bd 6c b7 1d a0 01 61 fb 79 c2 c7 62 52 06 8f // 87 aa 69 39 e8 46 37 b7 a0 77 45 f7 ca da 5a c8 c6 2e f7 f3 8a aa 5c // fc 5e e6 07 7e 71 0b 29 b6 be 81 8a c6 00 b3 65 0b e0 51 cf c5 6f 1e // 54 5b b8 80 f6 aa 33 68 99 c1 d6 38 a4 94 45 9e e0 66 e3 0e 9e c9 40 // 88 7f 5f 92 5d b8 6e cf 14 ed 24 92 a9 d5 25 34 26 7a 28 ce 95 8f 05 // 14 f7 cc 38 59 a3 49 12 b4 0b c4 64 ff 88 76 13 57 f3 95 72 4f 3e 11 // 1e 65 1a a2 cd d4 82 80 46 8f ec 45 a4 8c 6e 63 ca e0 9d e0 20 05 c2 // e2 e5 70 2a 67 f8 02 77 d6 9b 80 7a 64 9f f1 f0 74 18 7d 88 dd 3a df // 98 b8 08 96 d1 a6 82 10 4a ae 13 e1 31 12 bc ce d4 c0 ac 2f f3 ae 65 // 88 45 2e ca 59 be b1 9f 1f 00 9f 1e 30 27 79 a7 b2 f8 24 b7 6a 3a d2 // 35 6d 23 3b 2c 43 c9 72 49 41 a8 d8 17 9e 41 60 f7 01 ba b4 b0 60 cd // 96 37 31 10 f9 a4 68 f0 76 06 3e 86 7d 15 b4 8b 3c 07 4f f5 70 25 6e // 7b dc 76 a2 6a 2c eb dd b5 c1 de 23 82 40 03 22 5d 02 21 4a d2 88 67 // c7 12 e0 58 d5 fa 25 da b5 ec 13 ea ec 15 b3 2b 0e 81 97 59 8d 50 30 // 11 d3 1c 30 20 43 64 92 e7 a4 2d c2 8e 81 44 51 06 11 93 79 12 bf 88 // 77 c1 9d a3 ac 79 97 11 62 c2 1f af 1e 31 93 db e5 8f 94 0f ba af 98 // e1 7b ce e8 6a 65 1c d1 24 b8 95 2d 84 3b ff 84 9d 70 93 b6 24 91 a3 // 48 25 f8 5f ee 69 fb 9d 9f e7 27 a6 ce 04 6b 2a e5 ac bf 8d 54 b5 a8 // 20 1a 6f f0 e8 c2 2a 55 44 ba 54 ff 19 32 02 3d f4 cd c4 aa df c7 b3 // 71 f8 bd 7f 7e a1 02 7d 58 0e 3a 27 4a ff 5a 98 0a a9 e9 26 5d 33 2f // 61 ff b4 a6 64 a3 39 c0 2b c1 ac d3 39 ab 22 62 74 68 74 ee 5e 07 e7 // 12 e9 ff 37 23 4a c9 10 8b 80 f6 f2 4f 28 a6 9f 04 74 12 cd fd 4d 27 // b0 18 34 e3 4c 22 72 fb 24 a2 9c 6e de 0e a8 21 be 78 02 65 3c ef d3 // 62 2b a5 b8 b6 38 82 23 8c d1 80 81 85 2b 4e 67 e5 be 7f e0 05 5f 49 // 15 d9 7c 23 41 24 b9 43 4b ee c0 26 9c 66 0b ad dd d6 fc d6 a6 d6 25 // be 7c a1 f1 00 f7 84 74 84 8b 71 de 42 cb 4b 97 39 ee 1d 3e 16 a9 8f // de 99 94 76 4f 02 d6 51 2b 62 db ae 65 af f8 82 9f cf 2c 40 94 62 9e // 05 a8 f3 5a d9 c5 15 26 3e a5 dc fd 14 ce d6 cb c6 5b 26 de d9 46 a9 // 42 33 2b 4b c8 18 43 40 8a 80 9a e6 8c 1b e2 9f e0 db 50 25 d3 ec f9 // 12 53 74 db ef 6e ad 96 c4 22 60 23 ab db 56 f2 f6 ee 77 7f 59 bf 03 // 36 87 a2 91 39 53 58 1d 40 a1 b2 61 d0 52 85 33 79 f4 b5 d8 03 a2 93 // a4 b3 c7 7c a5 27 a4 ca 2c 5f f7 26 d0 63 4d 33 39 11 3f f4 c5 ff 3d // 1c 77 fa 2c 56 9e 11 eb e5 57 10 3d 05 41 3c f7 6e a4 97 d3 58 8e 8b // a6 87 14 a9 ae 6b a0 fc b5 32 0e 16 c9 6b 6c 14 44 d3 e8 a7 2b 7c d3 // d5 3d 96 8a 79 ac 7f d7 4d 76 c6 b1 b8 90 1f 85 75 87 9d e7 43 5d b8 // 74 84 0c 42 cf bc c5 2e e6 0e 70 7d 31 3e 7c 31 80 24 60 e8 34 09 a3 // 9c e8 d7 b2 67 02 58 fa f9 d1 d3 2e e9 09 19 c5 48 f0 18 ce 96 93 3f // 33 60 ee 85 2f 38 3c d2 ab d9 03 7c a7 33 93 86 2e 8c b0 ce 64 16 aa // 2b da 3f de a0 21 d2 00 1d e0 8b 6f 25 09 fc 17 1e 4a 24 7c 29 2a 33 // 5e fc 22 17 47 89 78 64 64 db e0 b6 24 9c 55 4c b9 8e 33 bc 2c 1f 41 // fe f3 27 c4 d8 e4 0e ea 16 9d ef fe cf 00 1e b4 b7 ba 91 26 d5 e2 f6 // 1f 40 74 be 2a 3d 34 1f ac 22 9d f3 96 a3 68 0f 91 bb 81 23 e6 a5 d3 // 24 14 38 e7 b2 4f 5c 61 f9 b1 ce 54 1b e3 5a d1 a9 28 5a 29 d2 37 02 // 7c 29 c5 14 5d e2 84 89 ca 19 89 46 92 27 7b 3a 91 64 e7 64 c2 46 ff // 97 81 83 be aa 73 ac c6 e5 25 5c ac e8 57 67 c1 29 9d 48 e0 a5 a0 47 // ac eb 60 6e c0 5f 12 d6 c9 3b 64 2a 94 c3 74 eb 25 84 8b 0e fc 87 96 // e4 11 b7 29 c1 74 d4 f9 e1 19 90 d3 2b da 2b d6 a8 6e 1f 65 48 be b8 // 65 32 30 2d a3 d5 6d 78 64 44 28 7c 68 a3 6e 29 f8 bf 8a 9a 8f 38 00 // 58 07 06 cc 0c c6 cf 21 55 9a 21 4d a9 94 12 8a ca ba 36 dc a1 3f fc // 2e 50 f7 b4 d5 10 15 f2 4f 0a 5f 38 3e e5 c5 32 f1 f1 e8 2a ac 60 6a // 2d 08 06 90 80 fe e5 eb b9 3b e3 79 3a 60 6f dd c0 74 18 f3 85 98 88 // 22 f5 66 4e 61 3a 82 b7 dc e2 18 f7 3d ba 86 b7 30 b0 ab b3 dd 36 f3 // 0f 6f 1d fc 08 54 b3 98 8e ad 9a b2 2a 06 bd 68 77 01 44 d1 ce a6 24 // b7 ad dc 03 4c ed b7 00 92 9c 4b 5b 6a 6a 80 97 4a 24 4b af 21 29 06 // be 7e 16 b7 88 d8 8a 15 fd 5d 17 85 1c 72 40 9d 6a 5c b8 9c 62 b5 e0 // f7 fc c3 5f d9 ef ec 75 3f a5 7b f0 16 80 d3 94 fb 86 68 5f bb 2c 5f // 14 9d 69 9a 3e 65 7e 1c b0 1f de 09 53 62 f0 a1 fe e6 42 f9 0e bc b2 // f4 f3 d9 07 8b a1 3e 06 bd 39 77 3b 68 ca ab 2f d8 28 e7 8d 0b e2 1b // 76 f4 ad e6 38 d5 de 8f 11 48 51 25 03 fe 0c 30 50 2d 16 c8 a3 37 71 // 6a 9a 44 12 0f 38 9d b6 08 0e 2a 83 d3 a7 2b 2b 96 44 6a 0e 6e d1 72 // 39 21 0b a2 0a fd c5 9e 21 7e d2 a9 15 43 67 b6 b3 ef b5 c3 df 08 88 // d4 5b 86 9d 90 37 4d bc f1 b3 69 d1 75 c1 ad ad 59 93 6f db aa 3a 45 // 0d b1 7e 0a 4b a1 6f ed 1c d7 49 46 90 28 76 71 ee 7e 6a 5c 51 df 6f // 68 26 83 72 cf ab 78 ac 36 71 1a 74 3c 60 e9 e7 85 88 0f f6 8c 17 51 // 8f 8e 83 40 48 5c 12 b1 5d 55 e1 fc 46 18 22 16 d2 ec 86 b0 27 d3 e6 // 00 64 0b 02 24 0f c5 75 8e c9 66 a3 ae 92 ae c3 14 85 05 e7 75 a3 b2 // 0d d4 91 19 48 ba 8a 36 c7 1a 65 68 62 42 41 c6 87 78 53 d0 f6 cc c3 // 7d 8e a7 a6 07 66 7b 5e e7 35 c1 48 53 26 c4 9c 7f 67 4f fd 08 34 0d // 02 4e f6 3a 9e d4 05 84 dd 77 77 29 89 b0 35 9e 5b 08 6d 81 49 0e bd // 61 5d 4a 67 60 e7 0b af 3e e4 f4 71 44 35 0b 6b 17 d5 fb a4 bc 87 d5 // 61 73 66 43 76 76 0a 97 25 9a 80 90 ee fb a0 c2 8f 88 5c ce 16 83 9b // 79 d1 62 3a ff e8 b4 cb cb 7f 93 8c 99 57 a3 7c e5 38 0c d7 63 b5 cf // 16 f5 23 4a 29 2f 7a 5a 3f fa 55 1e df 74 64 8a bd c0 22 18 a8 86 60 // c8 67 df bc db 56 fb 28 89 db f4 dd da fc 68 dc 53 0f 7e 6e 8a 1a 22 // 79 74 9a 2e 77 b7 66 81 46 e8 2f 7d 3d fb 45 39 7d a7 79 91 b6 d0 18 // 85 5a 75 33 e3 12 12 5a 71 6b b0 e1 9c 5b 99 25 e9 dc 21 b0 c8 cc 68 // 05 7b 4e 03 99 88 02 42 67 74 20 28 a7 52 ea 6c 9b e0 0e c9 79 9f 6c // 71 02 cf 39 8e 82 4e fe 2c d1 87 14 12 76 c0 88 9e 51 85 cb 04 12 4b // a0 00 eb 3a e2 7a f7 9c 5b 71 b1 5f c2 90 cd 06 68 84 7a 5e 30 b9 ad // 63 6f de 7c a2 b8 04 67 6c 0a d3 a0 a0 cb 54 07 fd 9b d0 58 5d b8 60 // bb 35 1e 2a cf 8d 99 a0 30 47 2f 4c 56 e3 e0 f8 96 47 6c d4 e6 79 bc // a8 fe 51 68 67 db 46 aa 51 3b 32 ce cb f0 c5 e7 1a fb 2d 51 52 89 e7 // 16 0b 71 91 00 85 55 ac ef 03 99 0a 5d cd ee db ea c7 a2 7a 83 24 c4 // 2b a0 e7 9b 0d c5 8d 4f 3f 8e 4b 7d 83 70 da 4b dd 20 ee 47 52 5d ee // f5 59 08 a3 41 cd 05 37 39 56 69 11 70 f6 96 00 a7 b9 cf b2 ee 6a de // c9 0c a7 29 3e 52 7e 2b 4f 44 97 ac ee 63 48 1c 24 92 29 4c fc 48 41 // 5a a2 4d ab ec 55 57 00 f0 76 1c 51 db 87 a5 3f 2f d7 4e ea 2e 6f b9 // 9b 99 c6 02 0f 34 4a b9 69 70 b6 20 c3 79 13 6e 6d b9 80 d2 d6 f1 0f // b0 46 e1 95 b1 42 1e 5b 6e b5 04 69 76 e7 81 7e b6 96 76 b5 b8 92 f7 // af ff 70 cd 69 89 23 67 84 7a 9d 43 fb 6d fc fe 78 3b 83 66 14 3d 4b // 24 ca 00 80 ac 52 fe c9 b0 52 1e 50 46 b1 e0 8c 0f 8e 0e 8f 60 b5 f7 // 9f b9 8b f1 ee 1c 31 a7 86 a1 2f 60 09 22 ab 95 ce ec 82 c7 5e e3 b0 // d8 93 a2 1e a6 17 bc d2 ff 63 b8 71 11 df 01 f6 0b ae 94 22 10 60 93 // a9 2d 63 bf fd 22 31 fe 92 48 7e 6c 8e 21 62 a8 af 39 bf a8 5e 5e 98 // 56 9c 04 bd fc ec 0c ce 17 5f 1b e4 15 88 9b a8 fe 61 9c 3b 54 29 97 // d1 ac 20 96 bd c0 d7 5a 3a e5 ce 25 b2 3e 07 fa f6 90 42 e2 66 9d 3e // af ad e4 db 32 de 12 f0 e7 d2 69 fc 44 1e 2f d9 4a 14 04 5e 59 fb a3 // c9 00 e1 07 88 1d 5b 1a 48 67 34 aa 57 24 7b de 18 c8 c7 d4 e6 3c a4 // 4f 69 3b 90 0c c7 da d2 21 f1 7d c8 89 59 07 c9 44 6e 6a 0e b9 78 3a // 66 99 f1 0b dc 81 19 3d 81 8b e0 f3 2a 49 10 7b fa 60 cc 03 8e 21 de // fe 8d 96 2e d9 dc 3f 1e 8b ef 5c 1b ad 2d 4d dd 36 ff 7b 27 2d 3d 6b // 12 a2 06 ca e0 15 30 6d 5b 80 c7 72 32 5b 4e 96 c0 86 a8 fc 05 66 5b // 1a d1 3b da ea 60 1b eb b9 4b 2d 2e 90 a8 16 11 d1 c7 29 18 c7 61 dd // db 5a b7 11 b6 4f 1a cf cc 7b 24 7a cf 5c 6e d0 c5 8b b5 38 ed a6 18 // de 2e b5 0e 57 cb 67 ca bd b2 df ec 31 ed 29 8c bf 6c d2 44 08 f0 f3 // 8d 04 8b b6 78 f0 79 37 1a f1 90 40 25 52 f2 c3 0f ca 69 6b f6 3d d0 // 12 03 ea a8 9e 70 bd d4 45 d0 bd b9 d2 ce ee 35 dc 85 70 c6 1d 02 04 // 76 b5 57 1e c6 0e cc 47 e1 5a 3c 58 62 5e 6b 88 8d b8 d9 70 7d 78 d5 // a0 19 f9 0e 1d 38 24 f2 e3 5a 2a a1 6b 4a 99 5a 0b 49 ff 3c d4 5d af // f5 64 07 22 bd c2 eb 59 6f 83 c4 63 79 25 8d 55 24 25 ca ef cc ed ac // 6a 57 a4 fb c1 68 44 da b6 7f b2 10 6d 86 3b 6f 45 f3 cf a3 78 0a e7 // a2 dc 29 d2 0c 34 7a 4b d1 f3 55 b7 a4 39 b2 4b 2f de 65 75 aa 7b f9 // 76 f6 01 d2 48 d8 ec a4 5d 07 d0 9b 88 22 55 d3 27 1d b4 88 64 7d 8e // 70 20 44 08 bc 45 af 37 2b cd f4 14 99 d0 ba f3 b6 6f d7 11 3a 94 b5 // ed 59 cd d5 6b 8b 22 1f 3e 41 ef f8 a6 82 0a 48 73 35 17 e2 45 d1 9f // 93 34 06 b1 45 81 33 b7 72 7e 5c df 9e 2e 14 d9 9f 71 21 b5 22 29 23 // 0b 56 43 a3 4e 23 c6 1d 38 55 b7 29 0d 6b be d0 0d b8 43 12 de 4a 3c // 96 05 00 07 46 aa 52 46 38 c4 0c 7d b5 fd e6 9a 13 7d de 00 73 0c 0c // 53 34 3e aa 56 0c 2f a1 69 ab 61 91 54 82 9c 2d 99 1d 66 bc e8 c7 36 // 1f bc 19 7a dc 04 6b 9c eb 0c 8b ce 48 8b da 0a 6f 10 c1 53 0d a8 1b // 71 c6 e7 5e b1 8c b8 88 39 c1 e7 9e 18 07 35 0c 0a ec bd ca da 79 90 // bd 65 c0 4c f5 ab d7 ed fa 4a d2 ae ec e1 e6 a1 49 06 d2 7a 8f 0a e2 // 02 bc 5f d4 1c 99 e6 4f 4e 1c 33 1f 4b 77 d1 e1 94 5f dc 50 9e 21 47 // 02 e6 7e 8e 4f 2f 4d 51 5a 6e 39 94 52 b8 fb c1 90 f3 e3 2d 21 4d 25 // 4e 26 f0 b5 6c 32 ee 0c 3f d7 8b 90 63 34 e4 8e 5a 85 6f 0c 38 a9 9e // 10 86 8a 1d a1 39 86 6d 4f ff 6a ac ff 92 f0 f0 4e bc 20 96 e0 84 17 // e5 e7 86 83 ec 42 cf 10 d6 a4 0f a0 77 4d 12 57 01 d0 c1 fb ae e1 33 // fe 23 b8 33 33 99 ab 9a 4b b1 d1 1b a4 80 86 51 23 7d a9 eb 7d 88 9e // f1 e4 e3 4d c5 34 5b 1e 85 27 3d fa aa f8 19 5e fe 97 96 6a c5 95 a9 // 1d 58 7b 1a 70 50 8c 6d 5b 91 58 9e ac c9 cd f9 cf 40 88 30 ce 03 9b // 19 27 d2 ba 57 a2 98 08 aa 32 b1 52 3b f0 e8 ce 87 a5 79 16 0c ee 07 // a3 68 c4 d7 6e 30 14 7c c1 d5 8f 66 c1 e8 00 3a 8b 28 9a ab b1 eb 39 // 50 75 9b 83 f1 a5 b8 24 6e 2a 0b 20 b4 a9 5c 7b 9f 1f 4a 4d 77 37 8e // 3b 2a 88 5d 5e c1 68 d4 b2 62 96 3d bf 10 15 9e c2 71 64 1f 5b 1e bd // 3f a5 26 9e 28 bf 9a ac f5 ec 91 cb f0 b1 97 01 43 82 7b 71 a4 51 c9 // 27 aa 3a 96 51 97 43 97 43 48 1d 03 e3 4d b5 cf 87 90 d0 ea b1 9f 16 // 42 c2 56 14 d6 2f a3 79 3c ce 8b 89 89 1c ee b3 e7 ef 28 50 20 f3 10 // 59 11 7e 7a 3c f2 77 74 93 a1 6f 1a c3 5a f0 9a e1 b1 78 6c 9d 8c bf // 35 37 72 ad 76 4c 4f 8b 9a ed 43 13 29 49 a8 ae a0 0c e9 03 99 ab db // 88 06 c0 c9 4e d3 15 4f a9 14 a0 cb 5a df c3 59 22 a8 55 93 05 7d b4 // 07 b8 eb ca f5 96 62 d2 b0 97 51 e7 34 6a 23 b9 89 03 d6 98 16 fe fe // 24 b9 c3 c2 84 3d d6 29 3e 3f fe d3 aa 15 c2 bb e8 40 82 f7 f8 c5 01 // cf 30 41 09 29 60 54 da 75 46 47 2b 71 d5 c8 40 33 44 44 be cd 76 2f // 96 3e 3e cd bf d4 b3 da a3 57 ee 01 41 d2 d2 ec f2 e9 b0 45 ce 2a 98 // 6a 8c b8 36 03 6f 9d 18 2c 08 de 9a 25 f5 2c 7a ee e1 e2 f0 cc 7e 0a // f9 8b 5a 85 3b 6f 4a 5e 73 de cd 2e 18 9e 76 cf bb 47 2b 49 0e ee b2 // 79 33 2f aa 6d 49 fa 39 e6 61 78 7e 5f f4 0e 34 fa de 13 b0 c5 c2 41 // cc 5d a2 2f 55 0e 22 97 93 a1 b2 76 1b 7c 3b a8 d8 ac ea e8 f1 ae 37 // fa 77 79 aa 4b b7 5d 95 6c 8c d8 4e 87 04 89 0e a0 6e 0f 43 78 5c f6 // 4c 1e 86 d7 50 e4 40 90 61 c6 40 6e 28 31 e0 c5 be f8 fa f9 ca 8a 2b // a9 37 dc 43 6f c8 0f 91 38 78 6f 99 63 0c 3e d8 10 d9 83 67 19 6a f5 // ad dd 2e 9b be b6 4d 49 69 6b 65 4e 76 c4 e2 dc 01 54 7d 1e b4 b8 7d // bb e6 e5 1e f2 46 78 d6 fe 19 51 a9 3c 75 46 a6 a9 ed a3 0e c5 30 10 // d4 db 3e a6 eb 39 ee df 07 a9 38 7a ee 1b d9 2e 92 44 76 d2 ea d4 c2 // 90 7a 83 d2 84 60 c4 cf ca 62 ba ac 8d f8 79 9f dc 52 9d 6d 90 e9 37 // e7 1e d2 4b 70 0d 1c 84 aa 5f 2a 4e 06 63 3a 3c b3 29 bb f0 08 39 82 // 04 fc 3e de a0 5d d6 e2 36 3f 1c fe 35 46 83 7b f8 76 b1 bc 4c c7 4b // 6d 09 f6 f0 d7 8a eb bb 35 bc 07 3a a7 2a 78 40 c5 cf c4 41 df f4 18 // ab a7 d4 22 d3 92 13 64 b8 b0 6a aa b7 ec 84 cc d5 34 ed 4c ec 12 4c // 8b d0 ad 42 e1 e0 18 ea 04 56 a7 c3 05 36 6e 53 bd a3 11 ce 37 37 8a // bf e9 79 cf fa 8b e8 f7 0c c7 a9 b0 ad c9 2e a9 ef 6e 49 88 17 0f 38 // 6e 52 27 c2 0b d3 6a 92 38 50 dc 1a 5c 0f 8f 3d 90 0d d2 48 ac 1b 29 // f8 3e 4f 9f 62 22 2a 0f af a6 cf 94 ec e6 09 27 e0 56 38 80 36 67 4a // 8a 72 9d 3c 72 ba 8b 59 5e cf d6 61 57 3e 47 f5 92 47 59 ec d5 aa 40 // 0f 8d 28 2a 4e 6b b7 de 69 72 ad b8 54 1f 39 f3 9a 5f 1e 54 e7 05 87 // 4f 99 da fa c9 0b 43 e4 55 77 22 9a f7 e0 17 8b 21 94 e8 62 5b d5 63 // 96 dd 83 6d 25 5e 68 38 61 95 b1 64 6a d2 e9 00 3f 40 81 88 cf 52 3c // 6e 29 97 20 5b 43 76 29 4d 2b 1c fd ff 38 66 91 1a 46 79 80 d7 a7 53 // a0 5b 45 16 64 2e 38 e1 00 04 76 c5 85 21 d6 06 96 c1 0d 92 99 7a cc // b9 17 bd 2f ff f4 8a 7d 6a 3d 69 b7 0d 85 a4 78 1b 83 4c 06 ac e9 a7 // f5 c0 84 fd 14 fe 7e 95 43 21 79 3d 02 d8 a3 8b 65 18 1a 2a 26 f6 a2 // 6e 5c cf f9 cd f5 22 26 ce ff c2 c9 d8 f8 13 5c 2c ab 15 57 ee 02 17 // 45 ca 47 30 22 55 d5 98 62 27 fd 5d 54 5d b7 43 c1 fd 70 b1 ed b2 1c // d1 40 ce 49 a6 e8 16 9f 5c 28 6c 32 6d e6 1b f5 df 40 bd dc 6f 5a cc // db 0a fa d6 fa 98 97 7e cc e6 5e 83 d1 2b 0d 96 16 a3 f4 23 d8 fa a1 // c5 80 5b fa 68 a2 48 33 57 a3 5c ce cc e3 2c 99 7d 37 70 81 7e b6 5a // 0b 14 29 af d8 62 3c 37 e3 fd 57 15 36 0a 28 2d e5 20 7e f7 e8 fd e6 // 39 a1 1b 1c 67 bc 90 8c 8f a5 be 45 27 e0 4a 35 ac c5 40 c9 e4 54 48 // 4f 01 5f bd b6 7f 49 69 e1 25 b9 cf 1f 32 87 f9 5f cd 6c 8e 18 65 0d // 66 01 ec 63 cd 5b f1 4d 0e d3 14 a4 38 05 80 68 60 df 50 8c 1a 4a 61 // f0 93 c0 7c 57 d3 ee 4a 87 15 9c 5a d9 1a 22 d2 62 64 dc 87 66 a5 b6 // a8 9e d1 dc 1b d8 ce 52 ee f5 a3 76 c3 8b 90 69 8a 56 48 d2 44 c7 e8 // 37 51 b1 a8 50 34 2a b2 bf 06 d5 e2 69 05 76 f0 0c 5d 35 bf 6d 91 15 // 7d 48 ed 99 d8 8b 4b 89 14 46 01 09 4c 04 35 01 12 23 bf 1f 80 71 71 // a8 62 1b a5 5c a3 07 f2 75 ff 04 8b 65 95 90 83 15 a5 63 87 7c f7 ba // cd 72 be 4a 8c a9 14 7e 7e f9 b6 c8 37 c1 20 d6 c6 74 b0 73 9f 10 31 // 45 4d 55 3b 8f 9b 1e 95 0d 90 15 86 65 11 2e dc 1a e4 c2 4b 75 2e 24 // 28 12 92 b6 7c df ba 6b 07 3b 35 54 5c 89 0b db 13 b6 06 36 26 70 39 // 3f 16 f3 49 0a 2c aa 73 3f 2f 48 77 cd 47 43 a8 06 98 a3 b6 ce 8d 01 // 26 8e 9d e6 c5 10 dc 26 90 b1 53 e7 72 1e 80 cc 22 43 23 1e b0 59 9d // 04 ab 11 91 c3 ce fb 63 0f 2e bf b0 24 ad 39 23 6c 81 d7 ba 1f 55 0c // 9c c0 f5 51 6c 62 bb 19 2b 87 9f 5a 63 29 ea 93 70 70 c2 83 8b 8a a1 // 93 e3 f4 82 33 e9 71 72 bd 6f f8 a6 3f 87 c3 45 bf c7 3a 68 0d 09 a4 // c6 1c 17 0e d3 77 c4 f5 b3 32 b5 28 8a e5 99 be fb 91 f2 05 34 50 e9 // 0e e2 4e 71 2c 40 de 7d 36 09 61 bb 07 71 8b 6d a0 6d 96 8c 42 ce 0f // 70 de 21 0d 97 a7 e0 7c d6 06 1c f3 30 11 17 49 9c ea af da 5f 70 a0 // 49 d4 be 8a 3f 7b ab ed 33 5b 55 14 81 29 a4 e2 1c bf 19 34 0a 75 97 // ed 17 0e 2d 99 a8 1f ac 6b a6 1d f0 d0 94 69 d3 9a 6e 10 f3 0e 25 4e // 4e eb c8 c9 ab 64 7e 17 9e ab db 75 0c 3d 3a 97 e3 d7 55 22 86 66 ef // 6d bf a1 b8 dc b8 28 e8 70 2d c9 d9 24 b9 9f 1c d5 82 98 a6 72 83 d9 // 65 ff 0b ea 31 1b 9e a2 43 a9 52 3e 7f 01 30 3a 34 9b 74 60 a9 5f c8 // f4 5b 27 7f 1a b3 8a 4d 88 38 9f db c6 8b e5 6c 52 08 fc fa d3 77 f4 // bd 5c 4b 33 d3 90 ac 75 0a 2f c1 63 d3 45 e4 14 f1 03 53 64 b2 f7 ff // 79 99 47 db 98 23 70 9c 41 9c cb 05 b0 d7 2d 52 10 1b 30 5f d9 0a d5 // cd 69 96 36 b2 87 54 4c ee 8e 89 22 02 75 46 84 d1 ee 2f 5d 95 3b 49 // 96 cd d6 92 62 41 4a 1b 35 f1 e7 86 22 c9 ec e4 52 43 23 fd b3 1a 54 // f2 94 a0 bd ce c2 24 ab 1d f8 04 4b e9 f8 40 84 d6 c9 e3 ab cb b8 3c // 30 69 0a 44 58 5d 6c c1 a9 d9 b0 e9 26 b8 c2 7d 2c 4d 66 44 c0 97 4a // 1b a8 06 02 36 05 9f 1d fd b8 7a 55 8a 6d f3 44 e6 ca 7b 6d cf 80 13 // a4 8a b5 7d e2 2a 13 af 06 4d dd 57 6d 72 f9 5c 7d 23 6c 50 58 38 cc // ff ac 77 a2 d6 bd 2b 4d e7 b5 9f 55 3d 3f 7b 5c 15 fb 65 f4 f9 25 37 // 48 60 cd ce 4b f8 aa c1 94 f1 2c 5d 67 61 2c ad 25 f0 7d 90 2e 37 cd // 0b 07 e2 13 53 b7 48 63 6f c4 4e 86 76 c3 36 92 f6 b6 f0 dd 7a c1 38 // ae f6 cd 6f 0f d3 ae cd 00 ef 9d 78 23 ce e8 b7 66 da b2 2a 11 b8 d4 // 3e ae a4 62 7c 41 55 31 9c 13 5b d8 5d fc 2f fd d7 f1 27 48 f1 67 8e // 1e 41 29 09 3f f7 6a 59 07 d6 66 ca 39 d5 2b 0c 85 69 bc 28 b4 db b4 // b6 7f a9 97 70 0d 3f e2 c0 07 21 58 15 94 bd 2a c0 a5 69 08 47 f1 83 // cb 85 ae cc f3 ef 10 3d 92 be 8a e2 35 be a5 de 17 df a2 f3 4c f7 ca // a8 62 32 95 6e a0 83 8f ed 7d dc 35 07 09 b3 54 1e 89 27 34 d6 a8 91 // 07 9d 1d 33 fc 11 e6 b9 8d ec d4 da 8c 00 c5 2a 3a 73 ca 00 43 32 ec // 9c f5 01 31 0f 02 ed cb 3e 98 4f 41 b5 13 0a 5a ea 05 8a 75 5f 91 26 // 08 50 cb 80 45 92 8f ab 66 dd 51 1b 6a 14 cb 4c cc 2e 3e e9 f2 dd 88 // ba 1f 59 16 fd c1 14 10 f6 86 13 39 e6 54 77 11 e1 2d 81 8d 5d e1 f7 // 72 2d 14 69 da c8 fb a1 f4 54 79 3b db be 99 9d 3d 99 dd eb fb d7 76 // 7c 27 51 b7 73 63 d3 74 d4 c4 af ff 5b a1 1b 6f f5 19 6c 14 23 03 0a // a9 a7 b7 86 22 22 75 04 67 91 8e 89 6f 42 93 db 12 82 e6 9d 18 d2 5e // 01 99 16 d8 ca 42 85 df b2 c3 fb 3a e8 09 0d c6 eb 34 10 e1 5c c1 2b // 39 7a 2c 05 cd 68 80 c5 93 2e 31 53 8c a0 1c 47 76 3d 13 54 91 45 34 // 7d dc 5f 47 df bb da 98 4c d3 f1 08 5e 94 36 16 7e 51 20 45 2e 59 f3 // b1 07 e1 13 90 f6 71 81 e2 ae 58 ec ba af 02 13 8f 8e 94 95 ad 12 0a // c3 c0 b1 9e bf 4d 56 e7 0a d4 72 49 8b d0 10 7c 81 c5 37 1b 2a a0 93 // 7a 80 e3 d5 e8 ea 82 0f 23 23 cd 9b bc 9c b5 14 1b 78 24 d3 22 17 ca // 1e f4 55 30 ee 3c 4c 6a 96 a7 a7 aa 18 b8 c8 af 20 7d 89 2b 54 39 c3 // c1 ca 69 59 8e 12 a9 09 57 9a 7d d5 91 24 8c aa aa 9b b6 39 a3 46 11 // d9 7a ee 62 76 3a 47 ab 84 01 fc 7d 14 18 33 21 aa 5a 9a 72 c7 b7 81 // 5c 1f af c5 1d 62 24 fa 4f 7f 48 4f 1a 1f c4 f0 9a 02 25 54 d4 94 c3 // b1 cf e0 f6 e0 24 1c e8 cc 5b 4e 92 11 cc d6 97 62 0a b8 aa fe e4 f6 // 01 7f 37 70 6a 5b 8b b4 c0 b8 a2 60 a9 5d 7a 90 5f ad c4 8a 5f 00 78 // 04 78 67 76 5d 42 f1 33 07 f3 10 ef d9 3e eb 59 44 cc 86 79 c0 f0 f0 // 3c 5f 5e 37 b6 71 a8 f2 8b 3a 96 ea b6 86 10 c2 21 92 34 d2 f5 00 2e // 2f 96 21 b5 4b 77 e4 a9 dd 9d 43 da 79 fb 92 75 77 ca 6c 4f 89 65 dd // 42 8e ce 62 a9 2b 9f c0 7b d9 f1 2c 1c cf 86 fe ef b5 e9 70 8d fa 87 // ca cc d2 c0 a3 33 89 4e fe 42 4f b9 14 f1 d2 76 fd eb a7 b5 d2 96 77 // 92 13 ab 27 79 2c 6a be 1f 87 22 63 e1 0f 68 34 11 b5 d6 55 00 29 13 // d6 cd 53 2b 0d 89 f4 9f 75 c0 1a fb 44 8e 1e 0c ba 41 b7 9f f6 d2 73 // 0c e3 30 32 31 8c 70 26 66 99 c2 aa de a7 ad 9d f2 30 32 e5 b3 07 ee // 27 a1 74 ba 75 84 45 2f 6a b0 0e 34 52 ba 5d 87 3d 06 50 d1 9e d5 c3 // d0 77 4c 2a 84 c4 df d9 75 22 6f 8f 71 e0 95 b5 ff 3a 72 14 cc 3a f4 // c1 2d f0 4b 26 b5 4d 2b 1b cb ec 30 ad 5f cc cd bb f5 6b 0a 3b 66 8c // e8 7c 3d b8 35 4d 16 84 57 1b 8b 8f f9 39 76 c0 2b 54 55 f2 3f 53 26 // 10 fa 80 8b 10 f3 ef e8 66 56 66 3d 11 b7 2f 59 ed 95 b5 a0 3b bb 00 // 52 25 66 c1 5f a0 5d 9a f4 5f 2e c8 48 44 b5 aa d7 5d 91 bc b9 06 63 // 48 26 89 67 90 7b b5 16 39 7b 94 a9 4e 42 0d f2 2f 3c 29 d9 7d 76 d7 // 6f 6f 16 d4 d0 5d 36 b2 57 56 4a b2 04 bc 1d 69 36 21 28 b8 1d 58 73 // dc ea aa c6 62 52 d4 95 ee 91 ce 32 bd dd a6 82 4d 1f 69 69 9b 71 40 // 5e 8f ab bb de 65 b6 7b 56 93 16 49 48 a2 ac 47 d6 e3 d7 6c c2 88 03 // 2d 20 19 82 33 0b 6d 2d 05 07 4f cf ab 7a 8e 0e 86 01 a6 e6 56 6f 01 // 42 ad 0d 35 5d 82 c4 63 3e 58 28 90 72 db 1b b5 f5 d7 2a bc c3 5d 10 // 70 8a a0 bd 53 3e d3 25 ff 70 ae b2 b8 2c 42 9c 3c 34 7d 6a 7a 8f 05 // f2 33 e5 5c 63 a1 77 a9 52 32 ab fe 0e 8e 4d 1b 1d 24 d4 72 96 be 15 // d7 d1 5f e8 e2 54 6f 32 42 87 da bb 2f 31 2f b2 b6 bf 68 89 66 90 56 // eb 56 f7 71 1e ca e3 42 11 56 59 26 86 48 b6 79 ec 8e d3 6e 5f 14 9f // 4f 01 8d f1 0d ba 2a fa 00 c2 87 0f 50 ce ba d1 88 07 16 4e e5 37 33 // 98 f6 03 68 52 9f 5e 12 be 49 c4 ed 1b 41 b9 1c 70 79 bf 06 a9 d0 e7 // e2 20 da 63 da c3 da 95 22 52 ba 75 68 8c 7f 1a 0d 85 6a e8 5f 48 55 // c0 2a a1 02 38 d0 16 3b a3 40 1c 7b a0 ec 92 d1 ab a9 93 09 c6 a1 30 // d7 24 74 66 ca c1 87 ce 60 ed 73 c7 37 99 96 4e 12 78 0e 83 38 09 a6 // 4e 54 dc 81 e8 a6 1d 7c 27 8b 30 7b aa 7f 0e 77 2c 3e 61 f5 59 3d e9 // 09 32 fa 23 16 76 95 4a 56 76 47 61 ce 2a 35 30 34 54 b1 51 fc c1 fe // 08 d3 80 af 0a f3 2a be 08 04 ef c6 dc 6e 04 94 7a e3 e5 33 d3 6c af // 25 88 4f 88 fc 54 71 d7 c6 8e f9 96 c7 49 be 71 0a f0 50 1f ed 78 73 // 7a 70 5b b8 61 f2 28 7d 71 1b 72 7e 4e 4e b0 45 98 fd 57 d8 82 b0 07 // 96 7f 47 9f 64 28 3a e1 aa 57 d3 a3 6d 2c 44 ad b8 d0 40 64 20 a9 b1 // ce a6 07 ea 93 e2 f4} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: nil // entry: ptr[in, fuse_out_t[int64, fuse_entry_out]] { // fuse_out_t[int64, fuse_entry_out] { // len: len = 0x9f (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x1 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x1 (8 bytes) // generation: int64 = 0x2 (8 bytes) // entry_valid: int64 = 0x0 (8 bytes) // attr_valid: int64 = 0x400 (8 bytes) // entry_valid_nsec: int32 = 0x800 (4 bytes) // attr_valid_nsec: int32 = 0x6 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x6 (8 bytes) // size: int64 = 0xf97 (8 bytes) // blocks: int64 = 0xd459 (8 bytes) // atime: int64 = 0x5 (8 bytes) // mtime: int64 = 0xd360 (8 bytes) // ctime: int64 = 0xffffffffffffffff (8 bytes) // atimensec: int32 = 0x11a (4 bytes) // mtimensec: int32 = 0x938 (4 bytes) // ctimensec: int32 = 0x5 (4 bytes) // mode: fuse_mode = 0xc000 (4 bytes) // nlink: int32 = 0x80 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x8 (4 bytes) // blksize: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000008200, "\x25\x10\xdd\x22\xed\x6f\x68\x56\xe7\xc0\x63\x88\x03\xc7\xc4\xfa\x4c" "\x85\xa9\x2b\xe4\xd9\xf3\xe2\xd5\x83\x0a\x0c\xa0\x8c\x67\x96\xdc\x1f" "\x16\x0d\xcf\x56\xf3\xa7\x7c\xc1\x1a\x52\xd4\x18\x45\xee\xfb\xcd\x79" "\xb5\x11\x77\xec\x86\x82\x91\xa9\x64\xfa\xbe\x09\x96\x7d\x95\x46\x65" "\x49\x89\x92\x18\xe7\xbc\x03\x46\x44\x18\x49\x65\x3d\x80\x8b\x20\x97" "\xe3\x31\xb5\x43\x24\x88\xd5\x01\x55\x99\xf5\x4e\x84\x74\x4c\x74\x82" "\xd0\x1c\x82\x3b\x15\x29\x39\xda\x76\x88\x92\x0d\x58\xb4\xac\x66\x49" "\x72\xad\xdc\x71\x0e\x59\x57\x19\x87\x32\xc6\xed\x09\x73\xe7\xf7\x07" "\x70\xed\x22\x73\x49\x40\xc1\x9b\x0b\xce\x9f\x0a\xec\xd7\x54\x1d\xd6" "\x44\x8b\x98\xf5\x41\x60\x42\x18\x3b\xae\xb4\x36\x91\x3c\x11\xac\x5a" "\x76\x91\x6f\x77\x74\x7d\x19\xad\x8d\xf6\x92\xba\x93\xda\xbd\x67\x64" "\xf9\x12\x84\x46\x13\x44\xe6\xfb\xc1\x7c\xa9\x16\x22\x75\xbd\x0a\x76" "\xab\x18\xea\x9c\x6d\x1f\x32\x8b\xdc\x43\x11\x8f\x11\xfd\xa9\x02\x84" "\xeb\x60\x10\xc5\x71\xba\x51\x08\x53\x85\x47\x80\x06\x9d\xce\x64\x52" "\xef\xe4\xad\x6b\xde\x49\x3c\x64\x76\x75\x95\x6f\xc8\xef\xf2\xb1\x97" "\x19\x6b\xb6\x92\xd1\x0c\xfa\xd9\x61\x02\xb8\x04\xd8\x98\x3a\x10\xd7" "\x48\xf9\x06\x9f\x88\xf0\x58\x92\x0a\x04\x0d\xc7\x5b\xe6\x5a\x99\x1d" "\x83\xf6\x7b\x5b\x1d\x87\x13\xd8\xff\x1f\x4c\xa0\x9d\x38\x16\xe5\x86" "\x45\x05\x07\x9f\x7b\x98\x02\x76\x3f\x4f\x0a\xe1\x6d\x7d\x12\xae\xdf" "\x15\x5e\x50\xa1\x92\x47\x9d\xa0\xc2\xf3\x7b\xb8\x10\xc6\xd8\x9e\xf2" "\x3c\xec\xfb\x88\x8e\x3e\xd7\xd5\x50\xe4\x80\x20\x49\xdc\x86\x14\xc0" "\x4c\xe9\x24\x67\xc4\xee\xc4\x6e\x1b\x94\x24\xe8\x57\xbb\x64\x9e\x6e" "\x0f\xcc\x34\xf9\x0a\xb8\xff\x86\x15\xe4\x8a\xcd\x55\x15\x68\xdb\x35" "\x76\xc6\x9c\xba\x9a\x7c\x9b\xa5\x66\xa0\xf2\xc6\xb1\x59\x19\xf6\xe1" "\xd6\x6d\x27\xea\x95\x87\x09\x5b\xe2\x54\x4f\x26\x91\xdf\x4a\xad\xa6" "\xa3\x5c\x85\xb8\x60\xcc\x0b\xf4\xe6\xeb\x9a\xb6\x7e\x46\x34\xd2\x6b" "\x84\x93\x65\x39\xb7\xe0\x48\x16\x63\xc9\xc7\xdb\x2b\xdc\xa4\x6b\xe3" "\x87\x67\x92\x54\x75\x08\x81\x1b\x09\x83\xc8\x36\x09\x72\xdd\xae\x1c" "\xc5\x66\x21\x53\xd9\x83\xa6\x65\x9f\xaa\xd7\xcc\x13\x65\x3a\xfe\xda" "\x6d\xbe\x2f\x32\xf9\x3c\x96\x55\xad\x78\x6a\xe2\x6b\xd4\x97\x13\x05" "\xee\x4e\xc0\x3d\xec\xee\x9b\x4b\x8b\xed\x36\x69\xa2\x1c\xf4\x43\x5c" "\xb8\x6c\xeb\x9a\x0e\xf0\x4d\x02\xc0\x26\xb6\xe4\x43\x3d\x9a\xd5\x99" "\xa4\x75\x8f\x08\xfe\x56\x38\xd7\x04\x6b\xaa\x31\xf0\x3f\x03\x27\x41" "\x1d\x84\xe5\x81\xe2\xe1\x5b\xcb\x1f\x13\x67\x98\x24\x1e\x1b\xd3\xf8" "\x01\xae\x5f\xc6\x81\x85\x92\xf2\x1b\x7e\x6c\x25\x28\x88\x92\x2a\x04" "\x45\x54\xd2\x37\xaa\x32\x5d\x61\x9b\x2f\x4a\xdc\xde\x20\xa3\xfa\x8c" "\x62\xa4\x43\xe2\x48\xf2\xc7\xdb\x9c\x14\xde\xcd\xa6\xf3\x08\x6b\xee" "\xb4\x2e\xbe\xa7\x71\xd0\x8f\x50\xd6\xb1\x70\x43\xff\x64\x8b\xbb\x92" "\x15\x8b\x8d\x4e\x4b\xdf\xd0\x44\x74\x11\xb2\x04\x83\x67\x8d\x55\x61" "\xb8\x08\x6f\x00\xb5\x58\x85\x32\x22\xfc\xe7\x58\x10\x3b\xeb\x32\xdd" "\x9e\xda\xb3\x6b\x02\xde\xec\x46\xdb\x6d\x74\xe7\x09\xc3\x94\x8d\xd1" "\x2e\x79\x5e\xdb\x51\x55\x1a\x8f\x69\x33\x60\x1d\x87\x9a\xc9\x6f\xe8" "\x94\xbd\x6d\xdb\xc2\x4a\xed\xa0\xcb\x0f\x30\x11\x4e\xd8\xb9\x15\x79" "\x3d\xde\x81\x19\x87\x3b\xf5\x8a\x8e\xf0\x7b\xcf\xa6\xf6\x95\x51\xf8" "\x5d\x87\x02\x2d\x22\x79\x8e\x92\x3c\xf4\xc7\xae\x10\x9f\xfe\x30\x3f" "\x3b\xb0\xd6\x6b\xe1\xae\x73\x28\x92\xbf\x25\xc5\x58\xfc\x44\x0f\x87" "\x82\x07\xfc\x4e\x33\x7f\xa9\x2e\x26\x48\x54\x9a\x62\xb4\xa0\x3a\x57" "\xa0\x9e\x67\xac\x16\xb8\x06\x6f\x77\x7d\x30\x2c\x8f\x5c\x27\x37\x43" "\xb8\xd6\x00\x6b\x4b\x10\xe6\x49\xd5\xad\x6e\x2e\x1d\x51\x50\xc9\x98" "\xfb\x6f\x8c\x39\x06\x29\x62\x61\x69\xee\x78\xb9\x88\x08\xcc\x87\xb2" "\x41\x3d\x12\xd5\x3b\x16\xf4\x5b\xe2\x0d\x2f\x03\x3f\x93\x3e\x24\xfc" "\x11\x40\x2e\x33\x3a\x62\x37\x35\xfa\xd5\x40\x22\x24\xd7\x27\x43\x83" "\x7c\xbb\x37\x4e\xe6\x55\xb9\x23\xc1\xf7\xae\xfc\x50\x9d\x6f\x64\x89" "\x76\xc8\x07\xbe\xc7\xbe\x71\x2d\x89\xed\x96\xf6\x88\x05\x6c\x2a\x36" "\x2b\x18\x01\xcd\x9e\x56\xc0\x3d\xc1\x86\xc0\x91\x19\xe1\xb8\x2f\xe7" "\xa9\x56\xa9\x31\xf3\x30\x11\x95\xf9\xfb\x9b\xd9\x95\xfd\x36\x74\xc1" "\x1c\x75\xaf\x03\x4f\x82\xff\x36\x22\x62\x82\x35\x33\xf3\xe7\xfc\x52" "\xc0\xf2\xe8\x79\x6f\x76\x3e\x72\x4b\xcd\xd1\xcf\x2d\x54\xce\xc2\x79" "\xa0\x94\x44\x83\xbf\x4d\x18\x43\xb6\x33\xeb\x65\x88\x14\x74\x73\xb0" "\xf5\xd9\x83\xe7\xba\x79\x02\xa7\xe3\xa8\xe7\x5d\xa6\x14\x1d\x7f\xe6" "\x7f\x66\xe2\xe5\x81\x71\x9f\x20\x72\x86\xa1\x6e\x52\x6d\x24\xb6\x91" "\x0b\x46\xa5\xbd\x57\x7b\x65\xf1\x6e\xc6\x92\x91\x49\xec\x61\x7e\xc7" "\x68\xca\x1e\x5f\x17\xfb\x5b\xd4\x0b\xca\xb4\x38\x21\xca\x47\xf5\xaf" "\x5f\x22\xba\x71\x30\xde\xef\x10\xe2\x55\x2c\x4c\xf2\xf6\x7e\x7b\x10" "\xc7\x5e\x3b\xa0\x15\x23\xdd\xfa\xaf\x0f\xab\x49\x9c\xdb\x80\x82\xc2" "\xd5\x92\xc4\x3a\xb2\x71\x0b\xce\x36\x00\x01\x7e\xa7\xd6\xc9\x09\x73" "\xa0\xdc\x89\x9e\xc2\x72\x7f\x96\x77\xd6\x51\x8b\xbc\xab\x7f\xd9\x32" "\xed\x5f\x42\xee\x5a\xf0\x46\x7a\x72\x94\xab\xd9\xc6\x99\x66\x2f\x42" "\xda\xb4\x93\x3b\xba\x90\x87\xa9\x63\xc4\x1f\xef\x1a\xd4\x82\xf0\x46" "\x6b\xd1\x94\x26\xd2\x2f\x57\x96\x4b\xa4\xc0\x8e\xf8\x37\x64\x33\xac" "\xbb\xbd\x0b\x1d\x4b\x0b\x7c\xe9\xc6\x53\xb1\xc5\xd6\x6d\xb3\xef\xd9" "\x1a\x07\xb8\x44\x61\x3e\x0c\xef\xb6\x9c\xf5\x27\x3c\x3a\x41\x18\xbc" "\xb3\xe4\x50\x4c\x18\x2d\x4f\xa6\x29\x2a\xcd\x71\xea\x62\xb1\x8f\x6e" "\x23\x4f\x43\xbe\x2a\xe0\xb9\x3e\xd6\xd6\x88\x64\xe5\xb8\xe1\x1d\x0d" "\x59\x71\xd8\xb8\x95\x72\x51\x9b\xab\x43\x89\x4d\x1e\x91\x83\x75\x29" "\x09\x7b\x0c\xa6\xe3\xa1\xd2\x13\xe3\xcf\xda\xc5\xfb\x80\xc8\x89\x81" "\xc4\x6c\xac\xbe\x53\xf6\x59\xa9\xe3\x07\x14\x72\x9c\xcb\xcb\xff\x08" "\xe7\x26\xd5\x0e\xf0\xb7\x99\xec\x8c\x38\x35\x7a\x26\x07\x5a\x3d\x40" "\x11\x55\x6b\xe9\x6e\x47\x0c\xa9\xac\xc4\xe0\x2d\x76\x00\x4b\x60\x7c" "\xea\x55\xad\x49\x62\xab\xae\x96\x07\x77\xa6\x25\xaa\x7a\xf9\xab\x9d" "\x89\x55\xf1\x78\x94\xdd\xd1\xed\x99\xad\x3f\xeb\x84\x4d\xb2\xec\x63" "\x71\x49\xba\x57\xf9\xd7\x36\x64\xca\x7a\x0f\x88\x00\xaf\xd2\x17\x3d" "\xf3\x49\x0b\xaf\xe7\x17\x0c\xe2\x4b\x18\x10\xa8\x2c\x5b\x13\x2b\xf0" "\xeb\xf4\xcf\xba\x6c\x8a\x1d\xd6\xd7\x9a\xcb\xee\x91\x9d\x9a\xd2\x7a" "\x53\xc0\xfe\x68\xe9\x28\xbf\xa4\xfb\xb3\x8e\xb8\xeb\x89\x60\xbc\xf6" "\x70\xcd\x33\xfd\x14\x4a\xe8\xdf\x9e\x17\x2c\x73\xd0\x35\x49\x3a\x6f" "\xc2\xb0\x19\xee\x2a\x7b\x0e\xbb\x7d\x05\x77\xae\xd6\x17\x9c\xe7\x2a" "\x3b\x51\x3c\xb2\x1a\xa1\x60\x30\xc7\xde\xe0\x79\xa4\xf7\x71\x8f\xff" "\x12\x6d\x07\x12\x43\xc7\x29\x9f\x43\x98\x8f\x56\xe7\xb3\x69\x6f\x56" "\x2d\x95\x7d\xcc\xac\xc1\xd7\x41\x43\x43\x01\xbf\x8f\xfe\xba\xaf\xbc" "\x64\x1a\xaf\x99\x3f\x55\x03\x6a\x7c\x63\x72\x70\xf7\x74\x3a\xb5\x69" "\x59\x1a\x11\x05\xa1\x7f\x7b\x67\x10\x19\x44\x9b\xe1\x71\x30\xcc\xd8" "\x04\xc4\xa2\xce\x20\xd5\x2c\x8d\x9c\xcb\x03\x66\x33\x8e\xb3\x44\x6f" "\x7e\x25\x98\x21\xdc\xc2\x86\xc6\x40\x5b\xfb\xaf\x1b\xba\x4b\xde\xfd" "\x8e\x29\x99\x21\x1d\x59\xad\x94\xbd\x21\x38\x90\x23\x4f\x84\x33\x1b" "\xf6\xec\xfc\x91\xf1\x49\x09\x55\xaa\x24\xf7\x8c\xa5\x10\x5d\xde\x2c" "\x0f\x29\x76\x63\xff\x36\x4b\x23\x5a\xbd\x64\xd0\xf6\xca\xf2\x70\x43" "\xdf\xd6\x3a\x29\x1d\x8b\x69\x80\x50\x2c\xf8\xd7\xf0\xcb\xce\x31\x2f" "\x39\x4e\x1e\x16\x79\x9b\x50\x2e\xac\x92\x0e\xc0\x07\x4f\x15\x84\x5c" "\xcf\xdb\x04\xb1\x0f\x99\xd7\x10\xcc\x55\x15\xdb\xb5\xef\xd9\x3a\xe7" "\x9e\x30\xba\xad\x78\x95\x72\x5c\x80\x7c\x36\x50\x8d\x7d\x4d\x9a\x6e" "\x68\x7c\x9b\x69\xfe\x15\xc8\x90\xb5\x68\x21\x9f\x14\xad\xbf\xe7\xfd" "\xe1\x42\x46\x91\xc5\x7c\x07\xcb\x66\xfc\xde\xaa\x9b\x35\x59\x8b\x41" "\x1a\x82\xcc\xaf\x47\xc5\x7a\x27\xca\x2d\x0e\x23\x53\x58\x8a\xac\x4a" "\x90\x99\x16\x6b\xd7\x62\xb6\x44\x74\xc6\x89\xd5\xc1\xb9\x48\x90\x41" "\x85\x84\x2b\xc8\x71\x6c\x50\xcf\x78\xa8\x76\xad\x7a\x4d\x09\xd7\xfb" "\xc7\xe0\x03\x75\xec\xf1\x1a\xd9\xd8\x30\x53\x4c\x8b\xfe\x2d\x7e\x17" "\xa7\x66\x0a\xc8\xa2\x97\xa6\xb7\xa2\x51\x32\x00\x4f\xc6\xc1\x7c\xe4" "\x06\x53\x6a\xcc\xf9\xee\x46\x17\xef\x4e\x5a\x72\x8a\x83\xd2\x72\x6f" "\x4f\x37\x63\x6f\xf7\x65\x27\x6c\x7f\x22\x79\x09\x08\x8c\x92\x03\x73" "\x6f\xdf\xc4\x45\x65\xa6\xa7\xcc\x25\x41\x97\x61\x99\x9f\x5b\x2b\x17" "\xbc\xc9\xff\xdf\x60\xcc\x0e\x05\xd6\x72\xae\x78\x51\x11\xbc\x1b\x31" "\x23\x68\xd3\x59\x6a\x14\xa9\xe7\xef\x26\xbd\x6c\xb7\x1d\xa0\x01\x61" "\xfb\x79\xc2\xc7\x62\x52\x06\x8f\x87\xaa\x69\x39\xe8\x46\x37\xb7\xa0" "\x77\x45\xf7\xca\xda\x5a\xc8\xc6\x2e\xf7\xf3\x8a\xaa\x5c\xfc\x5e\xe6" "\x07\x7e\x71\x0b\x29\xb6\xbe\x81\x8a\xc6\x00\xb3\x65\x0b\xe0\x51\xcf" "\xc5\x6f\x1e\x54\x5b\xb8\x80\xf6\xaa\x33\x68\x99\xc1\xd6\x38\xa4\x94" "\x45\x9e\xe0\x66\xe3\x0e\x9e\xc9\x40\x88\x7f\x5f\x92\x5d\xb8\x6e\xcf" "\x14\xed\x24\x92\xa9\xd5\x25\x34\x26\x7a\x28\xce\x95\x8f\x05\x14\xf7" "\xcc\x38\x59\xa3\x49\x12\xb4\x0b\xc4\x64\xff\x88\x76\x13\x57\xf3\x95" "\x72\x4f\x3e\x11\x1e\x65\x1a\xa2\xcd\xd4\x82\x80\x46\x8f\xec\x45\xa4" "\x8c\x6e\x63\xca\xe0\x9d\xe0\x20\x05\xc2\xe2\xe5\x70\x2a\x67\xf8\x02" "\x77\xd6\x9b\x80\x7a\x64\x9f\xf1\xf0\x74\x18\x7d\x88\xdd\x3a\xdf\x98" "\xb8\x08\x96\xd1\xa6\x82\x10\x4a\xae\x13\xe1\x31\x12\xbc\xce\xd4\xc0" "\xac\x2f\xf3\xae\x65\x88\x45\x2e\xca\x59\xbe\xb1\x9f\x1f\x00\x9f\x1e" "\x30\x27\x79\xa7\xb2\xf8\x24\xb7\x6a\x3a\xd2\x35\x6d\x23\x3b\x2c\x43" "\xc9\x72\x49\x41\xa8\xd8\x17\x9e\x41\x60\xf7\x01\xba\xb4\xb0\x60\xcd" "\x96\x37\x31\x10\xf9\xa4\x68\xf0\x76\x06\x3e\x86\x7d\x15\xb4\x8b\x3c" "\x07\x4f\xf5\x70\x25\x6e\x7b\xdc\x76\xa2\x6a\x2c\xeb\xdd\xb5\xc1\xde" "\x23\x82\x40\x03\x22\x5d\x02\x21\x4a\xd2\x88\x67\xc7\x12\xe0\x58\xd5" "\xfa\x25\xda\xb5\xec\x13\xea\xec\x15\xb3\x2b\x0e\x81\x97\x59\x8d\x50" "\x30\x11\xd3\x1c\x30\x20\x43\x64\x92\xe7\xa4\x2d\xc2\x8e\x81\x44\x51" "\x06\x11\x93\x79\x12\xbf\x88\x77\xc1\x9d\xa3\xac\x79\x97\x11\x62\xc2" "\x1f\xaf\x1e\x31\x93\xdb\xe5\x8f\x94\x0f\xba\xaf\x98\xe1\x7b\xce\xe8" "\x6a\x65\x1c\xd1\x24\xb8\x95\x2d\x84\x3b\xff\x84\x9d\x70\x93\xb6\x24" "\x91\xa3\x48\x25\xf8\x5f\xee\x69\xfb\x9d\x9f\xe7\x27\xa6\xce\x04\x6b" "\x2a\xe5\xac\xbf\x8d\x54\xb5\xa8\x20\x1a\x6f\xf0\xe8\xc2\x2a\x55\x44" "\xba\x54\xff\x19\x32\x02\x3d\xf4\xcd\xc4\xaa\xdf\xc7\xb3\x71\xf8\xbd" "\x7f\x7e\xa1\x02\x7d\x58\x0e\x3a\x27\x4a\xff\x5a\x98\x0a\xa9\xe9\x26" "\x5d\x33\x2f\x61\xff\xb4\xa6\x64\xa3\x39\xc0\x2b\xc1\xac\xd3\x39\xab" "\x22\x62\x74\x68\x74\xee\x5e\x07\xe7\x12\xe9\xff\x37\x23\x4a\xc9\x10" "\x8b\x80\xf6\xf2\x4f\x28\xa6\x9f\x04\x74\x12\xcd\xfd\x4d\x27\xb0\x18" "\x34\xe3\x4c\x22\x72\xfb\x24\xa2\x9c\x6e\xde\x0e\xa8\x21\xbe\x78\x02" "\x65\x3c\xef\xd3\x62\x2b\xa5\xb8\xb6\x38\x82\x23\x8c\xd1\x80\x81\x85" "\x2b\x4e\x67\xe5\xbe\x7f\xe0\x05\x5f\x49\x15\xd9\x7c\x23\x41\x24\xb9" "\x43\x4b\xee\xc0\x26\x9c\x66\x0b\xad\xdd\xd6\xfc\xd6\xa6\xd6\x25\xbe" "\x7c\xa1\xf1\x00\xf7\x84\x74\x84\x8b\x71\xde\x42\xcb\x4b\x97\x39\xee" "\x1d\x3e\x16\xa9\x8f\xde\x99\x94\x76\x4f\x02\xd6\x51\x2b\x62\xdb\xae" "\x65\xaf\xf8\x82\x9f\xcf\x2c\x40\x94\x62\x9e\x05\xa8\xf3\x5a\xd9\xc5" "\x15\x26\x3e\xa5\xdc\xfd\x14\xce\xd6\xcb\xc6\x5b\x26\xde\xd9\x46\xa9" "\x42\x33\x2b\x4b\xc8\x18\x43\x40\x8a\x80\x9a\xe6\x8c\x1b\xe2\x9f\xe0" "\xdb\x50\x25\xd3\xec\xf9\x12\x53\x74\xdb\xef\x6e\xad\x96\xc4\x22\x60" "\x23\xab\xdb\x56\xf2\xf6\xee\x77\x7f\x59\xbf\x03\x36\x87\xa2\x91\x39" "\x53\x58\x1d\x40\xa1\xb2\x61\xd0\x52\x85\x33\x79\xf4\xb5\xd8\x03\xa2" "\x93\xa4\xb3\xc7\x7c\xa5\x27\xa4\xca\x2c\x5f\xf7\x26\xd0\x63\x4d\x33" "\x39\x11\x3f\xf4\xc5\xff\x3d\x1c\x77\xfa\x2c\x56\x9e\x11\xeb\xe5\x57" "\x10\x3d\x05\x41\x3c\xf7\x6e\xa4\x97\xd3\x58\x8e\x8b\xa6\x87\x14\xa9" "\xae\x6b\xa0\xfc\xb5\x32\x0e\x16\xc9\x6b\x6c\x14\x44\xd3\xe8\xa7\x2b" "\x7c\xd3\xd5\x3d\x96\x8a\x79\xac\x7f\xd7\x4d\x76\xc6\xb1\xb8\x90\x1f" "\x85\x75\x87\x9d\xe7\x43\x5d\xb8\x74\x84\x0c\x42\xcf\xbc\xc5\x2e\xe6" "\x0e\x70\x7d\x31\x3e\x7c\x31\x80\x24\x60\xe8\x34\x09\xa3\x9c\xe8\xd7" "\xb2\x67\x02\x58\xfa\xf9\xd1\xd3\x2e\xe9\x09\x19\xc5\x48\xf0\x18\xce" "\x96\x93\x3f\x33\x60\xee\x85\x2f\x38\x3c\xd2\xab\xd9\x03\x7c\xa7\x33" "\x93\x86\x2e\x8c\xb0\xce\x64\x16\xaa\x2b\xda\x3f\xde\xa0\x21\xd2\x00" "\x1d\xe0\x8b\x6f\x25\x09\xfc\x17\x1e\x4a\x24\x7c\x29\x2a\x33\x5e\xfc" "\x22\x17\x47\x89\x78\x64\x64\xdb\xe0\xb6\x24\x9c\x55\x4c\xb9\x8e\x33" "\xbc\x2c\x1f\x41\xfe\xf3\x27\xc4\xd8\xe4\x0e\xea\x16\x9d\xef\xfe\xcf" "\x00\x1e\xb4\xb7\xba\x91\x26\xd5\xe2\xf6\x1f\x40\x74\xbe\x2a\x3d\x34" "\x1f\xac\x22\x9d\xf3\x96\xa3\x68\x0f\x91\xbb\x81\x23\xe6\xa5\xd3\x24" "\x14\x38\xe7\xb2\x4f\x5c\x61\xf9\xb1\xce\x54\x1b\xe3\x5a\xd1\xa9\x28" "\x5a\x29\xd2\x37\x02\x7c\x29\xc5\x14\x5d\xe2\x84\x89\xca\x19\x89\x46" "\x92\x27\x7b\x3a\x91\x64\xe7\x64\xc2\x46\xff\x97\x81\x83\xbe\xaa\x73" "\xac\xc6\xe5\x25\x5c\xac\xe8\x57\x67\xc1\x29\x9d\x48\xe0\xa5\xa0\x47" "\xac\xeb\x60\x6e\xc0\x5f\x12\xd6\xc9\x3b\x64\x2a\x94\xc3\x74\xeb\x25" "\x84\x8b\x0e\xfc\x87\x96\xe4\x11\xb7\x29\xc1\x74\xd4\xf9\xe1\x19\x90" "\xd3\x2b\xda\x2b\xd6\xa8\x6e\x1f\x65\x48\xbe\xb8\x65\x32\x30\x2d\xa3" "\xd5\x6d\x78\x64\x44\x28\x7c\x68\xa3\x6e\x29\xf8\xbf\x8a\x9a\x8f\x38" "\x00\x58\x07\x06\xcc\x0c\xc6\xcf\x21\x55\x9a\x21\x4d\xa9\x94\x12\x8a" "\xca\xba\x36\xdc\xa1\x3f\xfc\x2e\x50\xf7\xb4\xd5\x10\x15\xf2\x4f\x0a" "\x5f\x38\x3e\xe5\xc5\x32\xf1\xf1\xe8\x2a\xac\x60\x6a\x2d\x08\x06\x90" "\x80\xfe\xe5\xeb\xb9\x3b\xe3\x79\x3a\x60\x6f\xdd\xc0\x74\x18\xf3\x85" "\x98\x88\x22\xf5\x66\x4e\x61\x3a\x82\xb7\xdc\xe2\x18\xf7\x3d\xba\x86" "\xb7\x30\xb0\xab\xb3\xdd\x36\xf3\x0f\x6f\x1d\xfc\x08\x54\xb3\x98\x8e" "\xad\x9a\xb2\x2a\x06\xbd\x68\x77\x01\x44\xd1\xce\xa6\x24\xb7\xad\xdc" "\x03\x4c\xed\xb7\x00\x92\x9c\x4b\x5b\x6a\x6a\x80\x97\x4a\x24\x4b\xaf" "\x21\x29\x06\xbe\x7e\x16\xb7\x88\xd8\x8a\x15\xfd\x5d\x17\x85\x1c\x72" "\x40\x9d\x6a\x5c\xb8\x9c\x62\xb5\xe0\xf7\xfc\xc3\x5f\xd9\xef\xec\x75" "\x3f\xa5\x7b\xf0\x16\x80\xd3\x94\xfb\x86\x68\x5f\xbb\x2c\x5f\x14\x9d" "\x69\x9a\x3e\x65\x7e\x1c\xb0\x1f\xde\x09\x53\x62\xf0\xa1\xfe\xe6\x42" "\xf9\x0e\xbc\xb2\xf4\xf3\xd9\x07\x8b\xa1\x3e\x06\xbd\x39\x77\x3b\x68" "\xca\xab\x2f\xd8\x28\xe7\x8d\x0b\xe2\x1b\x76\xf4\xad\xe6\x38\xd5\xde" "\x8f\x11\x48\x51\x25\x03\xfe\x0c\x30\x50\x2d\x16\xc8\xa3\x37\x71\x6a" "\x9a\x44\x12\x0f\x38\x9d\xb6\x08\x0e\x2a\x83\xd3\xa7\x2b\x2b\x96\x44" "\x6a\x0e\x6e\xd1\x72\x39\x21\x0b\xa2\x0a\xfd\xc5\x9e\x21\x7e\xd2\xa9" "\x15\x43\x67\xb6\xb3\xef\xb5\xc3\xdf\x08\x88\xd4\x5b\x86\x9d\x90\x37" "\x4d\xbc\xf1\xb3\x69\xd1\x75\xc1\xad\xad\x59\x93\x6f\xdb\xaa\x3a\x45" "\x0d\xb1\x7e\x0a\x4b\xa1\x6f\xed\x1c\xd7\x49\x46\x90\x28\x76\x71\xee" "\x7e\x6a\x5c\x51\xdf\x6f\x68\x26\x83\x72\xcf\xab\x78\xac\x36\x71\x1a" "\x74\x3c\x60\xe9\xe7\x85\x88\x0f\xf6\x8c\x17\x51\x8f\x8e\x83\x40\x48" "\x5c\x12\xb1\x5d\x55\xe1\xfc\x46\x18\x22\x16\xd2\xec\x86\xb0\x27\xd3" "\xe6\x00\x64\x0b\x02\x24\x0f\xc5\x75\x8e\xc9\x66\xa3\xae\x92\xae\xc3" "\x14\x85\x05\xe7\x75\xa3\xb2\x0d\xd4\x91\x19\x48\xba\x8a\x36\xc7\x1a" "\x65\x68\x62\x42\x41\xc6\x87\x78\x53\xd0\xf6\xcc\xc3\x7d\x8e\xa7\xa6" "\x07\x66\x7b\x5e\xe7\x35\xc1\x48\x53\x26\xc4\x9c\x7f\x67\x4f\xfd\x08" "\x34\x0d\x02\x4e\xf6\x3a\x9e\xd4\x05\x84\xdd\x77\x77\x29\x89\xb0\x35" "\x9e\x5b\x08\x6d\x81\x49\x0e\xbd\x61\x5d\x4a\x67\x60\xe7\x0b\xaf\x3e" "\xe4\xf4\x71\x44\x35\x0b\x6b\x17\xd5\xfb\xa4\xbc\x87\xd5\x61\x73\x66" "\x43\x76\x76\x0a\x97\x25\x9a\x80\x90\xee\xfb\xa0\xc2\x8f\x88\x5c\xce" "\x16\x83\x9b\x79\xd1\x62\x3a\xff\xe8\xb4\xcb\xcb\x7f\x93\x8c\x99\x57" "\xa3\x7c\xe5\x38\x0c\xd7\x63\xb5\xcf\x16\xf5\x23\x4a\x29\x2f\x7a\x5a" "\x3f\xfa\x55\x1e\xdf\x74\x64\x8a\xbd\xc0\x22\x18\xa8\x86\x60\xc8\x67" "\xdf\xbc\xdb\x56\xfb\x28\x89\xdb\xf4\xdd\xda\xfc\x68\xdc\x53\x0f\x7e" "\x6e\x8a\x1a\x22\x79\x74\x9a\x2e\x77\xb7\x66\x81\x46\xe8\x2f\x7d\x3d" "\xfb\x45\x39\x7d\xa7\x79\x91\xb6\xd0\x18\x85\x5a\x75\x33\xe3\x12\x12" "\x5a\x71\x6b\xb0\xe1\x9c\x5b\x99\x25\xe9\xdc\x21\xb0\xc8\xcc\x68\x05" "\x7b\x4e\x03\x99\x88\x02\x42\x67\x74\x20\x28\xa7\x52\xea\x6c\x9b\xe0" "\x0e\xc9\x79\x9f\x6c\x71\x02\xcf\x39\x8e\x82\x4e\xfe\x2c\xd1\x87\x14" "\x12\x76\xc0\x88\x9e\x51\x85\xcb\x04\x12\x4b\xa0\x00\xeb\x3a\xe2\x7a" "\xf7\x9c\x5b\x71\xb1\x5f\xc2\x90\xcd\x06\x68\x84\x7a\x5e\x30\xb9\xad" "\x63\x6f\xde\x7c\xa2\xb8\x04\x67\x6c\x0a\xd3\xa0\xa0\xcb\x54\x07\xfd" "\x9b\xd0\x58\x5d\xb8\x60\xbb\x35\x1e\x2a\xcf\x8d\x99\xa0\x30\x47\x2f" "\x4c\x56\xe3\xe0\xf8\x96\x47\x6c\xd4\xe6\x79\xbc\xa8\xfe\x51\x68\x67" "\xdb\x46\xaa\x51\x3b\x32\xce\xcb\xf0\xc5\xe7\x1a\xfb\x2d\x51\x52\x89" "\xe7\x16\x0b\x71\x91\x00\x85\x55\xac\xef\x03\x99\x0a\x5d\xcd\xee\xdb" "\xea\xc7\xa2\x7a\x83\x24\xc4\x2b\xa0\xe7\x9b\x0d\xc5\x8d\x4f\x3f\x8e" "\x4b\x7d\x83\x70\xda\x4b\xdd\x20\xee\x47\x52\x5d\xee\xf5\x59\x08\xa3" "\x41\xcd\x05\x37\x39\x56\x69\x11\x70\xf6\x96\x00\xa7\xb9\xcf\xb2\xee" "\x6a\xde\xc9\x0c\xa7\x29\x3e\x52\x7e\x2b\x4f\x44\x97\xac\xee\x63\x48" "\x1c\x24\x92\x29\x4c\xfc\x48\x41\x5a\xa2\x4d\xab\xec\x55\x57\x00\xf0" "\x76\x1c\x51\xdb\x87\xa5\x3f\x2f\xd7\x4e\xea\x2e\x6f\xb9\x9b\x99\xc6" "\x02\x0f\x34\x4a\xb9\x69\x70\xb6\x20\xc3\x79\x13\x6e\x6d\xb9\x80\xd2" "\xd6\xf1\x0f\xb0\x46\xe1\x95\xb1\x42\x1e\x5b\x6e\xb5\x04\x69\x76\xe7" "\x81\x7e\xb6\x96\x76\xb5\xb8\x92\xf7\xaf\xff\x70\xcd\x69\x89\x23\x67" "\x84\x7a\x9d\x43\xfb\x6d\xfc\xfe\x78\x3b\x83\x66\x14\x3d\x4b\x24\xca" "\x00\x80\xac\x52\xfe\xc9\xb0\x52\x1e\x50\x46\xb1\xe0\x8c\x0f\x8e\x0e" "\x8f\x60\xb5\xf7\x9f\xb9\x8b\xf1\xee\x1c\x31\xa7\x86\xa1\x2f\x60\x09" "\x22\xab\x95\xce\xec\x82\xc7\x5e\xe3\xb0\xd8\x93\xa2\x1e\xa6\x17\xbc" "\xd2\xff\x63\xb8\x71\x11\xdf\x01\xf6\x0b\xae\x94\x22\x10\x60\x93\xa9" "\x2d\x63\xbf\xfd\x22\x31\xfe\x92\x48\x7e\x6c\x8e\x21\x62\xa8\xaf\x39" "\xbf\xa8\x5e\x5e\x98\x56\x9c\x04\xbd\xfc\xec\x0c\xce\x17\x5f\x1b\xe4" "\x15\x88\x9b\xa8\xfe\x61\x9c\x3b\x54\x29\x97\xd1\xac\x20\x96\xbd\xc0" "\xd7\x5a\x3a\xe5\xce\x25\xb2\x3e\x07\xfa\xf6\x90\x42\xe2\x66\x9d\x3e" "\xaf\xad\xe4\xdb\x32\xde\x12\xf0\xe7\xd2\x69\xfc\x44\x1e\x2f\xd9\x4a" "\x14\x04\x5e\x59\xfb\xa3\xc9\x00\xe1\x07\x88\x1d\x5b\x1a\x48\x67\x34" "\xaa\x57\x24\x7b\xde\x18\xc8\xc7\xd4\xe6\x3c\xa4\x4f\x69\x3b\x90\x0c" "\xc7\xda\xd2\x21\xf1\x7d\xc8\x89\x59\x07\xc9\x44\x6e\x6a\x0e\xb9\x78" "\x3a\x66\x99\xf1\x0b\xdc\x81\x19\x3d\x81\x8b\xe0\xf3\x2a\x49\x10\x7b" "\xfa\x60\xcc\x03\x8e\x21\xde\xfe\x8d\x96\x2e\xd9\xdc\x3f\x1e\x8b\xef" "\x5c\x1b\xad\x2d\x4d\xdd\x36\xff\x7b\x27\x2d\x3d\x6b\x12\xa2\x06\xca" "\xe0\x15\x30\x6d\x5b\x80\xc7\x72\x32\x5b\x4e\x96\xc0\x86\xa8\xfc\x05" "\x66\x5b\x1a\xd1\x3b\xda\xea\x60\x1b\xeb\xb9\x4b\x2d\x2e\x90\xa8\x16" "\x11\xd1\xc7\x29\x18\xc7\x61\xdd\xdb\x5a\xb7\x11\xb6\x4f\x1a\xcf\xcc" "\x7b\x24\x7a\xcf\x5c\x6e\xd0\xc5\x8b\xb5\x38\xed\xa6\x18\xde\x2e\xb5" "\x0e\x57\xcb\x67\xca\xbd\xb2\xdf\xec\x31\xed\x29\x8c\xbf\x6c\xd2\x44" "\x08\xf0\xf3\x8d\x04\x8b\xb6\x78\xf0\x79\x37\x1a\xf1\x90\x40\x25\x52" "\xf2\xc3\x0f\xca\x69\x6b\xf6\x3d\xd0\x12\x03\xea\xa8\x9e\x70\xbd\xd4" "\x45\xd0\xbd\xb9\xd2\xce\xee\x35\xdc\x85\x70\xc6\x1d\x02\x04\x76\xb5" "\x57\x1e\xc6\x0e\xcc\x47\xe1\x5a\x3c\x58\x62\x5e\x6b\x88\x8d\xb8\xd9" "\x70\x7d\x78\xd5\xa0\x19\xf9\x0e\x1d\x38\x24\xf2\xe3\x5a\x2a\xa1\x6b" "\x4a\x99\x5a\x0b\x49\xff\x3c\xd4\x5d\xaf\xf5\x64\x07\x22\xbd\xc2\xeb" "\x59\x6f\x83\xc4\x63\x79\x25\x8d\x55\x24\x25\xca\xef\xcc\xed\xac\x6a" "\x57\xa4\xfb\xc1\x68\x44\xda\xb6\x7f\xb2\x10\x6d\x86\x3b\x6f\x45\xf3" "\xcf\xa3\x78\x0a\xe7\xa2\xdc\x29\xd2\x0c\x34\x7a\x4b\xd1\xf3\x55\xb7" "\xa4\x39\xb2\x4b\x2f\xde\x65\x75\xaa\x7b\xf9\x76\xf6\x01\xd2\x48\xd8" "\xec\xa4\x5d\x07\xd0\x9b\x88\x22\x55\xd3\x27\x1d\xb4\x88\x64\x7d\x8e" "\x70\x20\x44\x08\xbc\x45\xaf\x37\x2b\xcd\xf4\x14\x99\xd0\xba\xf3\xb6" "\x6f\xd7\x11\x3a\x94\xb5\xed\x59\xcd\xd5\x6b\x8b\x22\x1f\x3e\x41\xef" "\xf8\xa6\x82\x0a\x48\x73\x35\x17\xe2\x45\xd1\x9f\x93\x34\x06\xb1\x45" "\x81\x33\xb7\x72\x7e\x5c\xdf\x9e\x2e\x14\xd9\x9f\x71\x21\xb5\x22\x29" "\x23\x0b\x56\x43\xa3\x4e\x23\xc6\x1d\x38\x55\xb7\x29\x0d\x6b\xbe\xd0" "\x0d\xb8\x43\x12\xde\x4a\x3c\x96\x05\x00\x07\x46\xaa\x52\x46\x38\xc4" "\x0c\x7d\xb5\xfd\xe6\x9a\x13\x7d\xde\x00\x73\x0c\x0c\x53\x34\x3e\xaa" "\x56\x0c\x2f\xa1\x69\xab\x61\x91\x54\x82\x9c\x2d\x99\x1d\x66\xbc\xe8" "\xc7\x36\x1f\xbc\x19\x7a\xdc\x04\x6b\x9c\xeb\x0c\x8b\xce\x48\x8b\xda" "\x0a\x6f\x10\xc1\x53\x0d\xa8\x1b\x71\xc6\xe7\x5e\xb1\x8c\xb8\x88\x39" "\xc1\xe7\x9e\x18\x07\x35\x0c\x0a\xec\xbd\xca\xda\x79\x90\xbd\x65\xc0" "\x4c\xf5\xab\xd7\xed\xfa\x4a\xd2\xae\xec\xe1\xe6\xa1\x49\x06\xd2\x7a" "\x8f\x0a\xe2\x02\xbc\x5f\xd4\x1c\x99\xe6\x4f\x4e\x1c\x33\x1f\x4b\x77" "\xd1\xe1\x94\x5f\xdc\x50\x9e\x21\x47\x02\xe6\x7e\x8e\x4f\x2f\x4d\x51" "\x5a\x6e\x39\x94\x52\xb8\xfb\xc1\x90\xf3\xe3\x2d\x21\x4d\x25\x4e\x26" "\xf0\xb5\x6c\x32\xee\x0c\x3f\xd7\x8b\x90\x63\x34\xe4\x8e\x5a\x85\x6f" "\x0c\x38\xa9\x9e\x10\x86\x8a\x1d\xa1\x39\x86\x6d\x4f\xff\x6a\xac\xff" "\x92\xf0\xf0\x4e\xbc\x20\x96\xe0\x84\x17\xe5\xe7\x86\x83\xec\x42\xcf" "\x10\xd6\xa4\x0f\xa0\x77\x4d\x12\x57\x01\xd0\xc1\xfb\xae\xe1\x33\xfe" "\x23\xb8\x33\x33\x99\xab\x9a\x4b\xb1\xd1\x1b\xa4\x80\x86\x51\x23\x7d" "\xa9\xeb\x7d\x88\x9e\xf1\xe4\xe3\x4d\xc5\x34\x5b\x1e\x85\x27\x3d\xfa" "\xaa\xf8\x19\x5e\xfe\x97\x96\x6a\xc5\x95\xa9\x1d\x58\x7b\x1a\x70\x50" "\x8c\x6d\x5b\x91\x58\x9e\xac\xc9\xcd\xf9\xcf\x40\x88\x30\xce\x03\x9b" "\x19\x27\xd2\xba\x57\xa2\x98\x08\xaa\x32\xb1\x52\x3b\xf0\xe8\xce\x87" "\xa5\x79\x16\x0c\xee\x07\xa3\x68\xc4\xd7\x6e\x30\x14\x7c\xc1\xd5\x8f" "\x66\xc1\xe8\x00\x3a\x8b\x28\x9a\xab\xb1\xeb\x39\x50\x75\x9b\x83\xf1" "\xa5\xb8\x24\x6e\x2a\x0b\x20\xb4\xa9\x5c\x7b\x9f\x1f\x4a\x4d\x77\x37" "\x8e\x3b\x2a\x88\x5d\x5e\xc1\x68\xd4\xb2\x62\x96\x3d\xbf\x10\x15\x9e" "\xc2\x71\x64\x1f\x5b\x1e\xbd\x3f\xa5\x26\x9e\x28\xbf\x9a\xac\xf5\xec" "\x91\xcb\xf0\xb1\x97\x01\x43\x82\x7b\x71\xa4\x51\xc9\x27\xaa\x3a\x96" "\x51\x97\x43\x97\x43\x48\x1d\x03\xe3\x4d\xb5\xcf\x87\x90\xd0\xea\xb1" "\x9f\x16\x42\xc2\x56\x14\xd6\x2f\xa3\x79\x3c\xce\x8b\x89\x89\x1c\xee" "\xb3\xe7\xef\x28\x50\x20\xf3\x10\x59\x11\x7e\x7a\x3c\xf2\x77\x74\x93" "\xa1\x6f\x1a\xc3\x5a\xf0\x9a\xe1\xb1\x78\x6c\x9d\x8c\xbf\x35\x37\x72" "\xad\x76\x4c\x4f\x8b\x9a\xed\x43\x13\x29\x49\xa8\xae\xa0\x0c\xe9\x03" "\x99\xab\xdb\x88\x06\xc0\xc9\x4e\xd3\x15\x4f\xa9\x14\xa0\xcb\x5a\xdf" "\xc3\x59\x22\xa8\x55\x93\x05\x7d\xb4\x07\xb8\xeb\xca\xf5\x96\x62\xd2" "\xb0\x97\x51\xe7\x34\x6a\x23\xb9\x89\x03\xd6\x98\x16\xfe\xfe\x24\xb9" "\xc3\xc2\x84\x3d\xd6\x29\x3e\x3f\xfe\xd3\xaa\x15\xc2\xbb\xe8\x40\x82" "\xf7\xf8\xc5\x01\xcf\x30\x41\x09\x29\x60\x54\xda\x75\x46\x47\x2b\x71" "\xd5\xc8\x40\x33\x44\x44\xbe\xcd\x76\x2f\x96\x3e\x3e\xcd\xbf\xd4\xb3" "\xda\xa3\x57\xee\x01\x41\xd2\xd2\xec\xf2\xe9\xb0\x45\xce\x2a\x98\x6a" "\x8c\xb8\x36\x03\x6f\x9d\x18\x2c\x08\xde\x9a\x25\xf5\x2c\x7a\xee\xe1" "\xe2\xf0\xcc\x7e\x0a\xf9\x8b\x5a\x85\x3b\x6f\x4a\x5e\x73\xde\xcd\x2e" "\x18\x9e\x76\xcf\xbb\x47\x2b\x49\x0e\xee\xb2\x79\x33\x2f\xaa\x6d\x49" "\xfa\x39\xe6\x61\x78\x7e\x5f\xf4\x0e\x34\xfa\xde\x13\xb0\xc5\xc2\x41" "\xcc\x5d\xa2\x2f\x55\x0e\x22\x97\x93\xa1\xb2\x76\x1b\x7c\x3b\xa8\xd8" "\xac\xea\xe8\xf1\xae\x37\xfa\x77\x79\xaa\x4b\xb7\x5d\x95\x6c\x8c\xd8" "\x4e\x87\x04\x89\x0e\xa0\x6e\x0f\x43\x78\x5c\xf6\x4c\x1e\x86\xd7\x50" "\xe4\x40\x90\x61\xc6\x40\x6e\x28\x31\xe0\xc5\xbe\xf8\xfa\xf9\xca\x8a" "\x2b\xa9\x37\xdc\x43\x6f\xc8\x0f\x91\x38\x78\x6f\x99\x63\x0c\x3e\xd8" "\x10\xd9\x83\x67\x19\x6a\xf5\xad\xdd\x2e\x9b\xbe\xb6\x4d\x49\x69\x6b" "\x65\x4e\x76\xc4\xe2\xdc\x01\x54\x7d\x1e\xb4\xb8\x7d\xbb\xe6\xe5\x1e" "\xf2\x46\x78\xd6\xfe\x19\x51\xa9\x3c\x75\x46\xa6\xa9\xed\xa3\x0e\xc5" "\x30\x10\xd4\xdb\x3e\xa6\xeb\x39\xee\xdf\x07\xa9\x38\x7a\xee\x1b\xd9" "\x2e\x92\x44\x76\xd2\xea\xd4\xc2\x90\x7a\x83\xd2\x84\x60\xc4\xcf\xca" "\x62\xba\xac\x8d\xf8\x79\x9f\xdc\x52\x9d\x6d\x90\xe9\x37\xe7\x1e\xd2" "\x4b\x70\x0d\x1c\x84\xaa\x5f\x2a\x4e\x06\x63\x3a\x3c\xb3\x29\xbb\xf0" "\x08\x39\x82\x04\xfc\x3e\xde\xa0\x5d\xd6\xe2\x36\x3f\x1c\xfe\x35\x46" "\x83\x7b\xf8\x76\xb1\xbc\x4c\xc7\x4b\x6d\x09\xf6\xf0\xd7\x8a\xeb\xbb" "\x35\xbc\x07\x3a\xa7\x2a\x78\x40\xc5\xcf\xc4\x41\xdf\xf4\x18\xab\xa7" "\xd4\x22\xd3\x92\x13\x64\xb8\xb0\x6a\xaa\xb7\xec\x84\xcc\xd5\x34\xed" "\x4c\xec\x12\x4c\x8b\xd0\xad\x42\xe1\xe0\x18\xea\x04\x56\xa7\xc3\x05" "\x36\x6e\x53\xbd\xa3\x11\xce\x37\x37\x8a\xbf\xe9\x79\xcf\xfa\x8b\xe8" "\xf7\x0c\xc7\xa9\xb0\xad\xc9\x2e\xa9\xef\x6e\x49\x88\x17\x0f\x38\x6e" "\x52\x27\xc2\x0b\xd3\x6a\x92\x38\x50\xdc\x1a\x5c\x0f\x8f\x3d\x90\x0d" "\xd2\x48\xac\x1b\x29\xf8\x3e\x4f\x9f\x62\x22\x2a\x0f\xaf\xa6\xcf\x94" "\xec\xe6\x09\x27\xe0\x56\x38\x80\x36\x67\x4a\x8a\x72\x9d\x3c\x72\xba" "\x8b\x59\x5e\xcf\xd6\x61\x57\x3e\x47\xf5\x92\x47\x59\xec\xd5\xaa\x40" "\x0f\x8d\x28\x2a\x4e\x6b\xb7\xde\x69\x72\xad\xb8\x54\x1f\x39\xf3\x9a" "\x5f\x1e\x54\xe7\x05\x87\x4f\x99\xda\xfa\xc9\x0b\x43\xe4\x55\x77\x22" "\x9a\xf7\xe0\x17\x8b\x21\x94\xe8\x62\x5b\xd5\x63\x96\xdd\x83\x6d\x25" "\x5e\x68\x38\x61\x95\xb1\x64\x6a\xd2\xe9\x00\x3f\x40\x81\x88\xcf\x52" "\x3c\x6e\x29\x97\x20\x5b\x43\x76\x29\x4d\x2b\x1c\xfd\xff\x38\x66\x91" "\x1a\x46\x79\x80\xd7\xa7\x53\xa0\x5b\x45\x16\x64\x2e\x38\xe1\x00\x04" "\x76\xc5\x85\x21\xd6\x06\x96\xc1\x0d\x92\x99\x7a\xcc\xb9\x17\xbd\x2f" "\xff\xf4\x8a\x7d\x6a\x3d\x69\xb7\x0d\x85\xa4\x78\x1b\x83\x4c\x06\xac" "\xe9\xa7\xf5\xc0\x84\xfd\x14\xfe\x7e\x95\x43\x21\x79\x3d\x02\xd8\xa3" "\x8b\x65\x18\x1a\x2a\x26\xf6\xa2\x6e\x5c\xcf\xf9\xcd\xf5\x22\x26\xce" "\xff\xc2\xc9\xd8\xf8\x13\x5c\x2c\xab\x15\x57\xee\x02\x17\x45\xca\x47" "\x30\x22\x55\xd5\x98\x62\x27\xfd\x5d\x54\x5d\xb7\x43\xc1\xfd\x70\xb1" "\xed\xb2\x1c\xd1\x40\xce\x49\xa6\xe8\x16\x9f\x5c\x28\x6c\x32\x6d\xe6" "\x1b\xf5\xdf\x40\xbd\xdc\x6f\x5a\xcc\xdb\x0a\xfa\xd6\xfa\x98\x97\x7e" "\xcc\xe6\x5e\x83\xd1\x2b\x0d\x96\x16\xa3\xf4\x23\xd8\xfa\xa1\xc5\x80" "\x5b\xfa\x68\xa2\x48\x33\x57\xa3\x5c\xce\xcc\xe3\x2c\x99\x7d\x37\x70" "\x81\x7e\xb6\x5a\x0b\x14\x29\xaf\xd8\x62\x3c\x37\xe3\xfd\x57\x15\x36" "\x0a\x28\x2d\xe5\x20\x7e\xf7\xe8\xfd\xe6\x39\xa1\x1b\x1c\x67\xbc\x90" "\x8c\x8f\xa5\xbe\x45\x27\xe0\x4a\x35\xac\xc5\x40\xc9\xe4\x54\x48\x4f" "\x01\x5f\xbd\xb6\x7f\x49\x69\xe1\x25\xb9\xcf\x1f\x32\x87\xf9\x5f\xcd" "\x6c\x8e\x18\x65\x0d\x66\x01\xec\x63\xcd\x5b\xf1\x4d\x0e\xd3\x14\xa4" "\x38\x05\x80\x68\x60\xdf\x50\x8c\x1a\x4a\x61\xf0\x93\xc0\x7c\x57\xd3" "\xee\x4a\x87\x15\x9c\x5a\xd9\x1a\x22\xd2\x62\x64\xdc\x87\x66\xa5\xb6" "\xa8\x9e\xd1\xdc\x1b\xd8\xce\x52\xee\xf5\xa3\x76\xc3\x8b\x90\x69\x8a" "\x56\x48\xd2\x44\xc7\xe8\x37\x51\xb1\xa8\x50\x34\x2a\xb2\xbf\x06\xd5" "\xe2\x69\x05\x76\xf0\x0c\x5d\x35\xbf\x6d\x91\x15\x7d\x48\xed\x99\xd8" "\x8b\x4b\x89\x14\x46\x01\x09\x4c\x04\x35\x01\x12\x23\xbf\x1f\x80\x71" "\x71\xa8\x62\x1b\xa5\x5c\xa3\x07\xf2\x75\xff\x04\x8b\x65\x95\x90\x83" "\x15\xa5\x63\x87\x7c\xf7\xba\xcd\x72\xbe\x4a\x8c\xa9\x14\x7e\x7e\xf9" "\xb6\xc8\x37\xc1\x20\xd6\xc6\x74\xb0\x73\x9f\x10\x31\x45\x4d\x55\x3b" "\x8f\x9b\x1e\x95\x0d\x90\x15\x86\x65\x11\x2e\xdc\x1a\xe4\xc2\x4b\x75" "\x2e\x24\x28\x12\x92\xb6\x7c\xdf\xba\x6b\x07\x3b\x35\x54\x5c\x89\x0b" "\xdb\x13\xb6\x06\x36\x26\x70\x39\x3f\x16\xf3\x49\x0a\x2c\xaa\x73\x3f" "\x2f\x48\x77\xcd\x47\x43\xa8\x06\x98\xa3\xb6\xce\x8d\x01\x26\x8e\x9d" "\xe6\xc5\x10\xdc\x26\x90\xb1\x53\xe7\x72\x1e\x80\xcc\x22\x43\x23\x1e" "\xb0\x59\x9d\x04\xab\x11\x91\xc3\xce\xfb\x63\x0f\x2e\xbf\xb0\x24\xad" "\x39\x23\x6c\x81\xd7\xba\x1f\x55\x0c\x9c\xc0\xf5\x51\x6c\x62\xbb\x19" "\x2b\x87\x9f\x5a\x63\x29\xea\x93\x70\x70\xc2\x83\x8b\x8a\xa1\x93\xe3" "\xf4\x82\x33\xe9\x71\x72\xbd\x6f\xf8\xa6\x3f\x87\xc3\x45\xbf\xc7\x3a" "\x68\x0d\x09\xa4\xc6\x1c\x17\x0e\xd3\x77\xc4\xf5\xb3\x32\xb5\x28\x8a" "\xe5\x99\xbe\xfb\x91\xf2\x05\x34\x50\xe9\x0e\xe2\x4e\x71\x2c\x40\xde" "\x7d\x36\x09\x61\xbb\x07\x71\x8b\x6d\xa0\x6d\x96\x8c\x42\xce\x0f\x70" "\xde\x21\x0d\x97\xa7\xe0\x7c\xd6\x06\x1c\xf3\x30\x11\x17\x49\x9c\xea" "\xaf\xda\x5f\x70\xa0\x49\xd4\xbe\x8a\x3f\x7b\xab\xed\x33\x5b\x55\x14" "\x81\x29\xa4\xe2\x1c\xbf\x19\x34\x0a\x75\x97\xed\x17\x0e\x2d\x99\xa8" "\x1f\xac\x6b\xa6\x1d\xf0\xd0\x94\x69\xd3\x9a\x6e\x10\xf3\x0e\x25\x4e" "\x4e\xeb\xc8\xc9\xab\x64\x7e\x17\x9e\xab\xdb\x75\x0c\x3d\x3a\x97\xe3" "\xd7\x55\x22\x86\x66\xef\x6d\xbf\xa1\xb8\xdc\xb8\x28\xe8\x70\x2d\xc9" "\xd9\x24\xb9\x9f\x1c\xd5\x82\x98\xa6\x72\x83\xd9\x65\xff\x0b\xea\x31" "\x1b\x9e\xa2\x43\xa9\x52\x3e\x7f\x01\x30\x3a\x34\x9b\x74\x60\xa9\x5f" "\xc8\xf4\x5b\x27\x7f\x1a\xb3\x8a\x4d\x88\x38\x9f\xdb\xc6\x8b\xe5\x6c" "\x52\x08\xfc\xfa\xd3\x77\xf4\xbd\x5c\x4b\x33\xd3\x90\xac\x75\x0a\x2f" "\xc1\x63\xd3\x45\xe4\x14\xf1\x03\x53\x64\xb2\xf7\xff\x79\x99\x47\xdb" "\x98\x23\x70\x9c\x41\x9c\xcb\x05\xb0\xd7\x2d\x52\x10\x1b\x30\x5f\xd9" "\x0a\xd5\xcd\x69\x96\x36\xb2\x87\x54\x4c\xee\x8e\x89\x22\x02\x75\x46" "\x84\xd1\xee\x2f\x5d\x95\x3b\x49\x96\xcd\xd6\x92\x62\x41\x4a\x1b\x35" "\xf1\xe7\x86\x22\xc9\xec\xe4\x52\x43\x23\xfd\xb3\x1a\x54\xf2\x94\xa0" "\xbd\xce\xc2\x24\xab\x1d\xf8\x04\x4b\xe9\xf8\x40\x84\xd6\xc9\xe3\xab" "\xcb\xb8\x3c\x30\x69\x0a\x44\x58\x5d\x6c\xc1\xa9\xd9\xb0\xe9\x26\xb8" "\xc2\x7d\x2c\x4d\x66\x44\xc0\x97\x4a\x1b\xa8\x06\x02\x36\x05\x9f\x1d" "\xfd\xb8\x7a\x55\x8a\x6d\xf3\x44\xe6\xca\x7b\x6d\xcf\x80\x13\xa4\x8a" "\xb5\x7d\xe2\x2a\x13\xaf\x06\x4d\xdd\x57\x6d\x72\xf9\x5c\x7d\x23\x6c" "\x50\x58\x38\xcc\xff\xac\x77\xa2\xd6\xbd\x2b\x4d\xe7\xb5\x9f\x55\x3d" "\x3f\x7b\x5c\x15\xfb\x65\xf4\xf9\x25\x37\x48\x60\xcd\xce\x4b\xf8\xaa" "\xc1\x94\xf1\x2c\x5d\x67\x61\x2c\xad\x25\xf0\x7d\x90\x2e\x37\xcd\x0b" "\x07\xe2\x13\x53\xb7\x48\x63\x6f\xc4\x4e\x86\x76\xc3\x36\x92\xf6\xb6" "\xf0\xdd\x7a\xc1\x38\xae\xf6\xcd\x6f\x0f\xd3\xae\xcd\x00\xef\x9d\x78" "\x23\xce\xe8\xb7\x66\xda\xb2\x2a\x11\xb8\xd4\x3e\xae\xa4\x62\x7c\x41" "\x55\x31\x9c\x13\x5b\xd8\x5d\xfc\x2f\xfd\xd7\xf1\x27\x48\xf1\x67\x8e" "\x1e\x41\x29\x09\x3f\xf7\x6a\x59\x07\xd6\x66\xca\x39\xd5\x2b\x0c\x85" "\x69\xbc\x28\xb4\xdb\xb4\xb6\x7f\xa9\x97\x70\x0d\x3f\xe2\xc0\x07\x21" "\x58\x15\x94\xbd\x2a\xc0\xa5\x69\x08\x47\xf1\x83\xcb\x85\xae\xcc\xf3" "\xef\x10\x3d\x92\xbe\x8a\xe2\x35\xbe\xa5\xde\x17\xdf\xa2\xf3\x4c\xf7" "\xca\xa8\x62\x32\x95\x6e\xa0\x83\x8f\xed\x7d\xdc\x35\x07\x09\xb3\x54" "\x1e\x89\x27\x34\xd6\xa8\x91\x07\x9d\x1d\x33\xfc\x11\xe6\xb9\x8d\xec" "\xd4\xda\x8c\x00\xc5\x2a\x3a\x73\xca\x00\x43\x32\xec\x9c\xf5\x01\x31" "\x0f\x02\xed\xcb\x3e\x98\x4f\x41\xb5\x13\x0a\x5a\xea\x05\x8a\x75\x5f" "\x91\x26\x08\x50\xcb\x80\x45\x92\x8f\xab\x66\xdd\x51\x1b\x6a\x14\xcb" "\x4c\xcc\x2e\x3e\xe9\xf2\xdd\x88\xba\x1f\x59\x16\xfd\xc1\x14\x10\xf6" "\x86\x13\x39\xe6\x54\x77\x11\xe1\x2d\x81\x8d\x5d\xe1\xf7\x72\x2d\x14" "\x69\xda\xc8\xfb\xa1\xf4\x54\x79\x3b\xdb\xbe\x99\x9d\x3d\x99\xdd\xeb" "\xfb\xd7\x76\x7c\x27\x51\xb7\x73\x63\xd3\x74\xd4\xc4\xaf\xff\x5b\xa1" "\x1b\x6f\xf5\x19\x6c\x14\x23\x03\x0a\xa9\xa7\xb7\x86\x22\x22\x75\x04" "\x67\x91\x8e\x89\x6f\x42\x93\xdb\x12\x82\xe6\x9d\x18\xd2\x5e\x01\x99" "\x16\xd8\xca\x42\x85\xdf\xb2\xc3\xfb\x3a\xe8\x09\x0d\xc6\xeb\x34\x10" "\xe1\x5c\xc1\x2b\x39\x7a\x2c\x05\xcd\x68\x80\xc5\x93\x2e\x31\x53\x8c" "\xa0\x1c\x47\x76\x3d\x13\x54\x91\x45\x34\x7d\xdc\x5f\x47\xdf\xbb\xda" "\x98\x4c\xd3\xf1\x08\x5e\x94\x36\x16\x7e\x51\x20\x45\x2e\x59\xf3\xb1" "\x07\xe1\x13\x90\xf6\x71\x81\xe2\xae\x58\xec\xba\xaf\x02\x13\x8f\x8e" "\x94\x95\xad\x12\x0a\xc3\xc0\xb1\x9e\xbf\x4d\x56\xe7\x0a\xd4\x72\x49" "\x8b\xd0\x10\x7c\x81\xc5\x37\x1b\x2a\xa0\x93\x7a\x80\xe3\xd5\xe8\xea" "\x82\x0f\x23\x23\xcd\x9b\xbc\x9c\xb5\x14\x1b\x78\x24\xd3\x22\x17\xca" "\x1e\xf4\x55\x30\xee\x3c\x4c\x6a\x96\xa7\xa7\xaa\x18\xb8\xc8\xaf\x20" "\x7d\x89\x2b\x54\x39\xc3\xc1\xca\x69\x59\x8e\x12\xa9\x09\x57\x9a\x7d" "\xd5\x91\x24\x8c\xaa\xaa\x9b\xb6\x39\xa3\x46\x11\xd9\x7a\xee\x62\x76" "\x3a\x47\xab\x84\x01\xfc\x7d\x14\x18\x33\x21\xaa\x5a\x9a\x72\xc7\xb7" "\x81\x5c\x1f\xaf\xc5\x1d\x62\x24\xfa\x4f\x7f\x48\x4f\x1a\x1f\xc4\xf0" "\x9a\x02\x25\x54\xd4\x94\xc3\xb1\xcf\xe0\xf6\xe0\x24\x1c\xe8\xcc\x5b" "\x4e\x92\x11\xcc\xd6\x97\x62\x0a\xb8\xaa\xfe\xe4\xf6\x01\x7f\x37\x70" "\x6a\x5b\x8b\xb4\xc0\xb8\xa2\x60\xa9\x5d\x7a\x90\x5f\xad\xc4\x8a\x5f" "\x00\x78\x04\x78\x67\x76\x5d\x42\xf1\x33\x07\xf3\x10\xef\xd9\x3e\xeb" "\x59\x44\xcc\x86\x79\xc0\xf0\xf0\x3c\x5f\x5e\x37\xb6\x71\xa8\xf2\x8b" "\x3a\x96\xea\xb6\x86\x10\xc2\x21\x92\x34\xd2\xf5\x00\x2e\x2f\x96\x21" "\xb5\x4b\x77\xe4\xa9\xdd\x9d\x43\xda\x79\xfb\x92\x75\x77\xca\x6c\x4f" "\x89\x65\xdd\x42\x8e\xce\x62\xa9\x2b\x9f\xc0\x7b\xd9\xf1\x2c\x1c\xcf" "\x86\xfe\xef\xb5\xe9\x70\x8d\xfa\x87\xca\xcc\xd2\xc0\xa3\x33\x89\x4e" "\xfe\x42\x4f\xb9\x14\xf1\xd2\x76\xfd\xeb\xa7\xb5\xd2\x96\x77\x92\x13" "\xab\x27\x79\x2c\x6a\xbe\x1f\x87\x22\x63\xe1\x0f\x68\x34\x11\xb5\xd6" "\x55\x00\x29\x13\xd6\xcd\x53\x2b\x0d\x89\xf4\x9f\x75\xc0\x1a\xfb\x44" "\x8e\x1e\x0c\xba\x41\xb7\x9f\xf6\xd2\x73\x0c\xe3\x30\x32\x31\x8c\x70" "\x26\x66\x99\xc2\xaa\xde\xa7\xad\x9d\xf2\x30\x32\xe5\xb3\x07\xee\x27" "\xa1\x74\xba\x75\x84\x45\x2f\x6a\xb0\x0e\x34\x52\xba\x5d\x87\x3d\x06" "\x50\xd1\x9e\xd5\xc3\xd0\x77\x4c\x2a\x84\xc4\xdf\xd9\x75\x22\x6f\x8f" "\x71\xe0\x95\xb5\xff\x3a\x72\x14\xcc\x3a\xf4\xc1\x2d\xf0\x4b\x26\xb5" "\x4d\x2b\x1b\xcb\xec\x30\xad\x5f\xcc\xcd\xbb\xf5\x6b\x0a\x3b\x66\x8c" "\xe8\x7c\x3d\xb8\x35\x4d\x16\x84\x57\x1b\x8b\x8f\xf9\x39\x76\xc0\x2b" "\x54\x55\xf2\x3f\x53\x26\x10\xfa\x80\x8b\x10\xf3\xef\xe8\x66\x56\x66" "\x3d\x11\xb7\x2f\x59\xed\x95\xb5\xa0\x3b\xbb\x00\x52\x25\x66\xc1\x5f" "\xa0\x5d\x9a\xf4\x5f\x2e\xc8\x48\x44\xb5\xaa\xd7\x5d\x91\xbc\xb9\x06" "\x63\x48\x26\x89\x67\x90\x7b\xb5\x16\x39\x7b\x94\xa9\x4e\x42\x0d\xf2" "\x2f\x3c\x29\xd9\x7d\x76\xd7\x6f\x6f\x16\xd4\xd0\x5d\x36\xb2\x57\x56" "\x4a\xb2\x04\xbc\x1d\x69\x36\x21\x28\xb8\x1d\x58\x73\xdc\xea\xaa\xc6" "\x62\x52\xd4\x95\xee\x91\xce\x32\xbd\xdd\xa6\x82\x4d\x1f\x69\x69\x9b" "\x71\x40\x5e\x8f\xab\xbb\xde\x65\xb6\x7b\x56\x93\x16\x49\x48\xa2\xac" "\x47\xd6\xe3\xd7\x6c\xc2\x88\x03\x2d\x20\x19\x82\x33\x0b\x6d\x2d\x05" "\x07\x4f\xcf\xab\x7a\x8e\x0e\x86\x01\xa6\xe6\x56\x6f\x01\x42\xad\x0d" "\x35\x5d\x82\xc4\x63\x3e\x58\x28\x90\x72\xdb\x1b\xb5\xf5\xd7\x2a\xbc" "\xc3\x5d\x10\x70\x8a\xa0\xbd\x53\x3e\xd3\x25\xff\x70\xae\xb2\xb8\x2c" "\x42\x9c\x3c\x34\x7d\x6a\x7a\x8f\x05\xf2\x33\xe5\x5c\x63\xa1\x77\xa9" "\x52\x32\xab\xfe\x0e\x8e\x4d\x1b\x1d\x24\xd4\x72\x96\xbe\x15\xd7\xd1" "\x5f\xe8\xe2\x54\x6f\x32\x42\x87\xda\xbb\x2f\x31\x2f\xb2\xb6\xbf\x68" "\x89\x66\x90\x56\xeb\x56\xf7\x71\x1e\xca\xe3\x42\x11\x56\x59\x26\x86" "\x48\xb6\x79\xec\x8e\xd3\x6e\x5f\x14\x9f\x4f\x01\x8d\xf1\x0d\xba\x2a" "\xfa\x00\xc2\x87\x0f\x50\xce\xba\xd1\x88\x07\x16\x4e\xe5\x37\x33\x98" "\xf6\x03\x68\x52\x9f\x5e\x12\xbe\x49\xc4\xed\x1b\x41\xb9\x1c\x70\x79" "\xbf\x06\xa9\xd0\xe7\xe2\x20\xda\x63\xda\xc3\xda\x95\x22\x52\xba\x75" "\x68\x8c\x7f\x1a\x0d\x85\x6a\xe8\x5f\x48\x55\xc0\x2a\xa1\x02\x38\xd0" "\x16\x3b\xa3\x40\x1c\x7b\xa0\xec\x92\xd1\xab\xa9\x93\x09\xc6\xa1\x30" "\xd7\x24\x74\x66\xca\xc1\x87\xce\x60\xed\x73\xc7\x37\x99\x96\x4e\x12" "\x78\x0e\x83\x38\x09\xa6\x4e\x54\xdc\x81\xe8\xa6\x1d\x7c\x27\x8b\x30" "\x7b\xaa\x7f\x0e\x77\x2c\x3e\x61\xf5\x59\x3d\xe9\x09\x32\xfa\x23\x16" "\x76\x95\x4a\x56\x76\x47\x61\xce\x2a\x35\x30\x34\x54\xb1\x51\xfc\xc1" "\xfe\x08\xd3\x80\xaf\x0a\xf3\x2a\xbe\x08\x04\xef\xc6\xdc\x6e\x04\x94" "\x7a\xe3\xe5\x33\xd3\x6c\xaf\x25\x88\x4f\x88\xfc\x54\x71\xd7\xc6\x8e" "\xf9\x96\xc7\x49\xbe\x71\x0a\xf0\x50\x1f\xed\x78\x73\x7a\x70\x5b\xb8" "\x61\xf2\x28\x7d\x71\x1b\x72\x7e\x4e\x4e\xb0\x45\x98\xfd\x57\xd8\x82" "\xb0\x07\x96\x7f\x47\x9f\x64\x28\x3a\xe1\xaa\x57\xd3\xa3\x6d\x2c\x44" "\xad\xb8\xd0\x40\x64\x20\xa9\xb1\xce\xa6\x07\xea\x93\xe2\xf4", 8192); *(uint64_t*)0x200000000480 = 0; *(uint64_t*)0x200000000488 = 0; *(uint64_t*)0x200000000490 = 0; *(uint64_t*)0x200000000498 = 0; *(uint64_t*)0x2000000004a0 = 0; *(uint64_t*)0x2000000004a8 = 0; *(uint64_t*)0x2000000004b0 = 0; *(uint64_t*)0x2000000004b8 = 0; *(uint64_t*)0x2000000004c0 = 0; *(uint64_t*)0x2000000004c8 = 0; *(uint64_t*)0x2000000004d0 = 0; *(uint64_t*)0x2000000004d8 = 0x20000000a580; *(uint32_t*)0x20000000a580 = 0x9f; *(uint32_t*)0x20000000a584 = 0; *(uint64_t*)0x20000000a588 = 1; *(uint64_t*)0x20000000a590 = 1; *(uint64_t*)0x20000000a598 = 2; *(uint64_t*)0x20000000a5a0 = 0; *(uint64_t*)0x20000000a5a8 = 0x400; *(uint32_t*)0x20000000a5b0 = 0x800; *(uint32_t*)0x20000000a5b4 = 6; *(uint64_t*)0x20000000a5b8 = 6; *(uint64_t*)0x20000000a5c0 = 0xf97; *(uint64_t*)0x20000000a5c8 = 0xd459; *(uint64_t*)0x20000000a5d0 = 5; *(uint64_t*)0x20000000a5d8 = 0xd360; *(uint64_t*)0x20000000a5e0 = -1; *(uint32_t*)0x20000000a5e8 = 0x11a; *(uint32_t*)0x20000000a5ec = 0x938; *(uint32_t*)0x20000000a5f0 = 5; *(uint32_t*)0x20000000a5f4 = 0xc000; *(uint32_t*)0x20000000a5f8 = 0x80; *(uint32_t*)0x20000000a5fc = r[2]; *(uint32_t*)0x20000000a600 = r[3]; *(uint32_t*)0x20000000a604 = 8; *(uint32_t*)0x20000000a608 = 0; *(uint32_t*)0x20000000a60c = 0; *(uint64_t*)0x2000000004e0 = 0; *(uint64_t*)0x2000000004e8 = 0; *(uint64_t*)0x2000000004f0 = 0; *(uint64_t*)0x2000000004f8 = 0; *(uint64_t*)0x200000000500 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000008200, /*len=*/0x2000, /*res=*/0x200000000480); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }