// 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 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[2] = {0xffffffffffffffff, 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*)0x200000002040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000002040ul, /*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 = 0x42 (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=*/0x42, /*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 = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 30 34 30 30 30 30 2c 75 73 // 65 72 5f 69 64 3d} (length 0x2a) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 67 72 6f 75 70 5f 69 64 3d} (length 0xa) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000000840, "fd=", 3); sprintf((char*)0x200000000843, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000000855, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x20000000087f, "%020llu", (long long)0); memcpy((void*)0x200000000893, ",group_id=", 10); sprintf((char*)0x20000000089d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000000840ul); 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; 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 = 0x1f (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0xffffffff80013248 (4 bytes) // max_background: int16 = 0x2d (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x6 (4 bytes) // time_gran: int32 = 0x5 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x10 (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*)0x200000004200 = 0x50; *(uint32_t*)0x200000004204 = 0; *(uint64_t*)0x200000004208 = r[1]; *(uint32_t*)0x200000004210 = 7; *(uint32_t*)0x200000004214 = 0x1f; *(uint32_t*)0x200000004218 = 0; *(uint32_t*)0x20000000421c = 0x80013248; *(uint16_t*)0x200000004220 = 0x2d; *(uint16_t*)0x200000004222 = 0; *(uint32_t*)0x200000004224 = 6; *(uint32_t*)0x200000004228 = 5; *(uint16_t*)0x20000000422c = 0; *(uint16_t*)0x20000000422e = 0; *(uint32_t*)0x200000004230 = 0x10; *(uint32_t*)0x200000004234 = 0; memset((void*)0x200000004238, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000004200ul, /*len=*/0x50ul); break; case 5: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {a0 62 03 06 07 79 2c 01 38 6f 28 a4 28 82 89 47 de 99 f7 9c // c5 42 70 3d 92 3c 7c b9 d4 e1 f6 fd 95 fb f2 f7 47 ab 32 f6 fb 04 18 // 61 fb 3f 87 a8 8c b8 54 05 b4 e7 3c 0b 6b 12 c8 1e 42 a9 f1 3d 82 c3 // 2b 7d db 17 2b cb a1 aa c5 c3 8f 08 37 47 ac 17 9f 08 d4 d6 d3 42 a8 // 7b a8 dd 9b b7 a9 68 0f 27 43 3c 33 57 b4 f6 ac 97 b1 9a 97 35 92 f1 // ac 6e 78 53 a0 b1 5b a4 2a 28 ef b9 cc 30 b1 46 34 6b 54 60 18 96 6e // 94 97 6c a2 8f 26 a1 95 0d d6 4c 0a db b0 c2 e0 9b bd 9c aa 9e 78 86 // a2 b3 d6 e2 b6 d6 61 6b 71 8f 13 22 ea 28 81 ca 59 ef 73 94 8b 1b cd // c2 dd 39 70 e6 3c bc 10 43 ce 42 af 0e a1 f9 5d 17 26 8c bc 3e f0 62 // c8 c3 1a 53 7e 94 a2 0c 1c 50 5a 60 22 d5 ec e7 f5 1b d9 c7 54 d8 c4 // 7c be 80 bb b3 0b 21 59 99 1a 94 dd 3a 25 e6 4a ff 8a 7a 17 37 4b 5a // 71 e0 c7 c2 41 cb fd 7f 08 4e 18 a5 0b ea 51 2a da 90 22 10 a3 88 1f // fc d4 20 71 ab 09 c4 d8 01 39 d8 98 0d 6d c5 d1 2c 25 95 ce d4 45 ca // f2 2f 80 d8 fb 1a 4c 24 3d a4 7f ad b8 e2 8e 9c 04 fe a8 20 a8 a2 f0 // 32 f5 ad ff 8b 7d 92 69 e6 3d b6 8d 19 6b f7 f4 16 40 5e 52 b6 b8 ab // d8 bb 9d 96 94 b8 b5 ed da e3 48 20 99 63 73 8c d9 71 0b d6 c2 91 af // 1c 8e af 0e 52 d2 f2 f2 4b ef 8c 8b c9 f7 7e ed 40 10 4e 07 c8 ee 1b // 4c b3 58 fc 73 e2 65 3f ef 62 32 b5 e9 f5 d0 be 26 b9 1a 0b 79 67 ed // 5e 3b f1 0c 44 94 24 ff 4d 11 95 1d 96 36 77 00 1d 95 76 42 5d 6a 9c // 45 03 26 8a 40 7d 74 85 4f 5e 1c aa cc 0c cc 46 3d c5 6e 68 4d b1 d8 // 0b 37 0d a2 38 91 55 79 ab 82 cd bd 7d 15 5a df 10 b9 6e d7 11 00 ea // 92 83 4e 8a 4e 4f 5b 7b 83 1b ff 6f b4 fe be 01 bb 39 8e a4 06 54 46 // f2 77 f1 07 aa 3c c0 6e 0b 7a 6e 98 43 4b f5 77 44 ba 9e cb 8e ff e7 // 04 d7 f8 52 e1 6b c3 3a c1 13 64 9f 75 40 b7 a7 a6 7c f5 49 3b 40 0c // e0 6e 57 1d 48 5a f1 73 29 38 b7 9d ed 4d e7 da d9 7a 7e 1c 0b e7 bd // 47 9d c2 64 64 7b b7 65 03 16 84 23 e3 f6 fc 95 f8 ac 8e a3 5e 39 f4 // 76 ab 54 e8 82 86 fc f7 3e ea d1 f7 94 78 44 65 59 2f e4 ad 11 2a c6 // 3b bc 3b 3f 35 b8 7c 40 bc 5f a6 e3 ca 6c ad 87 8f 97 72 a6 1a 23 aa // 00 49 1a 9e 24 42 eb 90 a3 2a f2 bd 74 e9 9d 07 5b cd a2 02 88 bf c3 // 0f 3b 00 a7 e8 e1 a0 b4 79 15 73 ab d6 52 84 bb b5 3e 2b 7d 66 72 39 // b9 5b 33 2d d4 23 e4 d7 c5 12 de 55 9b d5 3f de 52 85 ad d9 79 5b da // 81 ec 14 26 20 e6 93 af 9c 78 7a 44 99 dd 76 ca 0d 77 d9 c7 c4 04 3e // 53 7e c6 c1 cd 0b 9a 64 2b 12 ad c7 82 a0 e0 0f 6c 1e d7 37 9d 5f ff // 4c 2f eb 19 18 2d b9 77 f6 57 b1 95 e4 71 0f f0 0f 78 e3 5a 14 61 19 // 89 74 95 b0 e1 a0 06 8a 66 06 29 2e e7 2b f6 5a dc d2 cd 29 b4 e5 9a // 4b 3f 82 ea c7 7d 52 54 01 3d 03 d2 fb 25 11 97 55 58 90 67 41 91 2d // 09 30 4f 0d 4c f0 8c 8f 62 69 0c 67 96 8c 86 9f 75 a4 02 52 24 d8 e8 // 4b af 7a 42 e0 1b 4e cf 7e 55 d7 c4 58 39 77 8c 22 66 88 0d 1b b7 3e // 3a ad 61 8d 1a 4f 8d 5a 16 91 4d 64 d7 04 38 a8 85 12 64 9f d4 ca a9 // 05 06 e5 a2 d5 8a 33 ec ae bc 9b 2e 5f 8a 4f be ca 57 c8 29 ae 02 fd // 2d c1 46 e9 39 c3 d2 95 ad a7 df 4a 07 e7 4b 35 6c 6f fd 7a 9c 54 6b // 9e dd f7 e0 13 cb cb 2b 57 ae 0d 22 52 49 f7 e0 6a 41 56 81 d9 f5 97 // a0 60 fd 55 e3 9b d5 6f 04 b8 63 ef ec a4 58 a0 cb c5 4b 66 0d b5 0c // a4 0d 27 a3 fd a3 41 68 60 e6 91 cf c7 80 59 3f 06 b4 67 70 09 68 bb // 91 8c 32 54 7e 37 8b 14 b4 e0 dc d1 1c b0 b2 fb 36 ea 70 94 6a c6 22 // 90 18 4b 4e ed 38 b5 1c 32 2a 75 36 7b 50 f5 58 e0 63 bf 36 33 41 a1 // 7c 28 dd cb f9 ce 53 da 06 f2 63 03 fd 15 64 23 a2 5f 68 68 09 bc 98 // 45 a7 8e 0c c3 d9 4e 04 bc 8d a8 5f 22 a4 a8 ec e2 c4 ac 2c 79 e5 4d // cc 4e ab c6 1e 06 70 60 ad 88 03 77 a7 1f e0 c2 c0 30 52 56 e4 f3 c6 // 37 57 5f 08 6e 4a e3 d7 ab 5d 10 6f de 03 d2 4c 47 dc cb a3 da 23 a2 // 44 c1 f5 0a 4f 60 cd 8d 71 b7 73 90 c5 ce 6d 56 12 fd 02 60 a2 f3 33 // 89 b0 64 ae 6a ca c7 83 ec a6 28 74 23 2f d3 80 8f b2 18 81 51 a4 3d // e6 ce bc 7e 24 51 06 18 3f 7d 92 9f 1e ef f6 f9 72 da 3e 3d 96 71 70 // 24 79 25 fb 0f 04 bf 38 e8 8d 06 32 1f 9f f9 d2 c2 96 55 3d 84 2b 69 // 03 6a 2b 6d e2 aa d3 87 9a ed ee 72 3f f0 07 36 f7 b0 df fe 61 82 10 // 41 05 ff 0f 0b 63 6f 51 92 d6 bb 5a e7 ef 95 08 25 82 7d 2f 3d 62 85 // d8 3a ed ca 3f 31 47 4e 0a d5 0c e6 29 0a 0e 54 6c 30 d9 00 e5 b4 20 // 8e cc 8b 3a ca 0b a3 d1 10 fc 3c 0a 7e 00 4a 53 e5 d0 ba 1c c1 c2 bb // 42 c3 db cb b4 ce b6 67 41 51 93 2a e5 6f 6b 03 cc 34 ce 45 0c 29 2f // ec d2 45 6d dc f4 2b 07 5e 6f d4 93 05 fb f2 65 a3 6f 3c ff 61 32 1d // d6 0f 16 e8 44 08 9d 65 91 30 94 76 72 a2 d0 59 e0 4a f9 ef 65 3e 8a // fe c9 26 b5 a5 d4 11 f6 0a 2a 43 54 37 09 5a 1d f8 dc 60 a6 16 bd 1a // 1c e7 b5 25 1e d8 f9 05 be cf fe bd 63 5e ee 8f f0 05 5c 40 f1 46 f1 // 35 0a 40 6b 85 3e cb 00 5c 6e de 4d c2 70 ce 67 51 cf f9 15 aa 27 f5 // f6 b0 73 6d a1 4c 99 49 de 59 9d 57 86 8c 29 cc 97 ad 03 bd 89 50 2a // 34 b8 8a d2 9c 87 62 d0 dc 24 a6 df 75 98 21 88 2a 32 e7 05 31 ca b5 // 1f a1 75 2a 4f c4 9c f0 70 6c b2 4d 20 31 74 b2 94 0f 29 ef 8b 0c e6 // 5b 40 cf de 4e 0c 73 10 c6 85 cc 8d e8 38 4e 48 5a 95 11 92 fa 8c 36 // c1 1f 9b 88 a4 8c af 02 7d ca 48 0c aa 4f cc ae 70 ea 6c 83 7e b8 2f // 92 6a d7 69 1c 77 09 f2 17 22 0d 71 f6 e3 74 fb 85 22 a8 4c 11 8b 5c // 25 f3 d5 6a cf b2 5a fb e6 76 fc 9e 57 4b 6c 5a 59 c0 0a 0b be ef f6 // 1f d8 2a 16 77 f3 da 9b b5 96 13 3d b4 91 a8 f1 1b 94 5d 93 0c 8a 67 // de 9c e8 00 25 c7 64 d5 18 ef cb ae 25 d9 19 4d c9 6c 31 ed 02 c6 3b // 1a c9 76 71 5f 72 33 ff ed 7c b6 e9 29 bb b5 af ab d3 4b c3 7c 09 5a // cd 0a bb bd b1 ea 48 e4 0a 30 ac 99 55 0f 0c cc a1 9e ce f5 ac b2 60 // 4c 48 ff fb 53 b3 52 d1 14 fa c7 2d 6f c0 19 dd ec 55 84 06 66 8f 77 // 3f ed 94 76 14 81 33 c0 f9 ca 4d 1f d7 e7 0d d0 4b fa 08 9d c5 7e 59 // 40 f2 9a 5f d3 3d c7 99 13 ff 48 85 37 94 fd af 89 1d 71 de 94 c4 a4 // fe d0 54 4e 09 f2 bd 57 8b 07 00 30 31 b8 60 2f 08 ca 8a 79 fa 5e bf // d5 47 7f 4d 4f 03 1c 3e fe 0d b2 73 44 6a 99 d0 cb e2 1a 3c f4 3f 3b // 82 77 4e 46 57 bb 4f 96 75 ad ba f7 1c 52 95 3f 0b 18 a6 1e 05 a9 c7 // 70 53 6f ba d2 15 84 8f 82 38 e8 73 0b 90 85 18 9e a4 62 17 80 da c5 // 00 d7 d7 dc 78 15 b4 5e 23 2f 86 59 24 98 f1 51 5a c8 c5 03 06 01 35 // 24 cc 5f 0a 74 b6 7b c8 5d 43 5d 33 2c e6 9f 00 64 1c 86 a3 e9 1b e8 // 4b 78 ac 35 8f 35 b1 8d 69 67 9d f4 19 7d 3b e8 55 44 17 cf 44 ae e6 // dc 62 3f 68 ce 33 88 df 18 16 8e fa 1c 87 c7 76 cb da 79 2f 61 10 b6 // af 17 8e b8 20 0a 91 df b7 2c 1e 23 b5 e5 a6 6b 5a 3e e3 f4 c2 bb a2 // cc ac 93 9d cb 03 60 06 b8 6e 89 40 93 92 2a 95 fd 70 ba ba 94 24 a3 // d0 32 7a 0f 20 9f e1 0b 39 f3 ce c3 f6 69 d3 01 a2 83 4e 58 fd 56 f9 // 4d 62 2d cc f6 53 f0 8e 77 6c 9f 3e 1b 0e 5b 3c de f1 33 83 4b 93 c4 // 1c 70 43 8d 51 a0 b1 27 26 28 68 d4 9c a9 16 23 c3 d8 b7 5c 2c ce 0b // 77 1b 9a c9 41 bb 96 02 9e 78 22 24 a3 68 6a 7c 0d d1 64 e1 62 ed e6 // 67 e0 e5 81 7e 7b de 85 ad 3b f3 0a 6a 5b dc 42 0f 75 16 79 be 74 a0 // 2f 84 aa 93 b9 71 c3 f4 5a 67 d1 55 f7 ec b1 d5 28 46 60 91 8d bf 10 // 2b c1 6f 49 6f b6 2a 12 90 e6 b8 8d da ff 55 74 05 83 cb a1 30 76 af // d6 23 27 66 34 e0 c1 16 63 be 50 76 69 80 94 90 95 00 3e f5 bc 6f 90 // a9 8b ba d4 36 b6 79 28 51 3e 70 11 52 24 f6 72 ca 2a 24 e2 7b b9 8b // d5 28 8c 49 ea 23 d4 7e f1 3c 5f f2 8c 43 ce 53 ca 16 a6 ca ec cc 1f // 60 12 26 25 3c 4a 38 a8 8a 93 82 8f 6c 80 05 47 ca db aa 6d 7a d2 6d // b6 18 cc cd 38 a6 71 50 7c ad 5b a0 06 5c e2 ed ba 81 a0 59 b9 5c 36 // c5 d0 4a b4 56 fd 6f d8 1e c3 73 8e be 54 6d 97 3c 08 86 a5 e7 b8 3d // d9 c2 f5 8f 5d 6c 19 51 9e 67 57 5b 37 32 a4 86 55 5f 8d 8c 4a e0 04 // a6 2e 8d 07 ab 2c 8e f7 4c db 96 aa 99 d7 5a eb 1c 25 98 59 96 f2 81 // d7 11 06 91 0a 3c 3d a1 7d e3 5e 04 db e0 0e 2b 7b 75 ec 2f ed 17 7a // 7f 2d 04 fb f6 8b d0 b8 af 68 2b 30 91 18 67 d4 d1 49 7b a0 60 b6 62 // f4 e9 7a 8e 7f d3 61 30 15 cc 34 30 23 77 49 7c d0 8b cd c2 9f 06 da // e2 40 82 0d 2c cd db f8 c9 5c 76 a4 ba 5d 3e 1b 37 a6 23 69 ce 3f 79 // fb 74 eb d9 bc 82 c3 fa 3e da d4 03 4b 67 15 c2 85 3f a7 78 1c 97 4b // 5a 4e 54 1e 8b 69 bf 4b d6 53 fc ce 4e 43 40 d9 40 9f e9 11 2e 4d 25 // 3a 3b 7e 9d 43 f4 42 61 27 b1 0f 2d 5d 3f cd 21 93 49 0f 7d 93 3e 0c // c5 3d ae 55 2f 2d 7c 9d 77 b8 f9 b2 7c 59 10 5c fa e4 3a 0a ab 31 4a // 08 20 fb b5 68 4b f2 09 86 e3 be 21 56 88 b4 29 38 d2 72 c4 c0 ed d1 // 7b cd c8 4a 51 4d 24 83 45 6d 6c fb 4f 5c 12 18 85 9e e5 5b fc 77 da // 36 c9 c7 57 34 93 2a 12 fd 03 df 38 23 20 63 ed 92 02 4f 8e e7 c2 1f // 31 41 29 fe b1 06 70 bb 4d 6a 0a d4 fb 3d c5 7a 64 cf e6 50 9a 07 70 // 65 0c de c0 ef d5 e0 b1 fd 29 43 3c f8 71 c9 dd be 64 83 19 bd 48 13 // 57 32 6a c1 eb 32 b4 be f4 ad 89 ab 61 22 e9 2d c7 86 de ca c8 86 24 // a4 a3 96 3a e7 71 f8 02 3b 9a 92 e4 46 11 47 64 c5 3d 7e fc 07 e3 ea // 77 a9 da ac 5c ab be 64 8a 22 3e 24 9d b6 21 02 ef 7b 7b 6d 06 df 46 // b6 ff 91 39 11 b8 98 48 a4 7a ec c0 56 3f b0 6b 6d 77 fe 1d af 45 41 // cf 61 91 05 ab 68 e0 bc df 7a 05 af 22 b0 55 13 23 bf 33 de c8 16 7d // f2 b7 fa c6 2d c9 e2 86 dd 34 62 f4 88 c8 2a d1 94 f7 fd 5d 3c a7 2f // e9 c0 c3 7c db 6d 75 68 43 26 e5 cb 30 31 9a b3 33 fc 70 bb 19 73 20 // ac da 16 1d 2e 68 5e 78 ac 2c b1 41 72 23 f6 47 42 b1 2a 31 6d 59 0b // 18 a4 17 3b 2a 10 5a 38 1b af 6f 38 3e c2 e8 1d 04 86 0b 5c c5 36 47 // 5d 7c 5d 05 bd 6a 7d b1 a5 d9 39 30 ba cb a8 c1 de 63 70 7b d2 47 85 // e1 9f c1 f1 5b a7 24 66 0a c0 0d 0f 2e bb cd 55 28 b8 cb e4 f3 ca 33 // 2e 86 11 e9 37 a3 10 fc 79 d2 34 be 6c 1c d0 9d 6a 5c b0 6a b3 6a 9d // 66 71 88 14 4c 81 f8 6a af 08 51 76 35 73 b3 6c c2 14 62 ba 4f 3d 6e // 95 d3 8d 1e 9b 94 30 85 66 1d 23 4e f6 d0 79 bc 9d 84 c7 44 7c 85 ba // ba 88 26 34 51 ba 10 55 9e 1c e3 26 fe e5 07 4b 26 b5 48 72 e6 90 a9 // a1 e5 89 e1 c4 44 da a3 22 4b 29 2b f9 ec 4a 60 4d c5 12 76 00 84 08 // 4f 27 38 6c 89 a1 19 0b 89 05 f0 d7 20 50 8c 0e d6 92 72 f3 96 72 58 // 05 48 01 88 aa 46 02 a2 6e 83 3c 16 aa 50 79 c0 57 7a 82 03 ec 0b 2b // 92 9e f3 b4 10 bb 42 7c 16 8b 7f ef d1 be 65 2f 06 ef c6 1c 7a 29 5a // 5d 07 a9 fd 61 bd 5b fe 67 ac 5f 74 e4 85 a6 6c 92 95 0a 1b 46 02 57 // 08 4c a3 a3 48 99 43 ad 45 03 00 96 72 34 b4 87 fa 3d ef 40 10 f9 b7 // 15 19 65 62 eb b0 84 6b 7a c3 eb a4 76 46 af 62 85 58 2b 44 02 f6 4a // a6 84 df f7 d9 cf 81 fb e1 aa 88 95 9f 79 06 f0 68 39 38 9f 2a d5 6e // fb 50 29 af e1 d5 ce ac 99 a3 e6 98 f4 9f f0 da 7d b0 6d 7c 9e 94 a8 // 77 3a 13 fa b9 3d ef 13 96 67 b4 dc 6b 74 1b d2 76 9d a7 78 6a ce cb // e3 15 f9 00 6b b6 b7 2a be 5b dc 58 7d 8d 5a a8 f6 7a ae fe f6 81 97 // fd 2e 78 74 d9 b7 da 2c 3a 56 18 72 0c 12 e8 fc 31 db 3e 33 4c 47 ab // cb f1 0c 61 81 ec 14 af 4f 9e 90 e1 9a 35 36 0a 79 3b 1e 9b 33 6e 49 // b3 ed 67 56 8a 86 0c d4 c2 98 f9 67 ba 32 3d 31 58 21 95 96 29 e5 b7 // aa ac 36 7e 1d db 8a 1c 5d 61 50 0a fa 69 33 1a 4c 90 86 18 52 f5 33 // 65 7b 28 b9 7a 34 3b c5 31 a1 1f f6 34 b1 57 a6 d8 59 a3 5f 0d 2a 59 // 53 75 e1 1a 32 45 75 75 f1 d7 3d a0 33 bf 5e ed a1 23 37 b9 fd d4 6b // ce 19 2d 3a aa a2 40 a8 c6 5b f4 77 04 d6 aa 64 a9 53 1f 9d e1 4a 96 // fc 9f e3 80 db 35 dd 5e c5 23 21 c6 7f b4 c1 8a bc af 22 fb e8 f6 02 // ed 20 12 32 25 13 17 e1 a1 b7 1e 1e 2c 92 4a 92 d8 46 85 de 34 8e ec // 97 fe d9 54 b7 f6 68 1d df 52 1b 4e e0 3a 1a eb 2e 44 6e e2 a7 f4 df // a3 7b 1c 53 83 11 39 fc 62 4c 14 dc c4 d1 44 cc df 75 8f d9 f3 44 b4 // cd c1 df 70 f6 a2 4f a7 8c ab 13 6c 91 2d 1e bf fa 70 53 cc bc 9b 94 // 45 76 22 36 dc a4 09 82 0f 73 83 70 11 7d 5c 36 9d fc 50 fd 42 27 7f // 14 ee af 29 11 0a ed cd 50 30 08 c4 29 14 d0 4e 21 9a 8b 6c 01 e3 37 // d0 47 24 91 9b 07 15 7e 22 75 ba 63 65 a9 db a5 eb c8 01 9b d1 aa 1b // 86 68 02 3f 64 cf 47 e1 b4 9b 4f bc fc 10 d5 60 bb 74 40 5c 90 75 15 // 04 db 81 00 d8 a8 a1 a3 ff 84 d9 8f 12 62 fb bd 6b 96 2f 49 2b 95 31 // a7 41 1c 08 e7 e5 6e b0 f8 38 07 5f 75 4b 6a 39 5b 6b 58 a8 e4 c4 7e // b4 6b fa ba 2a c9 48 00 a3 96 74 9d 18 ba 0e 62 19 f8 d6 16 ec 71 a1 // e6 0b 3b cc 24 e1 9d 4a 20 dd bc 6a 87 1e 6d 7e fa 50 a3 62 61 05 98 // d8 92 a5 ad ec bc fe 21 75 34 de ee 36 20 df c8 8c 79 92 ec 2e 71 0e // 08 3e f0 a5 0c 20 62 14 05 f6 54 80 4d 1a f4 f2 4d 22 b8 ca 48 f2 63 // 03 e6 96 91 27 a7 4f 0b 27 6a 56 24 c3 b8 44 10 d4 d5 ee 3c 62 60 58 // 76 e6 0a 88 df 2b d6 e8 db 8c 7e 48 6f db 45 21 78 56 3e 7a dd 6b c1 // 26 b7 21 b9 ef 8b 12 18 19 89 b8 70 31 57 3a 40 10 d8 8e 34 f1 5a 23 // 44 e4 80 8b 74 c9 9a d6 8f 0c 2a ca 4e 8d 50 43 97 c0 3e 13 28 c4 b1 // ec 43 fd 90 2d 20 6c 3c fb 63 d7 54 1a c5 7f db c7 0b 00 33 f8 75 14 // 28 61 01 23 1f e7 e7 96 68 c8 02 e1 c2 3d 61 54 0c df 13 a5 e6 75 b7 // 36 e2 21 dd c2 9a b7 47 d9 c6 4f 62 13 f5 1d 3c 1d ed 2e 2b 0e fc 4e // 45 18 3d 90 46 8f 61 ec 17 20 f7 a0 b8 79 47 e2 c5 41 25 ce be 65 63 // ee 44 15 d8 86 bb e8 69 d1 7d 36 37 1c 94 2c 11 db 1e 13 c1 dd 40 ed // 24 ca ba f7 ee 80 ea e6 c4 db 93 4e 98 2d 96 19 d7 53 dc d6 79 c5 65 // 0c d9 5d 21 58 2e 31 b2 59 04 3a 0d 03 37 1c d2 94 f4 cc 02 80 42 c7 // 50 70 c9 b5 34 a2 d7 9f 16 4a b9 d7 73 29 57 95 28 0d 15 84 ca 66 4b // 53 b2 63 fe 2e 23 53 4d 27 b0 d8 57 42 fa e8 06 1e 03 18 77 95 12 9d // d2 72 04 1c 6e b9 c1 0c 34 06 da 1f 75 2f 4c a6 97 bd bd dd 74 97 5c // d4 db ba 56 87 fb 30 ac 4f d5 d2 57 94 94 ea c7 30 53 a6 38 21 a8 52 // cf 41 a8 0f 66 68 00 6f 7e 1c 4e 30 b4 8d 63 8e ba b4 70 c5 58 d4 2b // ae ed 1a dc 8f c7 1f 73 e9 5f 3c a2 12 a4 b0 09 b5 08 e8 98 98 72 7f // 80 56 85 e4 e7 65 0a 29 61 d6 2c 11 7d 1e e9 01 72 36 a6 bf fa 0c 36 // ae 11 bc 52 d3 46 c8 33 99 e4 3c 42 cd b9 f4 43 aa 30 71 09 a9 7e e6 // 6c eb 7a 29 ee b2 f1 a2 bb 3e e1 49 22 29 11 6d b0 73 01 b2 aa 41 26 // ae e7 77 5d aa 2d 0e ab 4d 20 6f ae 11 b3 c6 b5 65 dc c4 c7 b4 dd 1c // f2 ab ec 81 15 0d 06 29 80 3f 6e b2 21 be 38 4b 87 72 fe 6d 6c 4f a9 // 8c 92 8a 9d 0a 02 e9 ff 8b b7 a2 16 8d be be 14 03 23 d9 3b ee 89 83 // c4 96 bc cf 75 2c 37 2b 79 5a 34 93 62 4c ef b3 cf eb 43 07 bd 39 82 // 6c ac 1e a3 f1 89 12 de ef 1b 8c 8d b3 0b c0 16 99 0a 47 7b c0 a9 25 // fb 36 45 3a 9e 21 35 4b 2d 7e 6e 3d 4c a4 dd 20 f2 7a 8d b0 54 29 d4 // 4b 7a 48 53 65 19 1d c4 ba 97 7a 81 59 58 fa f6 43 48 13 a9 f4 04 60 // 54 76 3d d5 5d bb 7f ae 89 2b 74 6e 16 9a e0 46 ae 33 61 a9 f7 5c f6 // 22 b0 3f 75 b1 63 3d a8 64 39 5b d1 c3 a5 94 fa b0 b1 fb 37 f0 88 dd // 1f 27 76 e2 b7 95 c7 86 35 c2 02 6a 8c e7 ff 40 96 8a 19 60 78 60 49 // a2 17 dd 88 72 ac 0c 01 f4 ba fc f2 d3 d7 51 dd 46 a5 e1 be c0 05 40 // a9 ca 7a fc a3 ef 37 57 5d 4a 8b 12 91 d0 5b e9 49 13 09 28 90 a9 b4 // bf ff 39 ed bf f3 07 e5 65 48 96 e7 92 28 77 7c 0f 8e a4 6c 55 bf e1 // 9e 52 2b f4 57 ab 4e 6b 01 67 d7 76 db cd 01 60 59 83 70 a1 2c 4a 03 // e4 ed c8 2b 24 5a 76 08 79 7b 03 d4 ed 89 df c2 a5 bf 07 b9 fc b2 51 // fb 86 08 55 3f 3b 37 74 81 87 17 a9 aa be 6b 2d ed 81 15 15 ba 45 4b // 39 0a 60 65 bb c5 95 52 f3 bf e5 1d 38 f1 39 79 2e 1a ae 60 09 3a 7c // 57 70 b5 2a 17 30 fe b1 04 9c 14 a7 d5 26 1d 64 4f 6b 73 8e 22 ee 72 // aa fa 42 2b d9 3f 61 e1 cc ac 0a 5e f4 72 6c 66 f6 1b b5 39 ac b9 37 // bd 63 da 82 c7 00 c0 86 0b e9 0c e5 62 1c ed 22 b5 2b 63 d0 41 26 6f // c2 58 fb fa 66 41 ae f2 2e 97 80 4e 51 38 ad 2c e4 40 5e af 76 bb 0a // cd 7f c6 1b 2d 6d e4 aa bc 5c 28 a8 50 fc f2 19 cf f7 7c 97 d3 cb 6b // ec 00 67 c1 71 b9 12 d1 1d 82 c5 6c ba d5 6c 00 32 a9 65 7d 4c dd 1e // ac ac a5 3f 40 f5 e3 fe 91 11 27 e1 cd 30 78 13 51 f1 80 e1 41 39 33 // ce e2 d4 6c a0 ee a3 1e e0 1f e4 e9 9a 56 7e dd 0b 10 56 5d 47 b8 7c // 8a 48 36 61 43 e8 89 e5 2d 0f f1 3c 92 0a ea 09 2c 25 45 fa 9b 70 56 // 20 4f ec 15 65 49 d3 c0 a9 97 bc 1c f4 a0 13 38 48 3b f5 c6 9d 69 58 // ae 03 8f 1c 3e 3b 84 ba eb 2c 1f 9e 06 4c 07 50 60 2c 34 c6 c4 83 c3 // 16 39 1d 97 5f 94 f2 1f 6d fe 74 e9 2c 33 22 8b 40 8a 9e 2b 9a bc da // 33 c4 97 ab ba 9c 48 a6 3e 5c 8f 1a 8d 0f 4c 24 d3 6a 44 e1 60 1e 8a // 09 e8 a5 c7 17 9b d4 c4 4b 17 e5 42 dd 99 ca ce 87 aa b6 0a 5e 53 32 // 5d 54 4c 99 1b 6f a5 de ff a4 9f d8 86 33 29 80 de ec a9 22 9c b2 f6 // 7f 49 5a 7b 74 31 53 85 4e d8 1e 16 23 b1 2d bd 65 51 2d 08 a5 73 2f // ee 2d b3 fb 45 5c f6 df 5a 17 01 a2 b8 67 46 33 c6 79 21 62 dc 86 ac // 76 e3 0d a2 25 b0 16 7a 7e 70 4a d3 3b a6 94 f9 c9 02 af be ed 58 ee // f6 09 87 47 67 05 3f 59 41 4d 4d 3e cc bb cd bc 7e ba 99 7c 71 f9 b1 // f5 13 9b b0 20 d5 da e1 db 6e 2d cf bb 51 b5 37 1b 08 bd bc 33 12 b0 // 5e e6 d8 c0 3c 8b 5a 7d 4f 23 da 45 f2 76 39 4f 22 2b 1a 0b df 4e 26 // 03 24 3c db a6 0e e0 53 03 87 c8 8b b4 57 ca 99 32 f2 28 3a 4d 55 bb // 11 95 e6 d3 25 ed 93 f7 14 e2 19 08 b1 ba af a4 67 f1 ce c7 fa 26 e5 // c3 84 ee 68 28 e7 79 78 bd 1a bd 01 4d e5 49 a5 e5 96 6f 2b 2f 4b a0 // 00 f9 d7 7f 1a bf e3 a6 c3 37 cd b8 52 c1 ec 59 f6 1b 63 d5 43 f3 06 // 2d d2 61 6a 16 3e d7 ca 60 16 8b 03 47 b5 c5 64 6a 67 8d af b4 c5 02 // c3 33 a0 a4 8f 03 41 b4 7f 5c 59 46 e4 2e 57 1d b0 bf a0 68 2a 44 9c // a6 4e 71 b5 66 1a 84 29 75 18 23 99 24 5c 6d e2 41 51 2c 67 ac 91 8d // 7e 0c 5c b6 65 65 01 0e 88 1b 83 33 56 7c a5 84 32 1e ad 1c 38 3b 09 // 9d 8b f1 c5 6d ac 08 cb 21 8c de 42 26 ad 42 0d 6d 63 13 f9 c4 88 4d // 63 94 72 23 04 fd aa 76 e6 1d b8 c0 d5 4e b1 15 13 44 c4 1c e1 13 02 // 72 92 8e ec b2 f9 f0 f2 3c 75 26 22 37 4e b1 22 3a 80 ef cf 0b 93 7d // ff 7d 81 3d 7b e0 34 02 26 c0 a7 b1 63 74 1d 9a ec af cb 7d da e5 a2 // 19 32 33 23 f6 21 c8 02 be 82 39 9e 06 d2 e1 cc 58 2e 75 9f fa 30 3c // 51 03 f8 a4 4d 71 29 d2 85 3b 02 e5 06 ab da 57 ad 28 36 d7 ff 16 f9 // 52 32 14 9f be b8 b6 2e 58 6d 35 36 bb 4a e0 42 ec d9 e2 5d 1d ee 78 // 93 53 07 1f 9c 89 d4 36 10 00 c4 7b 76 35 56 e8 90 2f 1f 25 cb d8 ae // 71 67 9e 03 ff 27 db 0e c7 5e ee e3 fc ca fc 7f cf 22 c3 77 ac 60 d3 // c6 1a 43 cb 53 ab f6 16 21 18 f2 ef c8 6a 5c e8 0e 69 a0 2b c1 db 80 // 01 8b ee ef 6d 56 79 41 23 2e 44 12 a9 58 ed 01 2b f7 a8 32 c1 ea f6 // 81 34 ec ab c4 92 7a d6 66 b3 d0 f2 1d 4e 8d 52 fa 37 e0 a9 75 11 24 // ef ed 8b f4 75 44 29 91 38 a6 f6 9d 89 e2 95 67 7f 12 60 6c 79 b7 24 // 51 c2 63 fc a3 ee c2 2b f0 c4 7c 64 11 59 a0 bb fb 3b 2b 03 15 4a f5 // 33 e5 c0 6a 14 9e 52 ad cf ae 31 bf c5 5f 30 06 4a 89 03 c8 d3 b8 28 // d2 75 a9 37 b1 e4 ad ff a0 59 7d a5 e2 53 b5 0b d7 1b 33 f0 57 ff ef // f0 b2 a0 82 9b 3b f3 33 50 fb e6 7c 7c 79 03 4f 80 d6 9e 6a 21 be 49 // 5a 84 8d 32 8f 41 6f 15 96 64 91 b2 18 ea b3 90 54 4e 39 d4 98 25 8a // d8 0d da e2 48 63 4c 84 5c be 6f 1c 1e 93 e7 c2 b0 20 75 41 1e 07 5f // e9 36 bc c7 5f 4a 4e 1a 36 87 cb 3d bb b6 1c b3 1d df bb c8 7a 18 59 // b3 a4 8f cc dd 8e 59 15 c8 bf 4e eb e8 f7 09 3c ef 6a 7a 91 c8 68 29 // 15 f9 90 8c 85 4c 48 3e 90 c9 64 34 67 29 28 84 d2 84 13 4d ba dd af // db c7 4d 94 a5 f9 71 37 19 d6 2b 4f 6b 42 36 80 3d 21 01 81 84 7c a2 // 71 29 fd e2 64 15 68 95 f4 e1 82 2e f7 8a 3b 21 5e f5 6d 7e 36 d2 b9 // 4c 93 f5 e9 31 a0 d1 3a 3a 30 30 06 1c e6 2d e5 95 ee cf 47 ea e6 bf // 69 85 30 14 57 57 70 0d f1 8f 66 fd 72 61 a1 2c 11 9d 66 79 66 3b 3c // 0f 99 d1 70 5a eb e6 6d c8 62 eb 21 cc b7 36 0b 93 f5 45 07 14 9b 57 // 7a bf 52 11 13 99 1e 06 f3 45 e8 28 2f dc 18 de 67 3e 1c a7 b1 88 ee // 34 b1 4f 37 f8 6d dc f9 7f ef 0b 91 3c 33 cf 8e 5d 5d 33 70 7d bc db // e4 b2 7c ef 05 66 70 25 2f 18 67 35 cd d0 2f 6e d6 bf e5 31 8a 70 4f // 00 e3 4f fc 4f da 98 55 bf 37 c5 1b e6 a7 42 3e 44 dd 8a 98 88 3c 8f // a8 2c a3 7c 90 d6 81 fb 7a 0d b9 15 57 6b 50 e4 9a ff 54 5b 99 aa 3a // a6 34 3b 81 4b a0 bf 64 e5 3b 2a 1e dc ae 22 31 bf 20 d6 5e 4b b4 da // 6d c8 38 21 20 ed e6 52 ad fb 7c 30 a4 6e 0e e7 84 cb de 74 56 3d 83 // eb 8d 89 a1 57 3f a1 04 fd dc a9 d4 83 3c 49 dc 90 4b da 90 54 26 c7 // de e3 e4 8b 59 6c 8e e2 01 be a5 7f ed b1 a0 64 94 57 ea ac 3c 5b 5f // 45 19 af 3a db 66 f1 0b 86 1e 71 1c d4 03 44 48 89 0e 15 04 7c 2f 89 // 02 58 82 68 b5 64 50 51 f3 f3 96 8e d8 d6 30 e0 50 cc ef 0d 01 b6 1f // fe ad e5 1e 4e 72 d8 fd 46 bb a4 c2 00 09 39 6e 98 4c 42 4d 17 49 34 // a6 7a 19 30 66 5f be a0 4c 80 9e 7c da 0a 2c df d3 a1 4d 6b 99 c3 a8 // d8 b3 69 18 25 83 04 56 87 6f 18 8f f8 71 fc 86 1e 4c 6a 0c a3 77 dc // 1f 0c b0 f9 29 f7 eb 1f 5d a0 45 d9 a5 88 a3 93 31 2a ca cc a5 c5 a3 // b1 5b b1 b4 88 b0 8f c4 0a d6 5a e2 c1 df 18 7e cc d8 37 75 25 a8 1d // 80 df 57 57 9a e5 2f 77 5f b2 ef dd 17 2a 41 c3 70 30 0f cc 59 4c 26 // 35 dc f5 0e 9e b9 d3 4f a8 b4 bb fd 13 07 84 22 e3 a7 73 4a 8a e6 cc // 09 e3 9d 07 c7 ee 19 83 8f 8d a4 cb af e4 16 2c 8f 8d c4 4e 28 48 40 // bd 0a 5c 80 bf c6 57 c2 2e 37 e0 d9 a9 6d da 34 a5 1c e6 16 c9 cc dc // 95 95 5c f8 5d 93 86 0d a9 02 ab 30 f1 1a a3 33 ea cc 25 c4 79 81 d8 // 63 60 38 76 1e d4 d8 4f cb b0 ca 92 dd 2e 07 86 3b 95 05 b4 51 c3 c4 // 9e 36 a1 72 52 75 78 12 30 49 ff 2d c2 b4 e2 58 a3 f6 98 a1 2c a4 70 // 5a 6f d0 ce 6b c4 f1 76 7b 4d 9c 2e 57 c9 ed 13 88 52 79 64 ac 96 ff // 5e 4c f5 ad 6f db 6a 85 3b 43 90 5d f3 2a f8 bd 78 8b 52 0f d5 26 cb // b9 51 95 a1 bc 00 d6 54 cb 08 0a cd f6 79 38 51 7a 6c da c7 41 d8 67 // 30 35 8b e1 64 65 b4 e1 30 1f 47 f6 a4 44 c4 e8 d2 98 0b 8b d9 8a 8d // cd 66 17 cd e0 b2 87 e2 d1 f5 91 67 b5 c4 45 14 6f a4 97 28 11 1b 8a // 27 29 42 8c ab d0 2f ac b8 fb dd bd b2 76 96 80 f2 88 64 8d 6b aa c5 // 3e 0d 90 93 35 da 3e 2b 4c 13 eb d4 1f 32 82 0c 9f 49 1e 91 24 ca 44 // 4a 05 32 f6 0e 28 16 e1 5a 58 10 ba a9 1f 64 45 4a a3 55 f9 d3 62 c7 // d1 a4 61 56 16 89 d0 8b 13 50 a2 16 b6 f1 bd a5 7a ae 07 06 b3 71 0a // 1b 8e 52 a7 e3 08 4e 60 0b 5e e3 dc 54 0b ba 0c 16 26 7d 54 93 04 a7 // 84 06 59 a3 2e 40 07 07 15 c9 bb 91 27 92 d4 a7 b8 4f a0 6e 73 b9 dd // bc 2f 06 c4 ed c1 9d 25 f5 a1 98 c7 e3 fc 62 26 84 2e 62 15 da 5d 82 // 6f cf 59 49 61 28 89 f7 8e 9d e3 9d 4e 64 b8 6b 70 33 b5 71 7a 21 f8 // f2 b8 1c 79 9a 3f c0 bf e6 f5 83 7b 25 2e ef a3 60 c9 1a 61 48 29 6b // d1 9d 50 a3 43 d9 09 c1 ed f5 26 1e 70 c8 df b2 c4 88 94 0c f2 36 94 // 1a d3 fd 01 24 7e 37 90 2a 4b bf dd 18 39 f7 c9 2c 26 0a 2c 49 40 22 // fa c0 86 29 30 3c 8e 54 10 8d 78 ae 2c 94 28 9c 7f 99 8b a3 b6 22 b4 // 89 31 ee 7c 17 c5 9f 54 99 d2 82 46 7a 1b 80 50 ac c9 4a 0b 17 b2 18 // 36 c8 0b 69 f5 19 b9 b0 77 d1 8e 33 c0 27 fa ad 56 2f a0 9f 2c c6 12 // 0f 8c f5 ee 18 cf 7d b9 d7 29 ff bb 9d e5 88 85 71 32 15 b7 ae bb 8c // 98 d9 fa 00 9b e0 a9 ef 3c ec cd b2 b3 19 68 db 55 5b 26 c5 c9 4e 38 // 2d 06 eb f6 d3 56 e8 ca a8 5d ef 58 13 dd 15 96 d8 23 92 4c 4f b6 3d // ba 5b d0 94 cb 64 f2 04 d1 e5 9d 31 28 77 15 f8 31 a1 f0 be 95 d8 74 // 9f 21 66 ba 0b 0b 6b 64 a3 79 91 be 1f e1 c1 e9 22 83 5f 2d a0 c0 74 // ec 94 13 56 1d 52 16 65 76 b1 c4 f1 e1 8f 07 8d c0 46 d1 c2 84 96 4b // 80 21 7b 55 c5 9a 47 47 40 c3 64 91 16 b3 3e 92 74 79 73 6b ff 60 05 // 85 9c 7c 00 59 8f 22 cb 8e ca 38 af 80 2f 4c 86 83 6e 83 30 49 2a c7 // ef 37 07 89 0a 8f f8 56 dc 77 86 ed 76 9b ba 75 b1 84 84 b2 57 b3 b0 // 22 ee b5 1a a7 20 63 9f 79 e6 e6 bd 3d 3c 9a 61 f7 82 2a be 56 28 67 // b4 69 3f 0b 2f 61 13 5a ae aa 51 0b 31 11 2e fe ec 48 d2 60 2c 6d 4f // 2d de eb 51 bb 03 ab 18 c1 8d 8e 12 7a 37 e2 28 81 fe bc a4 77 42 b9 // 33 2d 3f 22 51 00 3b 1a 46 c4 0e ca 11 1d 02 44 64 66 b6 69 56 8c 70 // 97 1b d3 32 54 ca 57 77 77 f1 26 f8 6f 8a 36 65 f0 65 b6 45 ff 26 1e // 78 e0 f5 32 e8 3a 81 b9 9c 5d e3 48 8d e7 4c a8 2d aa 0e 4e 74 04 ef // f9 11 ae 95 5a cb b8 00 f9 f9 1b 77 4e 47 2b c1 4a a9 28 17 b6 d8 58 // 77 b1 86 1a 6c a9 2c 03 c8 3b 6f 14 90 06 8b ad 8e ab 1f 58 c9 e9 1e // 10 29 68 3d e2 ca 45 c9 99 66 96 60 31 ee 86 d8 c9 99 5f 06 12 48 0e // 2a 6d 53 96 e8 ae 36 1d 6f d2 e2 45 57 61 3a 11 91 f5 01 9d 4c 80 78 // 62 80 13 51 2e a3 a5 95 32 ef ff a6 cf e4 97 0d 28 d8 c7 aa 8c 86 6c // 42 75 ff 2b 0b 4e f1 a7 e5 68 54 d7 ee 4b c4 45 71 3d a9 34 9d 13 e3 // 0a 4a 80 2c b9 db 2f 10 28 0f d9 ea 04 3b 5b 34 80 44 1e 8e d2 d9 07 // ea e1 25 9b ef ba 9d 87 a0 4c e4 2b 00 10 c7 0a f1 57 b9 0e 0b f7 25 // 49 85 2f d1 22 ed d6 cf 34 75 f7 68 52 b1 3b 4b f8 87 cf 32 e2 5a d3 // 4a ed 7f d5 a6 e9 7b 30 7f 9b 4f f1 c0 7b 2b 55 be ef 5e f3 dd 96 ee // b2 a5 77 20 c1 82 09 d9 11 a5 53 41 ce e6 7e 6f f5 77 f7 ac ab a0 1c // 2c 96 90 b1 5a 3b 8a aa 5b 9d 73 41 96 46 7a 8c 07 4b 2e ee b5 ae 93 // 1d df 3d eb 15 b1 a8 d6 03 e7 21 25 c2 e6 8a d2 06 f2 c4 25 2a 65 9f // 82 48 ff 88 2a 8e 54 12 6e bc 0c 77 a4 61 01 07 22 72 46 0e 68 3d 46 // 52 79 a3 69 5b e6 b6 4c 9e eb 4a 57 6d 95 fd 52 0b e4 2e ab 5c 95 cb // ac e0 df d8 0e 2d 67 ba b9 f6 83 a1 cc 9c 00 6c 02 f0 f9 0a 21 a0 f5 // 12 18 c6 28 f5 60 8f bf 1a bc 79 aa 63 45 2b de 10 02 38 30 33 57 8f // 32 98 0e 37 79 a8 ed eb 22 6f 6d 3f 9b 36 d8 f0 7b dd d7 47 9b 60 34 // 6a 4b 4f a8 83 94 0e 3a ef 8a d8 d8 34 da d4 40 59 60 a4 40 9a 62 55 // e8 75 3d 0c 0a d0 96 0f f3 ef 48 ce 93 fb e6 b1 65 e8 6e ab 36 fc cb // 8b 98 9f 5b 54 e6 cc aa 19 74 9f f0 65 a0 a7 32 d1 5c 41 b9 07 2b bc // 6f 07 e1 fd 5a 3d f2 77 58 74 e4 6b 61 ed 50 71 4e 8c 40 3f be d6 88 // 4e c0 6f 52 ab 71 d2 c1 91 fc c5 6a c0 b1 7b a3 c4 6d 2d ab 3e 11 c7 // 93 83 bd 88 67 ff 14 b5 fb ca 73 b9 ae 59 4b 6a 09 fb 73 a2 e8 f1 5a // ee 59 15 0e 8d 6d 3d ad 96 59 02 5d 04 5b bd 1b 9c a2 57 c6 7b b7 8a // be 8f 7e b9 c8 b3 bc 32 95 1c 41 f7 39 0b ac c8 c7 05 9a 2a 9b 07 8a // b5 04 13 60 5a ec 60 4e 46 66 a6 ac e7 65 b0 e7 ab 55 8f e6 23 2f 27 // 03 d0 78 11 e3 d0 ac 5b f9 43 4e 87 87 6e 99 25 0e e9 db 65 27 a8 cc // b4 a3 ee 3b de 73 85 63 c9 74 6f 94 1c f2 cd 7e fa cd bd 25 93 ca fd // be 51 71 86 4b 29 82 b5 4d c5 a3 2c 86 63 8c 0e 65 0a 33 16 25 03 3b // 8d d6 58 51 96 5a e7 91 88 03 49 d5 cd 52 54 8f 44 22 a3 17 f9 6e d7 // 9e 7c cf 3b d6 71 e6 dc 70 36 5f 52 1c 65 20 63 86 eb 1f 99 57 0a 54 // 4d 11 b3 d3 6f ea 28 5f 8a 37 70 ca 30 3a 96 5a 0c 1d 59 8e be 36 96 // e6 47 be 73 4c cf 76 0d 3d 47 de c7 5e 23 6d 7a c0 80 19 b6 62 2a 7b // 9f 08 bc 8f 09 37 ab 75 e7 5a 04 7a 73 86 be fb d5 6f c4 b2 f8 9c 85 // 2d ad ce 8d f9 46 cb 3f af e4 ee d2 67 8c aa df 1a 91 3a e3 2b 2c 0b // 8a 37 98 4c b7 00 34 3c 5e 24 60 9f 8c 5d de ff 5e 65 38 37 a9 33 2a // 41 c8 e2 14 66 a1 3d 79 22 41 25 d5 f6 a4 fe f7 9b 5a da e7 f4 ab 7d // 35 1c 55 40 05 45 ed d3 c0 06 37 bd 27 16 48 28 92 5e 9b b5 d7 9f 1f // 1e 6e b3 27 0a b7 99 ae 38 77 2f 77 95 65 d9 2c 47 50 3d e6 95 f7 aa // d7 dd ac da 6f 6c 71 e7 55 b3 73 72 31 b6 47 15 bf 07 84 9d 34 66 e4 // f9 22 39 f7 33 43 6c e6 74 38 9b d1 69 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (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 = 0xa0 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x0 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x100000000404 (8 bytes) // generation: int64 = 0x0 (8 bytes) // entry_valid: int64 = 0xc (8 bytes) // attr_valid: int64 = 0xffffffffffffffff (8 bytes) // entry_valid_nsec: int32 = 0x0 (4 bytes) // attr_valid_nsec: int32 = 0x800 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0xffffffffffffffff (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x0 (4 bytes) // mtimensec: int32 = 0x0 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0xa000 (4 bytes) // nlink: int32 = 0x0 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x9 (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*)0x2000000066c0, "\xa0\x62\x03\x06\x07\x79\x2c\x01\x38\x6f\x28\xa4\x28\x82\x89\x47\xde" "\x99\xf7\x9c\xc5\x42\x70\x3d\x92\x3c\x7c\xb9\xd4\xe1\xf6\xfd\x95\xfb" "\xf2\xf7\x47\xab\x32\xf6\xfb\x04\x18\x61\xfb\x3f\x87\xa8\x8c\xb8\x54" "\x05\xb4\xe7\x3c\x0b\x6b\x12\xc8\x1e\x42\xa9\xf1\x3d\x82\xc3\x2b\x7d" "\xdb\x17\x2b\xcb\xa1\xaa\xc5\xc3\x8f\x08\x37\x47\xac\x17\x9f\x08\xd4" "\xd6\xd3\x42\xa8\x7b\xa8\xdd\x9b\xb7\xa9\x68\x0f\x27\x43\x3c\x33\x57" "\xb4\xf6\xac\x97\xb1\x9a\x97\x35\x92\xf1\xac\x6e\x78\x53\xa0\xb1\x5b" "\xa4\x2a\x28\xef\xb9\xcc\x30\xb1\x46\x34\x6b\x54\x60\x18\x96\x6e\x94" "\x97\x6c\xa2\x8f\x26\xa1\x95\x0d\xd6\x4c\x0a\xdb\xb0\xc2\xe0\x9b\xbd" "\x9c\xaa\x9e\x78\x86\xa2\xb3\xd6\xe2\xb6\xd6\x61\x6b\x71\x8f\x13\x22" "\xea\x28\x81\xca\x59\xef\x73\x94\x8b\x1b\xcd\xc2\xdd\x39\x70\xe6\x3c" "\xbc\x10\x43\xce\x42\xaf\x0e\xa1\xf9\x5d\x17\x26\x8c\xbc\x3e\xf0\x62" "\xc8\xc3\x1a\x53\x7e\x94\xa2\x0c\x1c\x50\x5a\x60\x22\xd5\xec\xe7\xf5" "\x1b\xd9\xc7\x54\xd8\xc4\x7c\xbe\x80\xbb\xb3\x0b\x21\x59\x99\x1a\x94" "\xdd\x3a\x25\xe6\x4a\xff\x8a\x7a\x17\x37\x4b\x5a\x71\xe0\xc7\xc2\x41" "\xcb\xfd\x7f\x08\x4e\x18\xa5\x0b\xea\x51\x2a\xda\x90\x22\x10\xa3\x88" "\x1f\xfc\xd4\x20\x71\xab\x09\xc4\xd8\x01\x39\xd8\x98\x0d\x6d\xc5\xd1" "\x2c\x25\x95\xce\xd4\x45\xca\xf2\x2f\x80\xd8\xfb\x1a\x4c\x24\x3d\xa4" "\x7f\xad\xb8\xe2\x8e\x9c\x04\xfe\xa8\x20\xa8\xa2\xf0\x32\xf5\xad\xff" "\x8b\x7d\x92\x69\xe6\x3d\xb6\x8d\x19\x6b\xf7\xf4\x16\x40\x5e\x52\xb6" "\xb8\xab\xd8\xbb\x9d\x96\x94\xb8\xb5\xed\xda\xe3\x48\x20\x99\x63\x73" "\x8c\xd9\x71\x0b\xd6\xc2\x91\xaf\x1c\x8e\xaf\x0e\x52\xd2\xf2\xf2\x4b" "\xef\x8c\x8b\xc9\xf7\x7e\xed\x40\x10\x4e\x07\xc8\xee\x1b\x4c\xb3\x58" "\xfc\x73\xe2\x65\x3f\xef\x62\x32\xb5\xe9\xf5\xd0\xbe\x26\xb9\x1a\x0b" "\x79\x67\xed\x5e\x3b\xf1\x0c\x44\x94\x24\xff\x4d\x11\x95\x1d\x96\x36" "\x77\x00\x1d\x95\x76\x42\x5d\x6a\x9c\x45\x03\x26\x8a\x40\x7d\x74\x85" "\x4f\x5e\x1c\xaa\xcc\x0c\xcc\x46\x3d\xc5\x6e\x68\x4d\xb1\xd8\x0b\x37" "\x0d\xa2\x38\x91\x55\x79\xab\x82\xcd\xbd\x7d\x15\x5a\xdf\x10\xb9\x6e" "\xd7\x11\x00\xea\x92\x83\x4e\x8a\x4e\x4f\x5b\x7b\x83\x1b\xff\x6f\xb4" "\xfe\xbe\x01\xbb\x39\x8e\xa4\x06\x54\x46\xf2\x77\xf1\x07\xaa\x3c\xc0" "\x6e\x0b\x7a\x6e\x98\x43\x4b\xf5\x77\x44\xba\x9e\xcb\x8e\xff\xe7\x04" "\xd7\xf8\x52\xe1\x6b\xc3\x3a\xc1\x13\x64\x9f\x75\x40\xb7\xa7\xa6\x7c" "\xf5\x49\x3b\x40\x0c\xe0\x6e\x57\x1d\x48\x5a\xf1\x73\x29\x38\xb7\x9d" "\xed\x4d\xe7\xda\xd9\x7a\x7e\x1c\x0b\xe7\xbd\x47\x9d\xc2\x64\x64\x7b" "\xb7\x65\x03\x16\x84\x23\xe3\xf6\xfc\x95\xf8\xac\x8e\xa3\x5e\x39\xf4" "\x76\xab\x54\xe8\x82\x86\xfc\xf7\x3e\xea\xd1\xf7\x94\x78\x44\x65\x59" "\x2f\xe4\xad\x11\x2a\xc6\x3b\xbc\x3b\x3f\x35\xb8\x7c\x40\xbc\x5f\xa6" "\xe3\xca\x6c\xad\x87\x8f\x97\x72\xa6\x1a\x23\xaa\x00\x49\x1a\x9e\x24" "\x42\xeb\x90\xa3\x2a\xf2\xbd\x74\xe9\x9d\x07\x5b\xcd\xa2\x02\x88\xbf" "\xc3\x0f\x3b\x00\xa7\xe8\xe1\xa0\xb4\x79\x15\x73\xab\xd6\x52\x84\xbb" "\xb5\x3e\x2b\x7d\x66\x72\x39\xb9\x5b\x33\x2d\xd4\x23\xe4\xd7\xc5\x12" "\xde\x55\x9b\xd5\x3f\xde\x52\x85\xad\xd9\x79\x5b\xda\x81\xec\x14\x26" "\x20\xe6\x93\xaf\x9c\x78\x7a\x44\x99\xdd\x76\xca\x0d\x77\xd9\xc7\xc4" "\x04\x3e\x53\x7e\xc6\xc1\xcd\x0b\x9a\x64\x2b\x12\xad\xc7\x82\xa0\xe0" "\x0f\x6c\x1e\xd7\x37\x9d\x5f\xff\x4c\x2f\xeb\x19\x18\x2d\xb9\x77\xf6" "\x57\xb1\x95\xe4\x71\x0f\xf0\x0f\x78\xe3\x5a\x14\x61\x19\x89\x74\x95" "\xb0\xe1\xa0\x06\x8a\x66\x06\x29\x2e\xe7\x2b\xf6\x5a\xdc\xd2\xcd\x29" "\xb4\xe5\x9a\x4b\x3f\x82\xea\xc7\x7d\x52\x54\x01\x3d\x03\xd2\xfb\x25" "\x11\x97\x55\x58\x90\x67\x41\x91\x2d\x09\x30\x4f\x0d\x4c\xf0\x8c\x8f" "\x62\x69\x0c\x67\x96\x8c\x86\x9f\x75\xa4\x02\x52\x24\xd8\xe8\x4b\xaf" "\x7a\x42\xe0\x1b\x4e\xcf\x7e\x55\xd7\xc4\x58\x39\x77\x8c\x22\x66\x88" "\x0d\x1b\xb7\x3e\x3a\xad\x61\x8d\x1a\x4f\x8d\x5a\x16\x91\x4d\x64\xd7" "\x04\x38\xa8\x85\x12\x64\x9f\xd4\xca\xa9\x05\x06\xe5\xa2\xd5\x8a\x33" "\xec\xae\xbc\x9b\x2e\x5f\x8a\x4f\xbe\xca\x57\xc8\x29\xae\x02\xfd\x2d" "\xc1\x46\xe9\x39\xc3\xd2\x95\xad\xa7\xdf\x4a\x07\xe7\x4b\x35\x6c\x6f" "\xfd\x7a\x9c\x54\x6b\x9e\xdd\xf7\xe0\x13\xcb\xcb\x2b\x57\xae\x0d\x22" "\x52\x49\xf7\xe0\x6a\x41\x56\x81\xd9\xf5\x97\xa0\x60\xfd\x55\xe3\x9b" "\xd5\x6f\x04\xb8\x63\xef\xec\xa4\x58\xa0\xcb\xc5\x4b\x66\x0d\xb5\x0c" "\xa4\x0d\x27\xa3\xfd\xa3\x41\x68\x60\xe6\x91\xcf\xc7\x80\x59\x3f\x06" "\xb4\x67\x70\x09\x68\xbb\x91\x8c\x32\x54\x7e\x37\x8b\x14\xb4\xe0\xdc" "\xd1\x1c\xb0\xb2\xfb\x36\xea\x70\x94\x6a\xc6\x22\x90\x18\x4b\x4e\xed" "\x38\xb5\x1c\x32\x2a\x75\x36\x7b\x50\xf5\x58\xe0\x63\xbf\x36\x33\x41" "\xa1\x7c\x28\xdd\xcb\xf9\xce\x53\xda\x06\xf2\x63\x03\xfd\x15\x64\x23" "\xa2\x5f\x68\x68\x09\xbc\x98\x45\xa7\x8e\x0c\xc3\xd9\x4e\x04\xbc\x8d" "\xa8\x5f\x22\xa4\xa8\xec\xe2\xc4\xac\x2c\x79\xe5\x4d\xcc\x4e\xab\xc6" "\x1e\x06\x70\x60\xad\x88\x03\x77\xa7\x1f\xe0\xc2\xc0\x30\x52\x56\xe4" "\xf3\xc6\x37\x57\x5f\x08\x6e\x4a\xe3\xd7\xab\x5d\x10\x6f\xde\x03\xd2" "\x4c\x47\xdc\xcb\xa3\xda\x23\xa2\x44\xc1\xf5\x0a\x4f\x60\xcd\x8d\x71" "\xb7\x73\x90\xc5\xce\x6d\x56\x12\xfd\x02\x60\xa2\xf3\x33\x89\xb0\x64" "\xae\x6a\xca\xc7\x83\xec\xa6\x28\x74\x23\x2f\xd3\x80\x8f\xb2\x18\x81" "\x51\xa4\x3d\xe6\xce\xbc\x7e\x24\x51\x06\x18\x3f\x7d\x92\x9f\x1e\xef" "\xf6\xf9\x72\xda\x3e\x3d\x96\x71\x70\x24\x79\x25\xfb\x0f\x04\xbf\x38" "\xe8\x8d\x06\x32\x1f\x9f\xf9\xd2\xc2\x96\x55\x3d\x84\x2b\x69\x03\x6a" "\x2b\x6d\xe2\xaa\xd3\x87\x9a\xed\xee\x72\x3f\xf0\x07\x36\xf7\xb0\xdf" "\xfe\x61\x82\x10\x41\x05\xff\x0f\x0b\x63\x6f\x51\x92\xd6\xbb\x5a\xe7" "\xef\x95\x08\x25\x82\x7d\x2f\x3d\x62\x85\xd8\x3a\xed\xca\x3f\x31\x47" "\x4e\x0a\xd5\x0c\xe6\x29\x0a\x0e\x54\x6c\x30\xd9\x00\xe5\xb4\x20\x8e" "\xcc\x8b\x3a\xca\x0b\xa3\xd1\x10\xfc\x3c\x0a\x7e\x00\x4a\x53\xe5\xd0" "\xba\x1c\xc1\xc2\xbb\x42\xc3\xdb\xcb\xb4\xce\xb6\x67\x41\x51\x93\x2a" "\xe5\x6f\x6b\x03\xcc\x34\xce\x45\x0c\x29\x2f\xec\xd2\x45\x6d\xdc\xf4" "\x2b\x07\x5e\x6f\xd4\x93\x05\xfb\xf2\x65\xa3\x6f\x3c\xff\x61\x32\x1d" "\xd6\x0f\x16\xe8\x44\x08\x9d\x65\x91\x30\x94\x76\x72\xa2\xd0\x59\xe0" "\x4a\xf9\xef\x65\x3e\x8a\xfe\xc9\x26\xb5\xa5\xd4\x11\xf6\x0a\x2a\x43" "\x54\x37\x09\x5a\x1d\xf8\xdc\x60\xa6\x16\xbd\x1a\x1c\xe7\xb5\x25\x1e" "\xd8\xf9\x05\xbe\xcf\xfe\xbd\x63\x5e\xee\x8f\xf0\x05\x5c\x40\xf1\x46" "\xf1\x35\x0a\x40\x6b\x85\x3e\xcb\x00\x5c\x6e\xde\x4d\xc2\x70\xce\x67" "\x51\xcf\xf9\x15\xaa\x27\xf5\xf6\xb0\x73\x6d\xa1\x4c\x99\x49\xde\x59" "\x9d\x57\x86\x8c\x29\xcc\x97\xad\x03\xbd\x89\x50\x2a\x34\xb8\x8a\xd2" "\x9c\x87\x62\xd0\xdc\x24\xa6\xdf\x75\x98\x21\x88\x2a\x32\xe7\x05\x31" "\xca\xb5\x1f\xa1\x75\x2a\x4f\xc4\x9c\xf0\x70\x6c\xb2\x4d\x20\x31\x74" "\xb2\x94\x0f\x29\xef\x8b\x0c\xe6\x5b\x40\xcf\xde\x4e\x0c\x73\x10\xc6" "\x85\xcc\x8d\xe8\x38\x4e\x48\x5a\x95\x11\x92\xfa\x8c\x36\xc1\x1f\x9b" "\x88\xa4\x8c\xaf\x02\x7d\xca\x48\x0c\xaa\x4f\xcc\xae\x70\xea\x6c\x83" "\x7e\xb8\x2f\x92\x6a\xd7\x69\x1c\x77\x09\xf2\x17\x22\x0d\x71\xf6\xe3" "\x74\xfb\x85\x22\xa8\x4c\x11\x8b\x5c\x25\xf3\xd5\x6a\xcf\xb2\x5a\xfb" "\xe6\x76\xfc\x9e\x57\x4b\x6c\x5a\x59\xc0\x0a\x0b\xbe\xef\xf6\x1f\xd8" "\x2a\x16\x77\xf3\xda\x9b\xb5\x96\x13\x3d\xb4\x91\xa8\xf1\x1b\x94\x5d" "\x93\x0c\x8a\x67\xde\x9c\xe8\x00\x25\xc7\x64\xd5\x18\xef\xcb\xae\x25" "\xd9\x19\x4d\xc9\x6c\x31\xed\x02\xc6\x3b\x1a\xc9\x76\x71\x5f\x72\x33" "\xff\xed\x7c\xb6\xe9\x29\xbb\xb5\xaf\xab\xd3\x4b\xc3\x7c\x09\x5a\xcd" "\x0a\xbb\xbd\xb1\xea\x48\xe4\x0a\x30\xac\x99\x55\x0f\x0c\xcc\xa1\x9e" "\xce\xf5\xac\xb2\x60\x4c\x48\xff\xfb\x53\xb3\x52\xd1\x14\xfa\xc7\x2d" "\x6f\xc0\x19\xdd\xec\x55\x84\x06\x66\x8f\x77\x3f\xed\x94\x76\x14\x81" "\x33\xc0\xf9\xca\x4d\x1f\xd7\xe7\x0d\xd0\x4b\xfa\x08\x9d\xc5\x7e\x59" "\x40\xf2\x9a\x5f\xd3\x3d\xc7\x99\x13\xff\x48\x85\x37\x94\xfd\xaf\x89" "\x1d\x71\xde\x94\xc4\xa4\xfe\xd0\x54\x4e\x09\xf2\xbd\x57\x8b\x07\x00" "\x30\x31\xb8\x60\x2f\x08\xca\x8a\x79\xfa\x5e\xbf\xd5\x47\x7f\x4d\x4f" "\x03\x1c\x3e\xfe\x0d\xb2\x73\x44\x6a\x99\xd0\xcb\xe2\x1a\x3c\xf4\x3f" "\x3b\x82\x77\x4e\x46\x57\xbb\x4f\x96\x75\xad\xba\xf7\x1c\x52\x95\x3f" "\x0b\x18\xa6\x1e\x05\xa9\xc7\x70\x53\x6f\xba\xd2\x15\x84\x8f\x82\x38" "\xe8\x73\x0b\x90\x85\x18\x9e\xa4\x62\x17\x80\xda\xc5\x00\xd7\xd7\xdc" "\x78\x15\xb4\x5e\x23\x2f\x86\x59\x24\x98\xf1\x51\x5a\xc8\xc5\x03\x06" "\x01\x35\x24\xcc\x5f\x0a\x74\xb6\x7b\xc8\x5d\x43\x5d\x33\x2c\xe6\x9f" "\x00\x64\x1c\x86\xa3\xe9\x1b\xe8\x4b\x78\xac\x35\x8f\x35\xb1\x8d\x69" "\x67\x9d\xf4\x19\x7d\x3b\xe8\x55\x44\x17\xcf\x44\xae\xe6\xdc\x62\x3f" "\x68\xce\x33\x88\xdf\x18\x16\x8e\xfa\x1c\x87\xc7\x76\xcb\xda\x79\x2f" "\x61\x10\xb6\xaf\x17\x8e\xb8\x20\x0a\x91\xdf\xb7\x2c\x1e\x23\xb5\xe5" "\xa6\x6b\x5a\x3e\xe3\xf4\xc2\xbb\xa2\xcc\xac\x93\x9d\xcb\x03\x60\x06" "\xb8\x6e\x89\x40\x93\x92\x2a\x95\xfd\x70\xba\xba\x94\x24\xa3\xd0\x32" "\x7a\x0f\x20\x9f\xe1\x0b\x39\xf3\xce\xc3\xf6\x69\xd3\x01\xa2\x83\x4e" "\x58\xfd\x56\xf9\x4d\x62\x2d\xcc\xf6\x53\xf0\x8e\x77\x6c\x9f\x3e\x1b" "\x0e\x5b\x3c\xde\xf1\x33\x83\x4b\x93\xc4\x1c\x70\x43\x8d\x51\xa0\xb1" "\x27\x26\x28\x68\xd4\x9c\xa9\x16\x23\xc3\xd8\xb7\x5c\x2c\xce\x0b\x77" "\x1b\x9a\xc9\x41\xbb\x96\x02\x9e\x78\x22\x24\xa3\x68\x6a\x7c\x0d\xd1" "\x64\xe1\x62\xed\xe6\x67\xe0\xe5\x81\x7e\x7b\xde\x85\xad\x3b\xf3\x0a" "\x6a\x5b\xdc\x42\x0f\x75\x16\x79\xbe\x74\xa0\x2f\x84\xaa\x93\xb9\x71" "\xc3\xf4\x5a\x67\xd1\x55\xf7\xec\xb1\xd5\x28\x46\x60\x91\x8d\xbf\x10" "\x2b\xc1\x6f\x49\x6f\xb6\x2a\x12\x90\xe6\xb8\x8d\xda\xff\x55\x74\x05" "\x83\xcb\xa1\x30\x76\xaf\xd6\x23\x27\x66\x34\xe0\xc1\x16\x63\xbe\x50" "\x76\x69\x80\x94\x90\x95\x00\x3e\xf5\xbc\x6f\x90\xa9\x8b\xba\xd4\x36" "\xb6\x79\x28\x51\x3e\x70\x11\x52\x24\xf6\x72\xca\x2a\x24\xe2\x7b\xb9" "\x8b\xd5\x28\x8c\x49\xea\x23\xd4\x7e\xf1\x3c\x5f\xf2\x8c\x43\xce\x53" "\xca\x16\xa6\xca\xec\xcc\x1f\x60\x12\x26\x25\x3c\x4a\x38\xa8\x8a\x93" "\x82\x8f\x6c\x80\x05\x47\xca\xdb\xaa\x6d\x7a\xd2\x6d\xb6\x18\xcc\xcd" "\x38\xa6\x71\x50\x7c\xad\x5b\xa0\x06\x5c\xe2\xed\xba\x81\xa0\x59\xb9" "\x5c\x36\xc5\xd0\x4a\xb4\x56\xfd\x6f\xd8\x1e\xc3\x73\x8e\xbe\x54\x6d" "\x97\x3c\x08\x86\xa5\xe7\xb8\x3d\xd9\xc2\xf5\x8f\x5d\x6c\x19\x51\x9e" "\x67\x57\x5b\x37\x32\xa4\x86\x55\x5f\x8d\x8c\x4a\xe0\x04\xa6\x2e\x8d" "\x07\xab\x2c\x8e\xf7\x4c\xdb\x96\xaa\x99\xd7\x5a\xeb\x1c\x25\x98\x59" "\x96\xf2\x81\xd7\x11\x06\x91\x0a\x3c\x3d\xa1\x7d\xe3\x5e\x04\xdb\xe0" "\x0e\x2b\x7b\x75\xec\x2f\xed\x17\x7a\x7f\x2d\x04\xfb\xf6\x8b\xd0\xb8" "\xaf\x68\x2b\x30\x91\x18\x67\xd4\xd1\x49\x7b\xa0\x60\xb6\x62\xf4\xe9" "\x7a\x8e\x7f\xd3\x61\x30\x15\xcc\x34\x30\x23\x77\x49\x7c\xd0\x8b\xcd" "\xc2\x9f\x06\xda\xe2\x40\x82\x0d\x2c\xcd\xdb\xf8\xc9\x5c\x76\xa4\xba" "\x5d\x3e\x1b\x37\xa6\x23\x69\xce\x3f\x79\xfb\x74\xeb\xd9\xbc\x82\xc3" "\xfa\x3e\xda\xd4\x03\x4b\x67\x15\xc2\x85\x3f\xa7\x78\x1c\x97\x4b\x5a" "\x4e\x54\x1e\x8b\x69\xbf\x4b\xd6\x53\xfc\xce\x4e\x43\x40\xd9\x40\x9f" "\xe9\x11\x2e\x4d\x25\x3a\x3b\x7e\x9d\x43\xf4\x42\x61\x27\xb1\x0f\x2d" "\x5d\x3f\xcd\x21\x93\x49\x0f\x7d\x93\x3e\x0c\xc5\x3d\xae\x55\x2f\x2d" "\x7c\x9d\x77\xb8\xf9\xb2\x7c\x59\x10\x5c\xfa\xe4\x3a\x0a\xab\x31\x4a" "\x08\x20\xfb\xb5\x68\x4b\xf2\x09\x86\xe3\xbe\x21\x56\x88\xb4\x29\x38" "\xd2\x72\xc4\xc0\xed\xd1\x7b\xcd\xc8\x4a\x51\x4d\x24\x83\x45\x6d\x6c" "\xfb\x4f\x5c\x12\x18\x85\x9e\xe5\x5b\xfc\x77\xda\x36\xc9\xc7\x57\x34" "\x93\x2a\x12\xfd\x03\xdf\x38\x23\x20\x63\xed\x92\x02\x4f\x8e\xe7\xc2" "\x1f\x31\x41\x29\xfe\xb1\x06\x70\xbb\x4d\x6a\x0a\xd4\xfb\x3d\xc5\x7a" "\x64\xcf\xe6\x50\x9a\x07\x70\x65\x0c\xde\xc0\xef\xd5\xe0\xb1\xfd\x29" "\x43\x3c\xf8\x71\xc9\xdd\xbe\x64\x83\x19\xbd\x48\x13\x57\x32\x6a\xc1" "\xeb\x32\xb4\xbe\xf4\xad\x89\xab\x61\x22\xe9\x2d\xc7\x86\xde\xca\xc8" "\x86\x24\xa4\xa3\x96\x3a\xe7\x71\xf8\x02\x3b\x9a\x92\xe4\x46\x11\x47" "\x64\xc5\x3d\x7e\xfc\x07\xe3\xea\x77\xa9\xda\xac\x5c\xab\xbe\x64\x8a" "\x22\x3e\x24\x9d\xb6\x21\x02\xef\x7b\x7b\x6d\x06\xdf\x46\xb6\xff\x91" "\x39\x11\xb8\x98\x48\xa4\x7a\xec\xc0\x56\x3f\xb0\x6b\x6d\x77\xfe\x1d" "\xaf\x45\x41\xcf\x61\x91\x05\xab\x68\xe0\xbc\xdf\x7a\x05\xaf\x22\xb0" "\x55\x13\x23\xbf\x33\xde\xc8\x16\x7d\xf2\xb7\xfa\xc6\x2d\xc9\xe2\x86" "\xdd\x34\x62\xf4\x88\xc8\x2a\xd1\x94\xf7\xfd\x5d\x3c\xa7\x2f\xe9\xc0" "\xc3\x7c\xdb\x6d\x75\x68\x43\x26\xe5\xcb\x30\x31\x9a\xb3\x33\xfc\x70" "\xbb\x19\x73\x20\xac\xda\x16\x1d\x2e\x68\x5e\x78\xac\x2c\xb1\x41\x72" "\x23\xf6\x47\x42\xb1\x2a\x31\x6d\x59\x0b\x18\xa4\x17\x3b\x2a\x10\x5a" "\x38\x1b\xaf\x6f\x38\x3e\xc2\xe8\x1d\x04\x86\x0b\x5c\xc5\x36\x47\x5d" "\x7c\x5d\x05\xbd\x6a\x7d\xb1\xa5\xd9\x39\x30\xba\xcb\xa8\xc1\xde\x63" "\x70\x7b\xd2\x47\x85\xe1\x9f\xc1\xf1\x5b\xa7\x24\x66\x0a\xc0\x0d\x0f" "\x2e\xbb\xcd\x55\x28\xb8\xcb\xe4\xf3\xca\x33\x2e\x86\x11\xe9\x37\xa3" "\x10\xfc\x79\xd2\x34\xbe\x6c\x1c\xd0\x9d\x6a\x5c\xb0\x6a\xb3\x6a\x9d" "\x66\x71\x88\x14\x4c\x81\xf8\x6a\xaf\x08\x51\x76\x35\x73\xb3\x6c\xc2" "\x14\x62\xba\x4f\x3d\x6e\x95\xd3\x8d\x1e\x9b\x94\x30\x85\x66\x1d\x23" "\x4e\xf6\xd0\x79\xbc\x9d\x84\xc7\x44\x7c\x85\xba\xba\x88\x26\x34\x51" "\xba\x10\x55\x9e\x1c\xe3\x26\xfe\xe5\x07\x4b\x26\xb5\x48\x72\xe6\x90" "\xa9\xa1\xe5\x89\xe1\xc4\x44\xda\xa3\x22\x4b\x29\x2b\xf9\xec\x4a\x60" "\x4d\xc5\x12\x76\x00\x84\x08\x4f\x27\x38\x6c\x89\xa1\x19\x0b\x89\x05" "\xf0\xd7\x20\x50\x8c\x0e\xd6\x92\x72\xf3\x96\x72\x58\x05\x48\x01\x88" "\xaa\x46\x02\xa2\x6e\x83\x3c\x16\xaa\x50\x79\xc0\x57\x7a\x82\x03\xec" "\x0b\x2b\x92\x9e\xf3\xb4\x10\xbb\x42\x7c\x16\x8b\x7f\xef\xd1\xbe\x65" "\x2f\x06\xef\xc6\x1c\x7a\x29\x5a\x5d\x07\xa9\xfd\x61\xbd\x5b\xfe\x67" "\xac\x5f\x74\xe4\x85\xa6\x6c\x92\x95\x0a\x1b\x46\x02\x57\x08\x4c\xa3" "\xa3\x48\x99\x43\xad\x45\x03\x00\x96\x72\x34\xb4\x87\xfa\x3d\xef\x40" "\x10\xf9\xb7\x15\x19\x65\x62\xeb\xb0\x84\x6b\x7a\xc3\xeb\xa4\x76\x46" "\xaf\x62\x85\x58\x2b\x44\x02\xf6\x4a\xa6\x84\xdf\xf7\xd9\xcf\x81\xfb" "\xe1\xaa\x88\x95\x9f\x79\x06\xf0\x68\x39\x38\x9f\x2a\xd5\x6e\xfb\x50" "\x29\xaf\xe1\xd5\xce\xac\x99\xa3\xe6\x98\xf4\x9f\xf0\xda\x7d\xb0\x6d" "\x7c\x9e\x94\xa8\x77\x3a\x13\xfa\xb9\x3d\xef\x13\x96\x67\xb4\xdc\x6b" "\x74\x1b\xd2\x76\x9d\xa7\x78\x6a\xce\xcb\xe3\x15\xf9\x00\x6b\xb6\xb7" "\x2a\xbe\x5b\xdc\x58\x7d\x8d\x5a\xa8\xf6\x7a\xae\xfe\xf6\x81\x97\xfd" "\x2e\x78\x74\xd9\xb7\xda\x2c\x3a\x56\x18\x72\x0c\x12\xe8\xfc\x31\xdb" "\x3e\x33\x4c\x47\xab\xcb\xf1\x0c\x61\x81\xec\x14\xaf\x4f\x9e\x90\xe1" "\x9a\x35\x36\x0a\x79\x3b\x1e\x9b\x33\x6e\x49\xb3\xed\x67\x56\x8a\x86" "\x0c\xd4\xc2\x98\xf9\x67\xba\x32\x3d\x31\x58\x21\x95\x96\x29\xe5\xb7" "\xaa\xac\x36\x7e\x1d\xdb\x8a\x1c\x5d\x61\x50\x0a\xfa\x69\x33\x1a\x4c" "\x90\x86\x18\x52\xf5\x33\x65\x7b\x28\xb9\x7a\x34\x3b\xc5\x31\xa1\x1f" "\xf6\x34\xb1\x57\xa6\xd8\x59\xa3\x5f\x0d\x2a\x59\x53\x75\xe1\x1a\x32" "\x45\x75\x75\xf1\xd7\x3d\xa0\x33\xbf\x5e\xed\xa1\x23\x37\xb9\xfd\xd4" "\x6b\xce\x19\x2d\x3a\xaa\xa2\x40\xa8\xc6\x5b\xf4\x77\x04\xd6\xaa\x64" "\xa9\x53\x1f\x9d\xe1\x4a\x96\xfc\x9f\xe3\x80\xdb\x35\xdd\x5e\xc5\x23" "\x21\xc6\x7f\xb4\xc1\x8a\xbc\xaf\x22\xfb\xe8\xf6\x02\xed\x20\x12\x32" "\x25\x13\x17\xe1\xa1\xb7\x1e\x1e\x2c\x92\x4a\x92\xd8\x46\x85\xde\x34" "\x8e\xec\x97\xfe\xd9\x54\xb7\xf6\x68\x1d\xdf\x52\x1b\x4e\xe0\x3a\x1a" "\xeb\x2e\x44\x6e\xe2\xa7\xf4\xdf\xa3\x7b\x1c\x53\x83\x11\x39\xfc\x62" "\x4c\x14\xdc\xc4\xd1\x44\xcc\xdf\x75\x8f\xd9\xf3\x44\xb4\xcd\xc1\xdf" "\x70\xf6\xa2\x4f\xa7\x8c\xab\x13\x6c\x91\x2d\x1e\xbf\xfa\x70\x53\xcc" "\xbc\x9b\x94\x45\x76\x22\x36\xdc\xa4\x09\x82\x0f\x73\x83\x70\x11\x7d" "\x5c\x36\x9d\xfc\x50\xfd\x42\x27\x7f\x14\xee\xaf\x29\x11\x0a\xed\xcd" "\x50\x30\x08\xc4\x29\x14\xd0\x4e\x21\x9a\x8b\x6c\x01\xe3\x37\xd0\x47" "\x24\x91\x9b\x07\x15\x7e\x22\x75\xba\x63\x65\xa9\xdb\xa5\xeb\xc8\x01" "\x9b\xd1\xaa\x1b\x86\x68\x02\x3f\x64\xcf\x47\xe1\xb4\x9b\x4f\xbc\xfc" "\x10\xd5\x60\xbb\x74\x40\x5c\x90\x75\x15\x04\xdb\x81\x00\xd8\xa8\xa1" "\xa3\xff\x84\xd9\x8f\x12\x62\xfb\xbd\x6b\x96\x2f\x49\x2b\x95\x31\xa7" "\x41\x1c\x08\xe7\xe5\x6e\xb0\xf8\x38\x07\x5f\x75\x4b\x6a\x39\x5b\x6b" "\x58\xa8\xe4\xc4\x7e\xb4\x6b\xfa\xba\x2a\xc9\x48\x00\xa3\x96\x74\x9d" "\x18\xba\x0e\x62\x19\xf8\xd6\x16\xec\x71\xa1\xe6\x0b\x3b\xcc\x24\xe1" "\x9d\x4a\x20\xdd\xbc\x6a\x87\x1e\x6d\x7e\xfa\x50\xa3\x62\x61\x05\x98" "\xd8\x92\xa5\xad\xec\xbc\xfe\x21\x75\x34\xde\xee\x36\x20\xdf\xc8\x8c" "\x79\x92\xec\x2e\x71\x0e\x08\x3e\xf0\xa5\x0c\x20\x62\x14\x05\xf6\x54" "\x80\x4d\x1a\xf4\xf2\x4d\x22\xb8\xca\x48\xf2\x63\x03\xe6\x96\x91\x27" "\xa7\x4f\x0b\x27\x6a\x56\x24\xc3\xb8\x44\x10\xd4\xd5\xee\x3c\x62\x60" "\x58\x76\xe6\x0a\x88\xdf\x2b\xd6\xe8\xdb\x8c\x7e\x48\x6f\xdb\x45\x21" "\x78\x56\x3e\x7a\xdd\x6b\xc1\x26\xb7\x21\xb9\xef\x8b\x12\x18\x19\x89" "\xb8\x70\x31\x57\x3a\x40\x10\xd8\x8e\x34\xf1\x5a\x23\x44\xe4\x80\x8b" "\x74\xc9\x9a\xd6\x8f\x0c\x2a\xca\x4e\x8d\x50\x43\x97\xc0\x3e\x13\x28" "\xc4\xb1\xec\x43\xfd\x90\x2d\x20\x6c\x3c\xfb\x63\xd7\x54\x1a\xc5\x7f" "\xdb\xc7\x0b\x00\x33\xf8\x75\x14\x28\x61\x01\x23\x1f\xe7\xe7\x96\x68" "\xc8\x02\xe1\xc2\x3d\x61\x54\x0c\xdf\x13\xa5\xe6\x75\xb7\x36\xe2\x21" "\xdd\xc2\x9a\xb7\x47\xd9\xc6\x4f\x62\x13\xf5\x1d\x3c\x1d\xed\x2e\x2b" "\x0e\xfc\x4e\x45\x18\x3d\x90\x46\x8f\x61\xec\x17\x20\xf7\xa0\xb8\x79" "\x47\xe2\xc5\x41\x25\xce\xbe\x65\x63\xee\x44\x15\xd8\x86\xbb\xe8\x69" "\xd1\x7d\x36\x37\x1c\x94\x2c\x11\xdb\x1e\x13\xc1\xdd\x40\xed\x24\xca" "\xba\xf7\xee\x80\xea\xe6\xc4\xdb\x93\x4e\x98\x2d\x96\x19\xd7\x53\xdc" "\xd6\x79\xc5\x65\x0c\xd9\x5d\x21\x58\x2e\x31\xb2\x59\x04\x3a\x0d\x03" "\x37\x1c\xd2\x94\xf4\xcc\x02\x80\x42\xc7\x50\x70\xc9\xb5\x34\xa2\xd7" "\x9f\x16\x4a\xb9\xd7\x73\x29\x57\x95\x28\x0d\x15\x84\xca\x66\x4b\x53" "\xb2\x63\xfe\x2e\x23\x53\x4d\x27\xb0\xd8\x57\x42\xfa\xe8\x06\x1e\x03" "\x18\x77\x95\x12\x9d\xd2\x72\x04\x1c\x6e\xb9\xc1\x0c\x34\x06\xda\x1f" "\x75\x2f\x4c\xa6\x97\xbd\xbd\xdd\x74\x97\x5c\xd4\xdb\xba\x56\x87\xfb" "\x30\xac\x4f\xd5\xd2\x57\x94\x94\xea\xc7\x30\x53\xa6\x38\x21\xa8\x52" "\xcf\x41\xa8\x0f\x66\x68\x00\x6f\x7e\x1c\x4e\x30\xb4\x8d\x63\x8e\xba" "\xb4\x70\xc5\x58\xd4\x2b\xae\xed\x1a\xdc\x8f\xc7\x1f\x73\xe9\x5f\x3c" "\xa2\x12\xa4\xb0\x09\xb5\x08\xe8\x98\x98\x72\x7f\x80\x56\x85\xe4\xe7" "\x65\x0a\x29\x61\xd6\x2c\x11\x7d\x1e\xe9\x01\x72\x36\xa6\xbf\xfa\x0c" "\x36\xae\x11\xbc\x52\xd3\x46\xc8\x33\x99\xe4\x3c\x42\xcd\xb9\xf4\x43" "\xaa\x30\x71\x09\xa9\x7e\xe6\x6c\xeb\x7a\x29\xee\xb2\xf1\xa2\xbb\x3e" "\xe1\x49\x22\x29\x11\x6d\xb0\x73\x01\xb2\xaa\x41\x26\xae\xe7\x77\x5d" "\xaa\x2d\x0e\xab\x4d\x20\x6f\xae\x11\xb3\xc6\xb5\x65\xdc\xc4\xc7\xb4" "\xdd\x1c\xf2\xab\xec\x81\x15\x0d\x06\x29\x80\x3f\x6e\xb2\x21\xbe\x38" "\x4b\x87\x72\xfe\x6d\x6c\x4f\xa9\x8c\x92\x8a\x9d\x0a\x02\xe9\xff\x8b" "\xb7\xa2\x16\x8d\xbe\xbe\x14\x03\x23\xd9\x3b\xee\x89\x83\xc4\x96\xbc" "\xcf\x75\x2c\x37\x2b\x79\x5a\x34\x93\x62\x4c\xef\xb3\xcf\xeb\x43\x07" "\xbd\x39\x82\x6c\xac\x1e\xa3\xf1\x89\x12\xde\xef\x1b\x8c\x8d\xb3\x0b" "\xc0\x16\x99\x0a\x47\x7b\xc0\xa9\x25\xfb\x36\x45\x3a\x9e\x21\x35\x4b" "\x2d\x7e\x6e\x3d\x4c\xa4\xdd\x20\xf2\x7a\x8d\xb0\x54\x29\xd4\x4b\x7a" "\x48\x53\x65\x19\x1d\xc4\xba\x97\x7a\x81\x59\x58\xfa\xf6\x43\x48\x13" "\xa9\xf4\x04\x60\x54\x76\x3d\xd5\x5d\xbb\x7f\xae\x89\x2b\x74\x6e\x16" "\x9a\xe0\x46\xae\x33\x61\xa9\xf7\x5c\xf6\x22\xb0\x3f\x75\xb1\x63\x3d" "\xa8\x64\x39\x5b\xd1\xc3\xa5\x94\xfa\xb0\xb1\xfb\x37\xf0\x88\xdd\x1f" "\x27\x76\xe2\xb7\x95\xc7\x86\x35\xc2\x02\x6a\x8c\xe7\xff\x40\x96\x8a" "\x19\x60\x78\x60\x49\xa2\x17\xdd\x88\x72\xac\x0c\x01\xf4\xba\xfc\xf2" "\xd3\xd7\x51\xdd\x46\xa5\xe1\xbe\xc0\x05\x40\xa9\xca\x7a\xfc\xa3\xef" "\x37\x57\x5d\x4a\x8b\x12\x91\xd0\x5b\xe9\x49\x13\x09\x28\x90\xa9\xb4" "\xbf\xff\x39\xed\xbf\xf3\x07\xe5\x65\x48\x96\xe7\x92\x28\x77\x7c\x0f" "\x8e\xa4\x6c\x55\xbf\xe1\x9e\x52\x2b\xf4\x57\xab\x4e\x6b\x01\x67\xd7" "\x76\xdb\xcd\x01\x60\x59\x83\x70\xa1\x2c\x4a\x03\xe4\xed\xc8\x2b\x24" "\x5a\x76\x08\x79\x7b\x03\xd4\xed\x89\xdf\xc2\xa5\xbf\x07\xb9\xfc\xb2" "\x51\xfb\x86\x08\x55\x3f\x3b\x37\x74\x81\x87\x17\xa9\xaa\xbe\x6b\x2d" "\xed\x81\x15\x15\xba\x45\x4b\x39\x0a\x60\x65\xbb\xc5\x95\x52\xf3\xbf" "\xe5\x1d\x38\xf1\x39\x79\x2e\x1a\xae\x60\x09\x3a\x7c\x57\x70\xb5\x2a" "\x17\x30\xfe\xb1\x04\x9c\x14\xa7\xd5\x26\x1d\x64\x4f\x6b\x73\x8e\x22" "\xee\x72\xaa\xfa\x42\x2b\xd9\x3f\x61\xe1\xcc\xac\x0a\x5e\xf4\x72\x6c" "\x66\xf6\x1b\xb5\x39\xac\xb9\x37\xbd\x63\xda\x82\xc7\x00\xc0\x86\x0b" "\xe9\x0c\xe5\x62\x1c\xed\x22\xb5\x2b\x63\xd0\x41\x26\x6f\xc2\x58\xfb" "\xfa\x66\x41\xae\xf2\x2e\x97\x80\x4e\x51\x38\xad\x2c\xe4\x40\x5e\xaf" "\x76\xbb\x0a\xcd\x7f\xc6\x1b\x2d\x6d\xe4\xaa\xbc\x5c\x28\xa8\x50\xfc" "\xf2\x19\xcf\xf7\x7c\x97\xd3\xcb\x6b\xec\x00\x67\xc1\x71\xb9\x12\xd1" "\x1d\x82\xc5\x6c\xba\xd5\x6c\x00\x32\xa9\x65\x7d\x4c\xdd\x1e\xac\xac" "\xa5\x3f\x40\xf5\xe3\xfe\x91\x11\x27\xe1\xcd\x30\x78\x13\x51\xf1\x80" "\xe1\x41\x39\x33\xce\xe2\xd4\x6c\xa0\xee\xa3\x1e\xe0\x1f\xe4\xe9\x9a" "\x56\x7e\xdd\x0b\x10\x56\x5d\x47\xb8\x7c\x8a\x48\x36\x61\x43\xe8\x89" "\xe5\x2d\x0f\xf1\x3c\x92\x0a\xea\x09\x2c\x25\x45\xfa\x9b\x70\x56\x20" "\x4f\xec\x15\x65\x49\xd3\xc0\xa9\x97\xbc\x1c\xf4\xa0\x13\x38\x48\x3b" "\xf5\xc6\x9d\x69\x58\xae\x03\x8f\x1c\x3e\x3b\x84\xba\xeb\x2c\x1f\x9e" "\x06\x4c\x07\x50\x60\x2c\x34\xc6\xc4\x83\xc3\x16\x39\x1d\x97\x5f\x94" "\xf2\x1f\x6d\xfe\x74\xe9\x2c\x33\x22\x8b\x40\x8a\x9e\x2b\x9a\xbc\xda" "\x33\xc4\x97\xab\xba\x9c\x48\xa6\x3e\x5c\x8f\x1a\x8d\x0f\x4c\x24\xd3" "\x6a\x44\xe1\x60\x1e\x8a\x09\xe8\xa5\xc7\x17\x9b\xd4\xc4\x4b\x17\xe5" "\x42\xdd\x99\xca\xce\x87\xaa\xb6\x0a\x5e\x53\x32\x5d\x54\x4c\x99\x1b" "\x6f\xa5\xde\xff\xa4\x9f\xd8\x86\x33\x29\x80\xde\xec\xa9\x22\x9c\xb2" "\xf6\x7f\x49\x5a\x7b\x74\x31\x53\x85\x4e\xd8\x1e\x16\x23\xb1\x2d\xbd" "\x65\x51\x2d\x08\xa5\x73\x2f\xee\x2d\xb3\xfb\x45\x5c\xf6\xdf\x5a\x17" "\x01\xa2\xb8\x67\x46\x33\xc6\x79\x21\x62\xdc\x86\xac\x76\xe3\x0d\xa2" "\x25\xb0\x16\x7a\x7e\x70\x4a\xd3\x3b\xa6\x94\xf9\xc9\x02\xaf\xbe\xed" "\x58\xee\xf6\x09\x87\x47\x67\x05\x3f\x59\x41\x4d\x4d\x3e\xcc\xbb\xcd" "\xbc\x7e\xba\x99\x7c\x71\xf9\xb1\xf5\x13\x9b\xb0\x20\xd5\xda\xe1\xdb" "\x6e\x2d\xcf\xbb\x51\xb5\x37\x1b\x08\xbd\xbc\x33\x12\xb0\x5e\xe6\xd8" "\xc0\x3c\x8b\x5a\x7d\x4f\x23\xda\x45\xf2\x76\x39\x4f\x22\x2b\x1a\x0b" "\xdf\x4e\x26\x03\x24\x3c\xdb\xa6\x0e\xe0\x53\x03\x87\xc8\x8b\xb4\x57" "\xca\x99\x32\xf2\x28\x3a\x4d\x55\xbb\x11\x95\xe6\xd3\x25\xed\x93\xf7" "\x14\xe2\x19\x08\xb1\xba\xaf\xa4\x67\xf1\xce\xc7\xfa\x26\xe5\xc3\x84" "\xee\x68\x28\xe7\x79\x78\xbd\x1a\xbd\x01\x4d\xe5\x49\xa5\xe5\x96\x6f" "\x2b\x2f\x4b\xa0\x00\xf9\xd7\x7f\x1a\xbf\xe3\xa6\xc3\x37\xcd\xb8\x52" "\xc1\xec\x59\xf6\x1b\x63\xd5\x43\xf3\x06\x2d\xd2\x61\x6a\x16\x3e\xd7" "\xca\x60\x16\x8b\x03\x47\xb5\xc5\x64\x6a\x67\x8d\xaf\xb4\xc5\x02\xc3" "\x33\xa0\xa4\x8f\x03\x41\xb4\x7f\x5c\x59\x46\xe4\x2e\x57\x1d\xb0\xbf" "\xa0\x68\x2a\x44\x9c\xa6\x4e\x71\xb5\x66\x1a\x84\x29\x75\x18\x23\x99" "\x24\x5c\x6d\xe2\x41\x51\x2c\x67\xac\x91\x8d\x7e\x0c\x5c\xb6\x65\x65" "\x01\x0e\x88\x1b\x83\x33\x56\x7c\xa5\x84\x32\x1e\xad\x1c\x38\x3b\x09" "\x9d\x8b\xf1\xc5\x6d\xac\x08\xcb\x21\x8c\xde\x42\x26\xad\x42\x0d\x6d" "\x63\x13\xf9\xc4\x88\x4d\x63\x94\x72\x23\x04\xfd\xaa\x76\xe6\x1d\xb8" "\xc0\xd5\x4e\xb1\x15\x13\x44\xc4\x1c\xe1\x13\x02\x72\x92\x8e\xec\xb2" "\xf9\xf0\xf2\x3c\x75\x26\x22\x37\x4e\xb1\x22\x3a\x80\xef\xcf\x0b\x93" "\x7d\xff\x7d\x81\x3d\x7b\xe0\x34\x02\x26\xc0\xa7\xb1\x63\x74\x1d\x9a" "\xec\xaf\xcb\x7d\xda\xe5\xa2\x19\x32\x33\x23\xf6\x21\xc8\x02\xbe\x82" "\x39\x9e\x06\xd2\xe1\xcc\x58\x2e\x75\x9f\xfa\x30\x3c\x51\x03\xf8\xa4" "\x4d\x71\x29\xd2\x85\x3b\x02\xe5\x06\xab\xda\x57\xad\x28\x36\xd7\xff" "\x16\xf9\x52\x32\x14\x9f\xbe\xb8\xb6\x2e\x58\x6d\x35\x36\xbb\x4a\xe0" "\x42\xec\xd9\xe2\x5d\x1d\xee\x78\x93\x53\x07\x1f\x9c\x89\xd4\x36\x10" "\x00\xc4\x7b\x76\x35\x56\xe8\x90\x2f\x1f\x25\xcb\xd8\xae\x71\x67\x9e" "\x03\xff\x27\xdb\x0e\xc7\x5e\xee\xe3\xfc\xca\xfc\x7f\xcf\x22\xc3\x77" "\xac\x60\xd3\xc6\x1a\x43\xcb\x53\xab\xf6\x16\x21\x18\xf2\xef\xc8\x6a" "\x5c\xe8\x0e\x69\xa0\x2b\xc1\xdb\x80\x01\x8b\xee\xef\x6d\x56\x79\x41" "\x23\x2e\x44\x12\xa9\x58\xed\x01\x2b\xf7\xa8\x32\xc1\xea\xf6\x81\x34" "\xec\xab\xc4\x92\x7a\xd6\x66\xb3\xd0\xf2\x1d\x4e\x8d\x52\xfa\x37\xe0" "\xa9\x75\x11\x24\xef\xed\x8b\xf4\x75\x44\x29\x91\x38\xa6\xf6\x9d\x89" "\xe2\x95\x67\x7f\x12\x60\x6c\x79\xb7\x24\x51\xc2\x63\xfc\xa3\xee\xc2" "\x2b\xf0\xc4\x7c\x64\x11\x59\xa0\xbb\xfb\x3b\x2b\x03\x15\x4a\xf5\x33" "\xe5\xc0\x6a\x14\x9e\x52\xad\xcf\xae\x31\xbf\xc5\x5f\x30\x06\x4a\x89" "\x03\xc8\xd3\xb8\x28\xd2\x75\xa9\x37\xb1\xe4\xad\xff\xa0\x59\x7d\xa5" "\xe2\x53\xb5\x0b\xd7\x1b\x33\xf0\x57\xff\xef\xf0\xb2\xa0\x82\x9b\x3b" "\xf3\x33\x50\xfb\xe6\x7c\x7c\x79\x03\x4f\x80\xd6\x9e\x6a\x21\xbe\x49" "\x5a\x84\x8d\x32\x8f\x41\x6f\x15\x96\x64\x91\xb2\x18\xea\xb3\x90\x54" "\x4e\x39\xd4\x98\x25\x8a\xd8\x0d\xda\xe2\x48\x63\x4c\x84\x5c\xbe\x6f" "\x1c\x1e\x93\xe7\xc2\xb0\x20\x75\x41\x1e\x07\x5f\xe9\x36\xbc\xc7\x5f" "\x4a\x4e\x1a\x36\x87\xcb\x3d\xbb\xb6\x1c\xb3\x1d\xdf\xbb\xc8\x7a\x18" "\x59\xb3\xa4\x8f\xcc\xdd\x8e\x59\x15\xc8\xbf\x4e\xeb\xe8\xf7\x09\x3c" "\xef\x6a\x7a\x91\xc8\x68\x29\x15\xf9\x90\x8c\x85\x4c\x48\x3e\x90\xc9" "\x64\x34\x67\x29\x28\x84\xd2\x84\x13\x4d\xba\xdd\xaf\xdb\xc7\x4d\x94" "\xa5\xf9\x71\x37\x19\xd6\x2b\x4f\x6b\x42\x36\x80\x3d\x21\x01\x81\x84" "\x7c\xa2\x71\x29\xfd\xe2\x64\x15\x68\x95\xf4\xe1\x82\x2e\xf7\x8a\x3b" "\x21\x5e\xf5\x6d\x7e\x36\xd2\xb9\x4c\x93\xf5\xe9\x31\xa0\xd1\x3a\x3a" "\x30\x30\x06\x1c\xe6\x2d\xe5\x95\xee\xcf\x47\xea\xe6\xbf\x69\x85\x30" "\x14\x57\x57\x70\x0d\xf1\x8f\x66\xfd\x72\x61\xa1\x2c\x11\x9d\x66\x79" "\x66\x3b\x3c\x0f\x99\xd1\x70\x5a\xeb\xe6\x6d\xc8\x62\xeb\x21\xcc\xb7" "\x36\x0b\x93\xf5\x45\x07\x14\x9b\x57\x7a\xbf\x52\x11\x13\x99\x1e\x06" "\xf3\x45\xe8\x28\x2f\xdc\x18\xde\x67\x3e\x1c\xa7\xb1\x88\xee\x34\xb1" "\x4f\x37\xf8\x6d\xdc\xf9\x7f\xef\x0b\x91\x3c\x33\xcf\x8e\x5d\x5d\x33" "\x70\x7d\xbc\xdb\xe4\xb2\x7c\xef\x05\x66\x70\x25\x2f\x18\x67\x35\xcd" "\xd0\x2f\x6e\xd6\xbf\xe5\x31\x8a\x70\x4f\x00\xe3\x4f\xfc\x4f\xda\x98" "\x55\xbf\x37\xc5\x1b\xe6\xa7\x42\x3e\x44\xdd\x8a\x98\x88\x3c\x8f\xa8" "\x2c\xa3\x7c\x90\xd6\x81\xfb\x7a\x0d\xb9\x15\x57\x6b\x50\xe4\x9a\xff" "\x54\x5b\x99\xaa\x3a\xa6\x34\x3b\x81\x4b\xa0\xbf\x64\xe5\x3b\x2a\x1e" "\xdc\xae\x22\x31\xbf\x20\xd6\x5e\x4b\xb4\xda\x6d\xc8\x38\x21\x20\xed" "\xe6\x52\xad\xfb\x7c\x30\xa4\x6e\x0e\xe7\x84\xcb\xde\x74\x56\x3d\x83" "\xeb\x8d\x89\xa1\x57\x3f\xa1\x04\xfd\xdc\xa9\xd4\x83\x3c\x49\xdc\x90" "\x4b\xda\x90\x54\x26\xc7\xde\xe3\xe4\x8b\x59\x6c\x8e\xe2\x01\xbe\xa5" "\x7f\xed\xb1\xa0\x64\x94\x57\xea\xac\x3c\x5b\x5f\x45\x19\xaf\x3a\xdb" "\x66\xf1\x0b\x86\x1e\x71\x1c\xd4\x03\x44\x48\x89\x0e\x15\x04\x7c\x2f" "\x89\x02\x58\x82\x68\xb5\x64\x50\x51\xf3\xf3\x96\x8e\xd8\xd6\x30\xe0" "\x50\xcc\xef\x0d\x01\xb6\x1f\xfe\xad\xe5\x1e\x4e\x72\xd8\xfd\x46\xbb" "\xa4\xc2\x00\x09\x39\x6e\x98\x4c\x42\x4d\x17\x49\x34\xa6\x7a\x19\x30" "\x66\x5f\xbe\xa0\x4c\x80\x9e\x7c\xda\x0a\x2c\xdf\xd3\xa1\x4d\x6b\x99" "\xc3\xa8\xd8\xb3\x69\x18\x25\x83\x04\x56\x87\x6f\x18\x8f\xf8\x71\xfc" "\x86\x1e\x4c\x6a\x0c\xa3\x77\xdc\x1f\x0c\xb0\xf9\x29\xf7\xeb\x1f\x5d" "\xa0\x45\xd9\xa5\x88\xa3\x93\x31\x2a\xca\xcc\xa5\xc5\xa3\xb1\x5b\xb1" "\xb4\x88\xb0\x8f\xc4\x0a\xd6\x5a\xe2\xc1\xdf\x18\x7e\xcc\xd8\x37\x75" "\x25\xa8\x1d\x80\xdf\x57\x57\x9a\xe5\x2f\x77\x5f\xb2\xef\xdd\x17\x2a" "\x41\xc3\x70\x30\x0f\xcc\x59\x4c\x26\x35\xdc\xf5\x0e\x9e\xb9\xd3\x4f" "\xa8\xb4\xbb\xfd\x13\x07\x84\x22\xe3\xa7\x73\x4a\x8a\xe6\xcc\x09\xe3" "\x9d\x07\xc7\xee\x19\x83\x8f\x8d\xa4\xcb\xaf\xe4\x16\x2c\x8f\x8d\xc4" "\x4e\x28\x48\x40\xbd\x0a\x5c\x80\xbf\xc6\x57\xc2\x2e\x37\xe0\xd9\xa9" "\x6d\xda\x34\xa5\x1c\xe6\x16\xc9\xcc\xdc\x95\x95\x5c\xf8\x5d\x93\x86" "\x0d\xa9\x02\xab\x30\xf1\x1a\xa3\x33\xea\xcc\x25\xc4\x79\x81\xd8\x63" "\x60\x38\x76\x1e\xd4\xd8\x4f\xcb\xb0\xca\x92\xdd\x2e\x07\x86\x3b\x95" "\x05\xb4\x51\xc3\xc4\x9e\x36\xa1\x72\x52\x75\x78\x12\x30\x49\xff\x2d" "\xc2\xb4\xe2\x58\xa3\xf6\x98\xa1\x2c\xa4\x70\x5a\x6f\xd0\xce\x6b\xc4" "\xf1\x76\x7b\x4d\x9c\x2e\x57\xc9\xed\x13\x88\x52\x79\x64\xac\x96\xff" "\x5e\x4c\xf5\xad\x6f\xdb\x6a\x85\x3b\x43\x90\x5d\xf3\x2a\xf8\xbd\x78" "\x8b\x52\x0f\xd5\x26\xcb\xb9\x51\x95\xa1\xbc\x00\xd6\x54\xcb\x08\x0a" "\xcd\xf6\x79\x38\x51\x7a\x6c\xda\xc7\x41\xd8\x67\x30\x35\x8b\xe1\x64" "\x65\xb4\xe1\x30\x1f\x47\xf6\xa4\x44\xc4\xe8\xd2\x98\x0b\x8b\xd9\x8a" "\x8d\xcd\x66\x17\xcd\xe0\xb2\x87\xe2\xd1\xf5\x91\x67\xb5\xc4\x45\x14" "\x6f\xa4\x97\x28\x11\x1b\x8a\x27\x29\x42\x8c\xab\xd0\x2f\xac\xb8\xfb" "\xdd\xbd\xb2\x76\x96\x80\xf2\x88\x64\x8d\x6b\xaa\xc5\x3e\x0d\x90\x93" "\x35\xda\x3e\x2b\x4c\x13\xeb\xd4\x1f\x32\x82\x0c\x9f\x49\x1e\x91\x24" "\xca\x44\x4a\x05\x32\xf6\x0e\x28\x16\xe1\x5a\x58\x10\xba\xa9\x1f\x64" "\x45\x4a\xa3\x55\xf9\xd3\x62\xc7\xd1\xa4\x61\x56\x16\x89\xd0\x8b\x13" "\x50\xa2\x16\xb6\xf1\xbd\xa5\x7a\xae\x07\x06\xb3\x71\x0a\x1b\x8e\x52" "\xa7\xe3\x08\x4e\x60\x0b\x5e\xe3\xdc\x54\x0b\xba\x0c\x16\x26\x7d\x54" "\x93\x04\xa7\x84\x06\x59\xa3\x2e\x40\x07\x07\x15\xc9\xbb\x91\x27\x92" "\xd4\xa7\xb8\x4f\xa0\x6e\x73\xb9\xdd\xbc\x2f\x06\xc4\xed\xc1\x9d\x25" "\xf5\xa1\x98\xc7\xe3\xfc\x62\x26\x84\x2e\x62\x15\xda\x5d\x82\x6f\xcf" "\x59\x49\x61\x28\x89\xf7\x8e\x9d\xe3\x9d\x4e\x64\xb8\x6b\x70\x33\xb5" "\x71\x7a\x21\xf8\xf2\xb8\x1c\x79\x9a\x3f\xc0\xbf\xe6\xf5\x83\x7b\x25" "\x2e\xef\xa3\x60\xc9\x1a\x61\x48\x29\x6b\xd1\x9d\x50\xa3\x43\xd9\x09" "\xc1\xed\xf5\x26\x1e\x70\xc8\xdf\xb2\xc4\x88\x94\x0c\xf2\x36\x94\x1a" "\xd3\xfd\x01\x24\x7e\x37\x90\x2a\x4b\xbf\xdd\x18\x39\xf7\xc9\x2c\x26" "\x0a\x2c\x49\x40\x22\xfa\xc0\x86\x29\x30\x3c\x8e\x54\x10\x8d\x78\xae" "\x2c\x94\x28\x9c\x7f\x99\x8b\xa3\xb6\x22\xb4\x89\x31\xee\x7c\x17\xc5" "\x9f\x54\x99\xd2\x82\x46\x7a\x1b\x80\x50\xac\xc9\x4a\x0b\x17\xb2\x18" "\x36\xc8\x0b\x69\xf5\x19\xb9\xb0\x77\xd1\x8e\x33\xc0\x27\xfa\xad\x56" "\x2f\xa0\x9f\x2c\xc6\x12\x0f\x8c\xf5\xee\x18\xcf\x7d\xb9\xd7\x29\xff" "\xbb\x9d\xe5\x88\x85\x71\x32\x15\xb7\xae\xbb\x8c\x98\xd9\xfa\x00\x9b" "\xe0\xa9\xef\x3c\xec\xcd\xb2\xb3\x19\x68\xdb\x55\x5b\x26\xc5\xc9\x4e" "\x38\x2d\x06\xeb\xf6\xd3\x56\xe8\xca\xa8\x5d\xef\x58\x13\xdd\x15\x96" "\xd8\x23\x92\x4c\x4f\xb6\x3d\xba\x5b\xd0\x94\xcb\x64\xf2\x04\xd1\xe5" "\x9d\x31\x28\x77\x15\xf8\x31\xa1\xf0\xbe\x95\xd8\x74\x9f\x21\x66\xba" "\x0b\x0b\x6b\x64\xa3\x79\x91\xbe\x1f\xe1\xc1\xe9\x22\x83\x5f\x2d\xa0" "\xc0\x74\xec\x94\x13\x56\x1d\x52\x16\x65\x76\xb1\xc4\xf1\xe1\x8f\x07" "\x8d\xc0\x46\xd1\xc2\x84\x96\x4b\x80\x21\x7b\x55\xc5\x9a\x47\x47\x40" "\xc3\x64\x91\x16\xb3\x3e\x92\x74\x79\x73\x6b\xff\x60\x05\x85\x9c\x7c" "\x00\x59\x8f\x22\xcb\x8e\xca\x38\xaf\x80\x2f\x4c\x86\x83\x6e\x83\x30" "\x49\x2a\xc7\xef\x37\x07\x89\x0a\x8f\xf8\x56\xdc\x77\x86\xed\x76\x9b" "\xba\x75\xb1\x84\x84\xb2\x57\xb3\xb0\x22\xee\xb5\x1a\xa7\x20\x63\x9f" "\x79\xe6\xe6\xbd\x3d\x3c\x9a\x61\xf7\x82\x2a\xbe\x56\x28\x67\xb4\x69" "\x3f\x0b\x2f\x61\x13\x5a\xae\xaa\x51\x0b\x31\x11\x2e\xfe\xec\x48\xd2" "\x60\x2c\x6d\x4f\x2d\xde\xeb\x51\xbb\x03\xab\x18\xc1\x8d\x8e\x12\x7a" "\x37\xe2\x28\x81\xfe\xbc\xa4\x77\x42\xb9\x33\x2d\x3f\x22\x51\x00\x3b" "\x1a\x46\xc4\x0e\xca\x11\x1d\x02\x44\x64\x66\xb6\x69\x56\x8c\x70\x97" "\x1b\xd3\x32\x54\xca\x57\x77\x77\xf1\x26\xf8\x6f\x8a\x36\x65\xf0\x65" "\xb6\x45\xff\x26\x1e\x78\xe0\xf5\x32\xe8\x3a\x81\xb9\x9c\x5d\xe3\x48" "\x8d\xe7\x4c\xa8\x2d\xaa\x0e\x4e\x74\x04\xef\xf9\x11\xae\x95\x5a\xcb" "\xb8\x00\xf9\xf9\x1b\x77\x4e\x47\x2b\xc1\x4a\xa9\x28\x17\xb6\xd8\x58" "\x77\xb1\x86\x1a\x6c\xa9\x2c\x03\xc8\x3b\x6f\x14\x90\x06\x8b\xad\x8e" "\xab\x1f\x58\xc9\xe9\x1e\x10\x29\x68\x3d\xe2\xca\x45\xc9\x99\x66\x96" "\x60\x31\xee\x86\xd8\xc9\x99\x5f\x06\x12\x48\x0e\x2a\x6d\x53\x96\xe8" "\xae\x36\x1d\x6f\xd2\xe2\x45\x57\x61\x3a\x11\x91\xf5\x01\x9d\x4c\x80" "\x78\x62\x80\x13\x51\x2e\xa3\xa5\x95\x32\xef\xff\xa6\xcf\xe4\x97\x0d" "\x28\xd8\xc7\xaa\x8c\x86\x6c\x42\x75\xff\x2b\x0b\x4e\xf1\xa7\xe5\x68" "\x54\xd7\xee\x4b\xc4\x45\x71\x3d\xa9\x34\x9d\x13\xe3\x0a\x4a\x80\x2c" "\xb9\xdb\x2f\x10\x28\x0f\xd9\xea\x04\x3b\x5b\x34\x80\x44\x1e\x8e\xd2" "\xd9\x07\xea\xe1\x25\x9b\xef\xba\x9d\x87\xa0\x4c\xe4\x2b\x00\x10\xc7" "\x0a\xf1\x57\xb9\x0e\x0b\xf7\x25\x49\x85\x2f\xd1\x22\xed\xd6\xcf\x34" "\x75\xf7\x68\x52\xb1\x3b\x4b\xf8\x87\xcf\x32\xe2\x5a\xd3\x4a\xed\x7f" "\xd5\xa6\xe9\x7b\x30\x7f\x9b\x4f\xf1\xc0\x7b\x2b\x55\xbe\xef\x5e\xf3" "\xdd\x96\xee\xb2\xa5\x77\x20\xc1\x82\x09\xd9\x11\xa5\x53\x41\xce\xe6" "\x7e\x6f\xf5\x77\xf7\xac\xab\xa0\x1c\x2c\x96\x90\xb1\x5a\x3b\x8a\xaa" "\x5b\x9d\x73\x41\x96\x46\x7a\x8c\x07\x4b\x2e\xee\xb5\xae\x93\x1d\xdf" "\x3d\xeb\x15\xb1\xa8\xd6\x03\xe7\x21\x25\xc2\xe6\x8a\xd2\x06\xf2\xc4" "\x25\x2a\x65\x9f\x82\x48\xff\x88\x2a\x8e\x54\x12\x6e\xbc\x0c\x77\xa4" "\x61\x01\x07\x22\x72\x46\x0e\x68\x3d\x46\x52\x79\xa3\x69\x5b\xe6\xb6" "\x4c\x9e\xeb\x4a\x57\x6d\x95\xfd\x52\x0b\xe4\x2e\xab\x5c\x95\xcb\xac" "\xe0\xdf\xd8\x0e\x2d\x67\xba\xb9\xf6\x83\xa1\xcc\x9c\x00\x6c\x02\xf0" "\xf9\x0a\x21\xa0\xf5\x12\x18\xc6\x28\xf5\x60\x8f\xbf\x1a\xbc\x79\xaa" "\x63\x45\x2b\xde\x10\x02\x38\x30\x33\x57\x8f\x32\x98\x0e\x37\x79\xa8" "\xed\xeb\x22\x6f\x6d\x3f\x9b\x36\xd8\xf0\x7b\xdd\xd7\x47\x9b\x60\x34" "\x6a\x4b\x4f\xa8\x83\x94\x0e\x3a\xef\x8a\xd8\xd8\x34\xda\xd4\x40\x59" "\x60\xa4\x40\x9a\x62\x55\xe8\x75\x3d\x0c\x0a\xd0\x96\x0f\xf3\xef\x48" "\xce\x93\xfb\xe6\xb1\x65\xe8\x6e\xab\x36\xfc\xcb\x8b\x98\x9f\x5b\x54" "\xe6\xcc\xaa\x19\x74\x9f\xf0\x65\xa0\xa7\x32\xd1\x5c\x41\xb9\x07\x2b" "\xbc\x6f\x07\xe1\xfd\x5a\x3d\xf2\x77\x58\x74\xe4\x6b\x61\xed\x50\x71" "\x4e\x8c\x40\x3f\xbe\xd6\x88\x4e\xc0\x6f\x52\xab\x71\xd2\xc1\x91\xfc" "\xc5\x6a\xc0\xb1\x7b\xa3\xc4\x6d\x2d\xab\x3e\x11\xc7\x93\x83\xbd\x88" "\x67\xff\x14\xb5\xfb\xca\x73\xb9\xae\x59\x4b\x6a\x09\xfb\x73\xa2\xe8" "\xf1\x5a\xee\x59\x15\x0e\x8d\x6d\x3d\xad\x96\x59\x02\x5d\x04\x5b\xbd" "\x1b\x9c\xa2\x57\xc6\x7b\xb7\x8a\xbe\x8f\x7e\xb9\xc8\xb3\xbc\x32\x95" "\x1c\x41\xf7\x39\x0b\xac\xc8\xc7\x05\x9a\x2a\x9b\x07\x8a\xb5\x04\x13" "\x60\x5a\xec\x60\x4e\x46\x66\xa6\xac\xe7\x65\xb0\xe7\xab\x55\x8f\xe6" "\x23\x2f\x27\x03\xd0\x78\x11\xe3\xd0\xac\x5b\xf9\x43\x4e\x87\x87\x6e" "\x99\x25\x0e\xe9\xdb\x65\x27\xa8\xcc\xb4\xa3\xee\x3b\xde\x73\x85\x63" "\xc9\x74\x6f\x94\x1c\xf2\xcd\x7e\xfa\xcd\xbd\x25\x93\xca\xfd\xbe\x51" "\x71\x86\x4b\x29\x82\xb5\x4d\xc5\xa3\x2c\x86\x63\x8c\x0e\x65\x0a\x33" "\x16\x25\x03\x3b\x8d\xd6\x58\x51\x96\x5a\xe7\x91\x88\x03\x49\xd5\xcd" "\x52\x54\x8f\x44\x22\xa3\x17\xf9\x6e\xd7\x9e\x7c\xcf\x3b\xd6\x71\xe6" "\xdc\x70\x36\x5f\x52\x1c\x65\x20\x63\x86\xeb\x1f\x99\x57\x0a\x54\x4d" "\x11\xb3\xd3\x6f\xea\x28\x5f\x8a\x37\x70\xca\x30\x3a\x96\x5a\x0c\x1d" "\x59\x8e\xbe\x36\x96\xe6\x47\xbe\x73\x4c\xcf\x76\x0d\x3d\x47\xde\xc7" "\x5e\x23\x6d\x7a\xc0\x80\x19\xb6\x62\x2a\x7b\x9f\x08\xbc\x8f\x09\x37" "\xab\x75\xe7\x5a\x04\x7a\x73\x86\xbe\xfb\xd5\x6f\xc4\xb2\xf8\x9c\x85" "\x2d\xad\xce\x8d\xf9\x46\xcb\x3f\xaf\xe4\xee\xd2\x67\x8c\xaa\xdf\x1a" "\x91\x3a\xe3\x2b\x2c\x0b\x8a\x37\x98\x4c\xb7\x00\x34\x3c\x5e\x24\x60" "\x9f\x8c\x5d\xde\xff\x5e\x65\x38\x37\xa9\x33\x2a\x41\xc8\xe2\x14\x66" "\xa1\x3d\x79\x22\x41\x25\xd5\xf6\xa4\xfe\xf7\x9b\x5a\xda\xe7\xf4\xab" "\x7d\x35\x1c\x55\x40\x05\x45\xed\xd3\xc0\x06\x37\xbd\x27\x16\x48\x28" "\x92\x5e\x9b\xb5\xd7\x9f\x1f\x1e\x6e\xb3\x27\x0a\xb7\x99\xae\x38\x77" "\x2f\x77\x95\x65\xd9\x2c\x47\x50\x3d\xe6\x95\xf7\xaa\xd7\xdd\xac\xda" "\x6f\x6c\x71\xe7\x55\xb3\x73\x72\x31\xb6\x47\x15\xbf\x07\x84\x9d\x34" "\x66\xe4\xf9\x22\x39\xf7\x33\x43\x6c\xe6\x74\x38\x9b\xd1\x69\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x200000008b40 = 0; *(uint64_t*)0x200000008b48 = 0; *(uint64_t*)0x200000008b50 = 0; *(uint64_t*)0x200000008b58 = 0; *(uint64_t*)0x200000008b60 = 0; *(uint64_t*)0x200000008b68 = 0; *(uint64_t*)0x200000008b70 = 0; *(uint64_t*)0x200000008b78 = 0; *(uint64_t*)0x200000008b80 = 0; *(uint64_t*)0x200000008b88 = 0; *(uint64_t*)0x200000008b90 = 0; *(uint64_t*)0x200000008b98 = 0x200000000340; *(uint32_t*)0x200000000340 = 0xa0; *(uint32_t*)0x200000000344 = 0; *(uint64_t*)0x200000000348 = 0; *(uint64_t*)0x200000000350 = 0x100000000404; *(uint64_t*)0x200000000358 = 0; *(uint64_t*)0x200000000360 = 0xc; *(uint64_t*)0x200000000368 = -1; *(uint32_t*)0x200000000370 = 0; *(uint32_t*)0x200000000374 = 0x800; *(uint64_t*)0x200000000378 = 0; *(uint64_t*)0x200000000380 = -1; *(uint64_t*)0x200000000388 = 0; *(uint64_t*)0x200000000390 = 0; *(uint64_t*)0x200000000398 = 0; *(uint64_t*)0x2000000003a0 = 0; *(uint32_t*)0x2000000003a8 = 0; *(uint32_t*)0x2000000003ac = 0; *(uint32_t*)0x2000000003b0 = 0; *(uint32_t*)0x2000000003b4 = 0xa000; *(uint32_t*)0x2000000003b8 = 0; *(uint32_t*)0x2000000003bc = 0; *(uint32_t*)0x2000000003c0 = 0; *(uint32_t*)0x2000000003c4 = 9; *(uint32_t*)0x2000000003c8 = 0; *(uint32_t*)0x2000000003cc = 0; *(uint64_t*)0x200000008ba0 = 0; *(uint64_t*)0x200000008ba8 = 0; *(uint64_t*)0x200000008bb0 = 0; *(uint64_t*)0x200000008bb8 = 0; *(uint64_t*)0x200000008bc0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x2000000066c0, /*len=*/0x2000, /*res=*/0x200000008b40); break; case 6: // readlink arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // buf: ptr[out, buffer] { // buffer: (DirOut) // } // siz: len = 0x95 (8 bytes) // ] memcpy((void*)0x200000000140, "./file0/file0\000", 14); syscall(__NR_readlink, /*path=*/0x200000000140ul, /*buf=*/0x200000000080ul, /*siz=*/0x95ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }