// https://syzkaller.appspot.com/bug?id=875361b1f5c1084e446fe076864b886023710ee2 // 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[3] = {0xffffffffffffffff, 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 = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x2000000000c0, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000000c0ul, /*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 34 30 30 30 30 2c 75 73 65 // 72 5f 69 64 3d} (length 0x29) // } // 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*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x20000000217e, "%020llu", (long long)0); memcpy((void*)0x200000002192, ",group_id=", 10); sprintf((char*)0x20000000219c, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*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=*/0x20000000e280ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x20000000e288; r[2] = *(uint32_t*)0x20000000e290; } break; case 4: // write$FUSE_BMAP arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_bmap_out]] { // fuse_out_t[fuse_unique, fuse_bmap_out] { // len: len = 0x18 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_bmap_out { // block: int64 = 0x7 (8 bytes) // } // } // } // len: bytesize = 0x18 (8 bytes) // ] *(uint32_t*)0x200000000080 = 0x18; *(uint32_t*)0x200000000084 = 0; *(uint64_t*)0x200000000088 = r[1]; *(uint64_t*)0x200000000090 = 7; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000080ul, /*len=*/0x18ul); break; case 5: // mount$incfs arguments: [ // src: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {69 6e 63 72 65 6d 65 6e 74 61 6c 2d 66 73 00} (length 0xf) // } // flags: mount_flags = 0x0 (8 bytes) // opts: nil // ] memcpy((void*)0x200000000580, "./file0\000", 8); memcpy((void*)0x200000000140, "./file0\000", 8); memcpy((void*)0x200000000780, "incremental-fs\000", 15); syscall(__NR_mount, /*src=*/0x200000000580ul, /*dst=*/0x200000000140ul, /*type=*/0x200000000780ul, /*flags=*/0ul, /*opts=*/0ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {91 58 67 79 ef bd 3a 56 2f 2b a3 13 10 a4 1c 0f 71 7a 84 44 // d7 6d 29 5d 9b 64 b7 a3 ef 33 6f 17 cc 37 28 17 de 52 7e 7e 29 13 9b // 15 9d 6c c2 3a 42 06 88 50 21 46 ce d7 25 44 cb 04 9f bf cc 1d b9 fe // e4 c7 34 65 4b dc 30 11 d9 25 b7 f3 f0 af 86 82 c5 34 f1 5e c9 37 04 // 58 59 c0 28 30 02 9e 8d 3d 2d ce 3e 45 c6 ef c6 ab 0c fa ce e5 41 7c // ac 11 ea 59 b5 a0 e1 c9 65 c0 16 08 20 3c 89 7e 02 1e a6 41 20 86 01 // 73 02 92 2a 0b 80 03 a4 b0 d5 de 28 ae ea f3 64 53 6f 11 ba e6 6c 8e // d7 d4 d0 74 e6 6e c5 e9 56 f8 0c 53 3e 1d fb 4b 5f 95 b0 07 44 82 73 // c8 a8 45 23 8e 0e 36 5b 78 5f ea 09 cf aa 4c 18 e8 32 79 bf 2e b0 89 // 88 1c e2 bb 89 e2 23 74 95 6b c9 a1 42 3c f2 86 ea 32 80 a6 34 8c a2 // 37 bb 17 72 ae 9a b8 c6 02 e6 10 8d ad 1b 05 ca 71 f9 18 70 98 45 77 // fa be 08 f7 ba e4 22 70 31 d9 af 8b b3 76 c9 37 74 97 69 9b 39 4b 43 // 51 a2 34 93 c5 2a 2f 49 78 45 3d d4 ea f9 92 87 80 3a db a1 66 a5 1f // 40 4c 16 b8 3a 49 11 6c 57 99 70 61 ac 01 dd 3b 6e ed 37 e9 6e 7d fe // 5e 22 17 0a 6f 7c ee 00 50 40 e5 29 11 a7 7d fe fb 1f a2 0b 33 e3 48 // 42 34 06 c0 24 c1 b0 df 87 cd c1 2e 52 a8 63 a7 d0 1b 5b ed 68 c2 72 // 14 82 64 ab 1d d5 18 dc 8a 73 33 9c 68 fd ee de 46 54 4e 8d ef 75 2f // 9b 2c 00 12 7c 25 f5 69 14 35 68 8a ba 36 70 11 bb 13 e1 48 28 6b b9 // 89 dc cf 02 93 6c b5 80 32 ad 00 e2 34 ae ff 18 e9 b7 1e 35 24 05 ba // 9a 6a 3e 02 3b e8 04 b0 b2 20 c1 fd 29 6c af b7 50 67 f9 cc 66 a8 be // 9b d6 76 d9 76 87 9f 24 3a ae a9 a3 f0 26 59 18 34 0b df d1 1a 51 20 // bb 01 f9 3b 49 19 b8 2f 57 9f b3 d2 fe df 16 75 56 65 39 41 08 1a be // 5a 94 f5 c5 8a 0b e6 6c 16 e9 eb b6 50 77 37 02 55 e4 d2 67 f2 b2 b7 // 26 a7 9d fa 20 c0 02 08 eb 7c f3 66 21 7f aa 0c 9e ec c3 d2 e1 92 5a // 45 45 63 73 ee 88 cc f6 f5 2f 62 d5 f2 98 9e ec ae 77 0c ce 37 04 85 // 15 dd a2 76 86 38 0e 92 72 c8 12 e9 65 6c 93 da 15 19 58 18 14 48 0c // 05 84 04 fe 36 86 1d 68 ec 04 29 25 8f 54 87 1c fa f0 1d 9f 72 5f aa // d4 35 66 cd ee f9 47 46 72 2a 16 8d 05 6c 7f 13 90 58 f6 e2 2c 4f 9b // d3 35 b4 6b 5b 09 9d 46 37 7d 9b 5a a1 81 97 54 16 40 97 76 69 04 25 // 57 48 29 95 28 e0 53 21 88 9e fe a4 76 06 ef 11 5a 02 90 70 7d cd 7f // 89 16 32 ea 71 91 77 38 e6 8d 07 bf 40 1a b9 bc c2 61 32 89 d9 af 05 // f2 02 93 10 aa 80 05 02 79 d6 7d 9a 10 05 08 da 95 cb 68 d4 a3 f7 b3 // 62 f4 89 be cb 7c ce 30 a5 63 28 ec 43 40 8c e2 75 cb 26 ff e4 b0 e4 // 2f ae 6c 28 41 12 86 1f 61 d5 b4 e6 e9 3d d4 fe 2a 5f 12 ca ad d3 13 // c1 d5 6b 7b 1d 1d 2d 6d 29 19 20 7c 25 e3 f3 09 c3 6a 12 a1 30 76 48 // 46 38 a8 35 82 aa ab a4 f0 aa 9b 8c c7 27 cf e7 47 77 fd 23 e7 87 9f // 66 75 73 fe 77 9c 64 ef 77 2a 54 b5 5e 5c 12 c5 94 39 ea 95 a3 8b bd // 7b 51 aa 08 aa e3 61 58 60 60 2b 9c d1 cf fe 7a 89 46 22 bb 91 38 7a // c8 6d fb b5 d1 88 3e 74 69 e0 f6 bc af bf 1a 4d e8 ea a4 e7 a8 20 5f // 5f 75 79 82 22 14 91 bb ac 46 b8 96 cb ca a1 07 4e 83 e8 0b 35 e1 b6 // 49 97 77 8b 7d 20 eb 19 59 ff a3 ae 5e 85 bc 85 76 b9 44 0b 80 5a d1 // 12 26 dc 73 c4 93 d2 e1 ec b9 3a f6 d1 7e c4 40 50 04 9a 40 b7 69 db // 4e 19 62 93 93 d4 f5 ca 32 55 9c 1d 67 e0 37 4b 66 63 23 38 8e 6a 91 // ff 89 c7 59 50 07 c5 f3 c9 ab 32 08 ed 12 f1 5e 3d b8 2c 1b ed af c0 // 2e dd 37 e2 11 ed 8c 94 a5 cd 1d 5b e5 09 38 dc 7f 17 5e e5 11 e3 1b // 27 59 fb 3d 3d 96 fa b9 a1 84 a7 13 01 65 47 17 7b 5f f3 d4 be ff d7 // 2b d4 6e 95 66 f5 7f c9 3a c0 ba 69 e3 3a f1 b1 c6 6a 24 f1 e9 29 cf // 8e 9a df b7 83 c1 c4 ec ad 83 29 c8 23 91 91 b6 53 3f 26 52 38 73 52 // 15 ec f2 c9 28 b9 33 6e 74 b8 f1 08 8b 1f 45 d0 02 b9 75 a8 32 a1 22 // 3f ac 38 45 2b c8 52 de 53 f8 77 9c 75 aa 07 24 c4 7c b4 6e 2e 8f 7a // 60 de 27 2a 38 3c c2 89 16 f4 05 7d c1 d7 72 71 de 9d 4f c2 35 68 12 // 21 0e c3 09 c8 7a 7d bd 1b e1 a8 43 7e d5 bc f7 9e a8 aa c8 32 fc e4 // 1e 58 35 05 72 71 14 ec bb 64 0a c0 84 ad 40 62 73 6d 5f fa 38 b5 31 // fa e0 8d c2 fe 8c 2b 99 a0 a5 b3 2b 0d 3e fd e2 87 2a 93 f1 db 1e ce // 13 a7 64 4e c0 14 81 eb b9 3b 16 ec b6 c1 6d c1 7e c5 e7 2d 5a 2a 48 // f0 a5 1d 06 8a 40 15 36 2e 45 5a 1b f3 65 98 7f 3c 75 4e be d2 53 3d // d1 22 47 8f 24 16 4a ea db 6e 1f 6a c6 f0 a9 d5 1d f8 70 23 e7 9a 16 // f7 f9 58 5b eb 2b 5d 57 18 f4 67 db 27 26 e0 f9 d7 37 d5 55 c5 e5 73 // 9e 41 8b 4b 32 0e 64 b1 1c 46 2f 7b 70 91 e7 f2 22 8e 8d f8 7b de 20 // 43 66 36 90 13 ac 68 da ad 52 3f fd de 94 51 ac 71 99 49 06 fc d6 30 // 9e 27 e3 92 81 3e 66 c4 1b 4c f4 b0 4c 1f d6 a3 15 5b ba 43 bb d2 1c // 38 34 8c bd f0 f5 28 ed e4 bb e3 b0 59 46 26 5f 12 1e 39 16 ed a6 4f // f9 20 83 39 87 3a dc 8c 1d 27 4c e6 6f 55 3a b3 b1 ad 93 66 d7 6d 1f // 1b 8e 0f b6 a7 b1 84 34 01 fa 26 67 ff 48 8b 0b 21 92 5d 10 ba 29 05 // 04 ed fb 5a 0e 77 f5 42 3b 4c 1b 3b 18 45 f6 9d 6f a2 96 28 b6 90 4d // dd 4c 75 15 3e 88 4e d3 8b 6d b3 77 64 a9 3e 25 ad 87 64 87 a9 73 2f // f0 c8 63 05 d4 c5 71 f7 a2 ff 58 e5 4c fc e6 d3 47 b3 2a ec 9f 04 a3 // c3 0f b7 ce 7b 3a c5 b5 ec 06 8b 75 f2 00 09 21 a0 bf 0d 78 c7 f4 c6 // 53 65 66 4e 85 1c 25 88 45 14 0a 0b 69 b1 cc 66 ed 19 ef b2 15 61 39 // 93 36 91 c1 7a 50 82 d2 6d 27 af a8 53 28 3e 9b 48 8f 91 a5 a7 2f 9d // 3c 90 4b 1d de 37 33 df 3b 9e 6e 1e d4 33 7c 19 8c 21 ab 3d 9e 4b 40 // c8 ef 2c 80 38 93 64 23 19 06 ee 4d ea af 30 43 bf 9e 5a d7 b1 29 49 // da 98 ba c6 b8 f0 0b f4 88 77 f4 45 38 7c 51 3a 0c f5 92 d6 a2 18 c6 // af a1 bb 93 12 d6 a4 0c 7f e8 e0 06 16 96 e0 fe 02 9b 2a 78 c2 43 14 // ca 3d 8d 1b b3 6f 60 bf 39 84 42 2d 7d da 66 c7 d4 4b 26 11 24 19 2e // fb 78 b4 3d a9 a9 2c c8 89 3f f5 c3 51 4c 5b af ee 0e 22 7d a0 62 a5 // 61 32 3b 71 f6 aa 7b aa b6 78 24 1d c8 a8 de 58 b1 cd 85 52 5a 0d 4c // 88 af 66 eb 23 4d a2 1c 89 85 b8 01 2e 76 02 e2 44 c5 54 d8 34 47 38 // c2 cb 63 19 a2 6b 31 55 c9 6a 54 1c d8 b9 25 3e d8 5a 68 ad 84 93 64 // 0f dd ad 33 14 e7 3e 40 a6 ed e1 97 e3 9e 4b 39 11 68 9a 7a 7e 73 a4 // 4b 67 a3 4f 1c 37 ef 28 d9 7c 59 31 b4 ae 2e 70 9e ce 9c 4f 80 ec 52 // 2e 3b cf 48 b9 9a 81 da f0 44 cd 5c a1 d3 cf a6 db d6 74 f8 57 84 b0 // b5 5d 74 a9 2d fa 71 c2 5c a6 56 c3 a9 b1 37 f5 27 7a ba 5f 33 b5 1d // 29 0e b1 5c 94 3c ed 88 63 e1 a8 88 9f ab c9 b7 2e c9 1d b0 b5 c0 e0 // a6 b1 c7 42 c9 dd 3d da b8 d7 be dc 85 3e 04 f7 88 be 5e f5 2a 12 4d // 7a 04 f8 33 9a 77 63 bf 26 5a fd 16 8e 15 48 93 53 70 95 54 c8 1c 22 // 6d 60 e1 fa 08 3f 81 18 5d 1b 01 49 59 56 8a 8c d6 40 66 23 ac c5 d3 // 14 4c bf 88 82 cc fa c7 e0 8a 81 e7 6d de 03 4a 6a 84 1d 89 12 8c 81 // 98 56 bd 99 e4 cc 65 ca 6c c2 c8 61 92 38 07 61 df 78 35 99 6f 1f bc // 26 d7 fe 50 af ef 5d 25 21 4a 04 12 98 ec 77 d8 0c 35 41 5f 29 ca ac // a5 ae 8d c4 b2 da 25 7d 21 dc a7 20 98 e6 d2 5d ef bf e0 7f 4a f5 f3 // 29 b1 56 e0 d6 cf a4 71 e4 c1 eb c1 4f 50 f0 e8 4e 09 e0 58 c3 cb 4c // 8e 41 e4 77 8d 60 26 cc 61 a4 77 91 76 72 93 0e 47 22 ec ab 13 87 cb // 2e 8d e2 34 04 dd e4 d2 ff 64 e3 87 75 57 10 3a ad 43 8a 3c 2b 50 75 // b2 4e 9a 31 d0 d4 6e 4b 8a fd 16 9e 43 ac 96 e0 e8 78 c9 27 34 77 63 // 29 fa 29 06 77 16 f6 09 c2 32 e2 5a 78 a9 1a a0 83 22 e7 90 4f 05 f0 // 81 64 26 cd 6b 5e 7e ed 7a c1 cf 4f 14 66 f6 92 d5 66 b0 bc 99 d9 2c // af b4 03 84 6a 63 f8 49 56 57 05 74 13 8b 03 f9 77 e1 22 11 ba 4a 90 // 2a 4c ff 1f 72 34 cc 2a 93 34 ee 45 52 8e 30 71 17 35 3c c8 59 85 3b // d9 bc d9 f0 5a b6 2c 99 ad 1c 80 bf dd 7c 5a c2 96 91 74 62 9e 6d 54 // 7a e3 cf 00 f5 e5 85 0b 76 5d 76 95 7d 92 e7 95 59 a8 a4 fe 53 55 d8 // b6 76 c4 a8 4b 33 6e 1e 40 94 64 2b 15 b6 de 6e 27 b2 09 a1 69 ff d9 // 20 62 c8 34 9f 9e 7d 09 c6 fa 19 0d cf e6 6a 5b 2a 01 6e 17 47 7a fe // be 2f 81 71 f6 37 1c f8 0d d8 00 56 d4 71 57 83 75 4c 51 04 90 70 5b // 7a 6f a5 eb 20 39 d9 be ca 38 3d f6 27 e9 8e 1e 00 dd f2 1f 4a 66 9c // 5a 43 b5 3f 3a ac e9 77 eb 84 34 bd 6e c2 2b c8 7c d2 3e 57 4a 32 39 // 7d 09 e6 d6 e5 04 7b 89 43 8f 14 39 30 05 b0 b9 50 0e f4 bc 5b af d8 // 35 e8 b4 c5 a6 11 b3 cf ad a7 e4 e9 e8 3c bd 69 6b 40 49 bd de 06 f9 // 9c 12 3a 54 62 72 19 53 00 ca c3 6b 3b 03 60 22 7f f5 80 82 73 5d b4 // bc 5f 8b 73 03 b6 8a ba 91 3c 9a b5 56 0b 1e 0f 99 1e 2b 39 b3 eb ab // e8 2a 63 96 47 43 e9 af 25 f9 40 f8 b4 e0 12 7a a2 11 5c f9 b6 42 17 // f5 52 3e eb f8 a3 47 92 0c 57 81 52 f6 30 08 d7 21 c5 c7 51 91 71 e5 // 49 88 39 f5 a1 ca 26 92 b8 ea f2 c9 8f 61 e7 25 16 b0 70 da 00 d0 1a // 33 d8 09 af 84 64 41 2a ff 2a 03 9e f6 aa 7f 04 69 49 8a 5b 07 cf a6 // 37 ea 09 01 27 50 0c a5 8f 68 3d 27 f5 0e cd d3 e2 b4 3c c6 20 c1 ba // 79 58 16 94 2d a6 47 1f 12 fa 49 56 d3 25 3b ae 2a b2 ba 5f 8c 08 91 // 62 f8 46 0e 00 29 61 08 a2 cc 97 1b e2 b3 b7 18 9d 6c 43 43 7b db 9c // 11 98 9c a8 57 6b cf 2a b0 98 74 81 a9 53 a1 e2 c8 2e f4 24 3e 58 37 // c7 ce 52 85 6a 9c 52 df 86 be 47 94 31 dd 6f 1a 88 bc 54 4f c6 5f 27 // 58 b5 58 d6 bb 58 ba 6c b4 17 ca 9f 9e 6f 1d 2d 90 de 6b dc 24 87 91 // 64 9c 20 5d dd 3c f6 14 e0 ee 52 fb 53 4f ca ef cd fd 5a cb 5a a2 38 // 09 e3 9f 03 84 b9 71 11 18 7f 06 47 16 11 34 22 43 75 1e 8d 43 a3 0c // b0 e7 c7 0b 96 b6 48 45 e8 36 45 39 47 0e 6f db e6 30 04 e7 44 66 a5 // e2 8b 78 ae 43 c8 f0 5b 7e a5 e4 0c 5c 8c 29 c0 9b e8 c9 ea bd 9b c4 // f9 9a 42 08 b5 c9 a5 3d 5a ba ad e7 44 89 e5 3d 04 93 04 09 78 2a 97 // df f6 7b 76 66 c7 83 88 d9 d0 67 58 f5 c3 00 b7 f5 b5 ec 26 f6 c7 85 // 5c e9 e6 9e 1a f2 06 aa 7b 6f f2 9c d4 d7 9a c1 d2 96 1f 30 0f d5 a9 // 7b c3 ff ef c3 11 4d 9e 2f 8a 9c 00 57 76 e5 29 7d cd 9d f6 8d 0e fc // ed 6e 51 14 12 44 35 97 f5 02 15 7f 4c 3d 0b c0 4d 41 d6 b6 1e 68 82 // 13 b2 96 d1 98 c8 df ee 80 68 83 22 54 bf 66 10 1d 4b 30 37 1d a2 c4 // dd ed 11 9f 31 8b 4f b7 f0 ab 4d 14 06 a8 f6 2d 0d 90 97 64 4f dc 42 // 64 d9 59 97 5f d4 62 30 3b f8 b3 d3 6c ca 8a 54 53 0f 0c c5 22 0b e2 // 88 a6 b9 c8 52 37 38 84 34 d0 59 b1 c6 b3 02 d6 54 9e 32 4d 42 13 a4 // b3 3d 09 7f 05 d4 db b6 20 4b fa e9 e7 ea 86 d1 5c f1 4a f1 99 d0 03 // c9 00 21 88 8e a5 14 4b 32 e4 20 a9 2f 49 a3 1d 3a 45 31 69 4d c6 7b // 0f 65 47 e6 db 01 19 42 c1 18 eb b5 33 9f 9e 53 a5 4f d8 5f ae f1 4e // 26 c4 63 c4 69 93 6d 99 93 2d b3 48 d4 4c d7 ee b8 9e 24 d8 d7 aa 5c // 88 e1 6a 95 e5 d3 87 a9 70 ea 15 3f a2 ee 59 34 b8 03 1f 07 ae df 17 // a7 f2 14 cc 72 cd 00 64 82 1d 60 d3 b7 74 61 45 c3 c7 c0 9b 45 53 61 // d7 e9 27 fe 0f 09 8a 6c 1a 8a 4e ee d8 02 31 de 20 8c 38 ff 8b 65 fb // 93 16 ad 7f 21 51 0a e5 26 84 27 14 c1 74 91 e3 5c ae d0 bf 3a a8 a5 // 9e 6c aa 94 2b 46 89 44 dc cd 17 7d a4 4b f2 78 56 30 9d 0e 33 c1 36 // da e0 b5 01 72 4f 38 56 a6 69 a0 3c 3b 0d ba f9 6d f2 a9 d9 80 bc 0c // 4f 78 71 ce 73 7f 73 8e 70 7e 63 27 fd ab 7b dc f0 d3 a3 56 09 50 0d // 6a 34 00 67 78 58 0f b1 e8 8d 81 55 5c bf 3a 85 2c c9 d2 eb 48 6e e7 // ef 20 5c 97 0a 6f 12 59 10 40 9f de a7 18 4a 05 5d 4e e7 ce 68 9e 91 // a6 bc 36 f2 b7 0f 08 a8 3b 94 e5 c4 7b 17 82 27 7d 2e b5 ce 0a b9 96 // b1 cb cf 17 9d 8c 73 8e ee 3c 83 3d 56 29 08 49 70 c7 71 54 6d db 75 // f8 8b d7 e2 b7 20 71 57 54 84 34 9e f9 4e 54 6c 1d bf e0 a2 c2 29 78 // 05 c0 ba b8 ad 58 2f 7c e4 84 79 d2 e2 fc cb 10 62 2d 85 fb b3 4e a0 // f6 32 69 e8 2d 6c db fc 98 b1 0f a3 4d 78 91 65 d9 9f 0d 0f bf 2e b1 // e3 4d 0e 1e 71 23 02 79 86 b8 f8 ad 54 87 54 bb 88 64 35 63 ec 0b 71 // 7f d8 46 bf d1 4c 7b ef 9a 1e 5e 78 81 76 a0 d7 6a b6 17 97 3b 40 82 // 2f ed 19 20 63 0d dd ed 26 20 0e f2 67 1a 41 eb ac 62 4b d3 da 37 2b // e7 9c cd 05 f3 9d f6 ae 38 29 7c 0c 0d 7f 37 df 71 76 be 22 ce c4 af // da 34 cc b5 65 26 9c cc a9 10 5e 11 ad 89 9b 83 44 8a b8 90 8d 88 bf // cd 89 76 5b e2 1f ab 24 19 39 ac 4c 24 5e 54 21 a2 38 1a 34 04 26 04 // 8e 38 7d a3 f1 75 90 7c 20 0c f1 a3 9d bd 22 49 fe a4 96 44 79 29 00 // 7d 0b 63 18 b5 01 b6 f1 a6 03 be 3b ef cf 65 ed 52 3e 8a f0 62 92 82 // 19 73 e1 11 c0 3b 7f 97 e1 09 67 11 c9 76 9b 4c 0b 8e 26 6f e2 73 c1 // 68 88 7d 62 a1 45 1e 05 a2 c3 4f 76 f5 ac 65 f5 ed f4 0d 98 af f0 03 // 5b cb 92 74 ad 4d d2 3f 4e f2 61 13 f6 3e 2f 9e 3e 75 67 8b ab 66 08 // 87 81 11 2a d4 f7 60 00 f2 73 3d f4 29 42 33 7a a8 52 5c 64 2c 21 5b // f5 5f db a1 9d 5e 8f a3 0a dd 69 be 51 6d 38 bd 0c 5d f6 87 be 7b 34 // 18 06 05 7e 0e a1 cd 3e 8f 28 68 b5 a4 dc 84 18 fb bd 5e e2 02 a4 8d // 81 a8 d0 a4 ad c2 65 61 54 3e 03 69 e9 bc 6b d6 3f f5 c2 7a d5 74 d0 // 37 d1 be 83 e7 37 b4 e1 08 a1 95 e5 5e 93 c7 c9 07 f5 48 d7 ee f6 41 // 47 48 82 4b 9c 69 4a 06 b6 4c f5 45 17 6f d0 41 d5 69 56 d7 4b 2d c1 // 4d 5b 75 db c1 27 6c 6e 82 ff 3e 0a 23 15 87 52 8a aa 8f a5 ca 74 8b // 5d ea e2 83 25 fa 8d ad b0 ec 35 94 18 72 24 0a d3 e9 a7 64 a4 08 0f // 94 91 f1 89 94 fd 0d 0e 49 5a 04 66 55 cb 97 99 a2 4a 1f 04 6e cf a0 // 4c 45 68 48 69 cd 51 d6 f9 b8 96 f7 e4 15 fd 39 c9 f2 b4 61 47 30 95 // ac a6 a3 6d ec 70 2b ed 08 9b 69 9b e7 a4 04 16 41 ea 84 e9 1f 46 aa // f6 d4 ca 00 f5 1c fc 1a aa a7 0a fe b5 db 02 db 19 99 a3 8b c4 d7 3b // 33 1d 68 27 71 47 e1 18 69 22 cd 0a 5d 60 72 cd bb 80 a6 8f 93 59 2a // f5 0a 7c 4f 83 ac 9f 92 36 56 2e f2 75 ba b5 25 04 a2 00 ad ea e9 02 // 4a 1f 04 fa c4 8b dc b6 55 9a 0f ed 00 28 2a 39 de 9b 56 9d 25 f6 49 // 36 13 9b 04 6f 63 fd 32 1a cc 09 7a f4 b1 18 c4 f3 5c 2d c8 e4 26 46 // d8 a2 bf 19 17 6b 8e a1 57 dd 6b 0d 88 d9 42 c4 c6 89 14 9f bf ca f8 // ec 74 d4 01 1e 4e 87 35 c8 46 5d ea 62 39 77 33 c4 71 4d d0 40 c2 90 // 1d ac d4 ce b9 56 d9 76 36 0a b1 55 58 7e 48 86 54 02 9d 07 6a f8 61 // ba 04 6c 03 6c d2 bb f9 43 f2 a6 f0 c0 39 10 44 31 4e 18 6d a5 3f 7a // 24 17 42 97 c7 da e7 8d 26 23 55 0e f4 84 69 ca 28 88 09 4d 98 6a c6 // 9d 8b 70 8a f0 2d bc bc fc 72 4e 7a dc bb 67 44 dd 68 3d 87 50 44 60 // 90 36 6f d0 84 4d 14 92 9c 65 b0 68 2e f6 eb 3b da c6 4a 68 32 c4 9a // 66 e3 6f 3b a5 9a 0a 9c 81 cf 4e e3 ec da d5 22 23 a6 e1 a2 45 e7 df // c3 bd 52 6f 3f d9 04 41 cc c6 e9 ef 30 5d c6 c4 94 36 1c 79 6c ff 28 // b4 79 99 94 a0 cf 05 1f f5 d0 85 48 9a b1 ef d2 ed 39 db 63 5d 15 43 // 2a 62 c9 51 1e e1 45 76 f6 87 a9 3b 64 b3 93 b7 9d 17 69 86 2a 3c dd // 37 e9 0c 4f 8e 7f f8 2b d5 e9 11 f4 66 91 ba bc 6b ee 04 af 97 f3 2d // 51 d4 78 eb 98 de 9b e7 42 a1 df 48 42 d5 2b e1 de 4f f2 61 a1 18 b0 // 85 36 49 45 94 ab 49 02 78 e3 e2 48 d8 72 33 b2 32 94 01 94 86 95 91 // 3a 90 96 cf 38 b0 e0 26 25 8f 50 07 0a 3b 3a 51 e8 72 99 f6 9f 63 ff // cb 36 d9 b0 42 1a e1 9c 31 07 81 92 8f cd b8 63 73 5c 8b 6f 6a 2f b2 // 68 09 af 51 e4 fd 6e 82 cf 42 e0 df a6 e9 b0 76 bb 1b 69 05 a7 af 85 // 11 43 b8 67 4c a1 3c c2 05 3a a5 49 c7 03 63 ca 35 00 30 95 25 4f e1 // f4 8e 20 fe 39 01 0a b8 77 c3 87 dc c4 6e c3 57 76 7c 1e 9f cc 38 3b // d3 3e 3c 54 bb 85 3e 1e 84 38 20 3d 6b 8d 74 33 78 3e 9f 76 bb a2 68 // 6c 78 a2 f7 f5 2d 0d 19 85 dc 04 6a 32 81 a6 48 67 74 9b 91 50 61 3e // 99 b6 10 ef a4 de f0 cc f2 90 86 ba d3 e3 55 d8 7e 08 bd 4d 29 18 a5 // 53 f9 fb df 19 82 4c 81 76 97 d0 fc df 0e 5f 4a 9f 94 5f ab 42 46 6c // c2 5b 3b 79 d1 64 7d 6b 1f 5b 9b 36 0c ef 9b a3 42 cd 4a 5c 43 49 32 // a1 bd e2 3e e7 f0 8c c8 4a 8c f4 30 dc a2 db cf 17 f7 b2 c0 73 37 71 // 6f cd 8a e5 58 15 09 d8 91 0e 85 cf b7 a1 f8 ff c6 a1 62 9a b4 84 47 // e8 fc a4 3c 53 ed 74 76 4e e2 dd fa 6b 00 de 27 98 f6 40 6a d8 be b3 // f2 06 e1 6a b0 d1 c7 4c 8b 7b 42 8c 65 92 aa 13 a5 33 76 0f 53 6b e8 // c8 18 c2 df cf a0 82 a2 70 c3 96 85 44 75 71 43 7b dd ba 36 67 9b 36 // b0 d2 f5 3f 5f 0d a4 9d aa 81 08 cf ce a2 d2 eb 8f 69 42 88 e4 4e 59 // 0e 7e 32 58 d1 e4 68 c6 57 e9 86 05 ef 3d 56 06 2d f3 5b 90 e1 33 c1 // be 86 ad c6 28 d1 d0 8a 04 08 19 e4 bd 69 6c 5b 32 b7 14 b6 e7 54 5e // 5e 39 0a 76 56 0c 2d 48 ca c2 b8 16 18 eb c1 b0 24 ec c6 ef 01 e5 06 // db df b8 b7 16 5a c3 4b 54 39 c6 c4 13 23 a2 c7 e9 aa e8 f4 37 e6 d5 // b4 3c a5 f3 63 19 dc b8 db a2 cc b1 b9 df 6d 64 ec 0e 0d 55 b2 8b 98 // 40 96 f9 b4 88 98 c8 9b 5f c1 68 35 38 e2 9d 4f 7b 39 1a b8 e9 57 94 // 2e ba de c5 a4 ad ea 0a 73 06 04 a5 20 35 d8 f7 36 69 be 1b ab 31 3d // 78 10 b3 21 41 18 39 c2 ad ef 8b 05 4f 54 20 5b c5 89 6e 59 dc 62 35 // f7 10 59 63 7b fe 79 d1 28 bc d4 56 13 30 d5 dc 52 1b 60 92 3a 49 b6 // 96 91 af 17 3e ec 1d 5a 3d eb c8 f4 59 39 de bf 11 cb 4e ca 10 f1 34 // 13 82 d2 17 a4 04 4a 2c 16 7f 05 07 12 b3 8e 9a 5d 8c 2b 87 b7 dc 31 // 7a b1 f5 17 37 a1 21 6b ce 99 d8 ac 9b d1 83 23 24 16 56 db a1 0d 00 // 11 35 58 c5 52 c7 54 b6 b7 58 46 05 57 11 f0 ca 12 b1 76 a1 9e 2d 97 // 77 9e 8d eb f3 09 b0 c8 6a cf ac 24 c3 7e 59 51 78 ed 8e 03 a8 01 0e // d9 21 41 2d 78 60 e7 08 f7 0c 7a e2 ae 5e ed d0 a7 78 a8 8e b8 a4 27 // 7a 6e d1 3f 6a f4 06 fe ff e7 62 df 1c a5 2f 26 13 bc 1e f6 f1 a8 32 // 68 97 91 1b 57 51 5d 6f 19 26 57 10 5b e2 3b 1a 6f 37 68 9d aa c8 7b // 5b d1 ff 3c 36 f1 11 c9 73 d1 98 ae 3f 1f 17 0b 84 dc e8 1b e8 8d c1 // 1a 7c 2c f2 c7 c0 2f 1d 4a 74 2f d3 d6 4f ec 0b 9d 22 c9 0d 74 ef c2 // 80 8c b7 cd 21 58 31 d2 72 11 b0 5b d4 97 ee ec c5 fb be d0 2e 1c 48 // fe 1f 40 47 1b 84 00 1e 89 b5 ee b8 1a 39 0b ec 5b 84 d5 aa c6 6d 51 // f2 0d 04 14 0c fd 5e ff 66 c8 07 68 a5 69 e1 58 a2 a1 ff b9 e3 39 73 // 10 a3 ca eb 8f b1 34 8a 4e fa b0 32 d7 b0 7a 9f fe 05 be 0f 75 1c f6 // f5 5e 3a 18 ac 39 72 96 5f 8d d8 65 8e d5 e8 1d 27 2c 89 42 9d 9a ea // 70 65 6c 87 2c c6 ab b1 ee 1f 29 b3 a9 e2 51 f9 44 0e f0 2e fc e3 03 // 5c 36 84 8d 83 a1 36 47 5b 73 51 4f 91 d8 fa 33 a1 53 83 16 a9 ef e3 // 00 64 ef 50 4a 7f f1 c9 3c bc dc 20 29 79 5d 11 55 0f 8d ae 80 5d 0f // 95 70 21 f9 5a 8f c8 96 a0 db 2c dc ed 3b 8d ef 80 f5 b0 4c 4c 54 fa // 87 b3 84 15 83 d0 0d ac 6e ba 1c 46 91 c6 44 96 e5 75 8b 33 71 e9 eb // fd e6 15 fe 90 62 d3 7e b5 1a ff d0 c2 9b 36 ab 67 3d c6 87 df 90 50 // 95 8f aa d9 05 3e ac 15 a9 8b 8c 91 ff 00 3b a6 c6 4f 92 8e 31 45 96 // 3a 86 45 3f df c8 c4 3c f4 15 2d e8 a0 4d 94 86 6b 8e dd b1 33 57 22 // e5 6b ff 39 39 42 9f 45 4d 48 f3 e9 b2 00 31 c0 b5 39 74 56 97 2e 3a // ed 04 33 c8 be 81 74 38 a5 1d 7a 94 79 e4 b9 39 7c 90 28 fe 15 f2 1f // 0c ea 77 be f9 a8 d7 13 67 cf c0 d3 03 79 03 38 e0 9d d9 cb 4c 72 6b // ed 88 8b 8d f6 f2 c7 21 1c 25 66 97 34 66 19 a6 9c db 86 b3 64 be a6 // 66 ec d8 77 00 b8 30 1b e7 bd 64 23 10 e8 12 3b 5a 13 62 08 64 49 38 // 1b 1d fe c2 73 e2 2a 2d 80 0c 8a f0 4a d9 f4 a4 81 77 89 bb ac ff c1 // d4 6e a4 08 1f 17 5d ea 20 3b af b5 d6 a7 d7 e2 64 38 b5 56 9b c8 32 // ea 24 a1 7a 0c 42 79 59 74 64 d9 1b db 74 ff 60 14 b6 24 a7 ab 76 03 // 6e d5 49 fb 3b 72 62 1d 54 6b e7 85 c3 5e d6 73 3b 69 f6 65 e0 95 74 // ec 60 0a 4b 26 43 d3 a3 f8 3d 09 08 eb d1 31 cd 85 de 78 b2 74 ac 4f // 09 2c 52 68 34 9f 7c 34 c4 67 97 cd c1 1d a1 ef fe 4b 6c ee 4b e1 28 // 7a fa 37 fc a5 91 c0 f5 63 fc 1f 94 c3 a2 7f ef 7b a7 29 bb 93 ab 1f // 51 44 c6 7b 2e 69 31 80 aa cc 7d 5e b3 7c fa a3 74 e2 a2 69 c0 db 83 // b4 ca 1e 96 02 b3 92 69 56 f9 70 71 06 9d e8 5a d0 87 04 cf 68 bf 0e // ac e6 6d d3 d2 38 fd dd 1c 01 98 44 7f fc 22 da e9 d5 27 59 a6 a3 c4 // 98 e3 4e 4c f7 c7 eb d4 e9 27 74 1d bb a9 d8 e4 b2 ca 87 ad ce 91 42 // 59 58 5b d1 1a a1 a1 9e 97 20 8b dd 26 e9 c4 97 93 b2 44 e8 4e f5 ae // 3d 13 e0 30 ec 8f 81 a6 e6 40 37 2f bc 2d b1 fb 52 0c 8d 9a 3a fc 79 // f0 3d 3f 8a 73 62 d9 49 a0 47 0d 44 69 90 ff 61 08 89 e7 5c 9d ce 84 // cb 05 86 88 49 a2 61 bc 1e 38 ab 84 ee 98 57 5b ee 07 ea 54 bd 67 21 // f5 6f 14 b5 a0 6a 14 d7 69 c3 c3 c5 c3 85 e9 e8 2e 1c 52 50 0c 8a 84 // a8 37 98 e3 31 a6 be 67 17 81 42 53 c6 e0 6e 41 49 15 87 7b e5 19 8d // f5 24 20 72 e4 10 b4 ec c8 48 d1 25 05 82 1c 7a 9a b9 9b 44 c0 8b fe // 40 3b 77 35 80 96 6d 09 7f c1 89 95 ed 0b 0a fc 39 48 c6 1e 22 07 62 // b2 da d0 6e 47 32 ac 0e ae 48 0c a4 7d 7a 21 4f 7e 6a 66 0f 46 c9 1f // d2 a8 79 e2 fb e5 2b b6 07 41 24 2e 99 b0 4f c9 0b 5c d4 3b 95 87 bb // 67 58 a3 8b ba cd 35 f0 67 64 68 21 14 23 17 c6 9f f4 ec b8 82 95 4e // 7e b8 7c 25 48 3f be a2 57 a8 ad 0c ad 71 4c fc e6 74 af bc ed d1 40 // 8b 54 1d 31 c7 95 36 7e fc 33 d4 3b 55 8d 5b 1b fc b5 c4 6e 10 16 59 // 34 24 70 1f 80 b1 8c aa 9a aa b6 3c 88 49 ff 55 bb 56 21 e0 88 72 a5 // a3 1a fe b4 cf 53 ac cc ea d0 7d d7 d9 08 42 17 77 85 8b e8 ee 15 6e // 9b 84 fc 75 1f 27 9c f4 bc 0a b5 56 1e 62 ea 14 81 3d 73 ac e5 b9 ed // aa 45 ec 8c 60 25 70 c3 87 98 f4 8d f1 4e 34 b0 3a 2c c5 33 5e 0e 40 // ba 13 0b f6 1d 6d 1d 0a 86 b0 04 10 bb 55 57 00 d4 59 7e 67 11 00 94 // 72 45 25 6b 10 6f f4 47 28 73 57 65 75 d6 2c fe 61 15 f7 e6 c6 fe d6 // 0c f4 d2 d6 ff e5 a1 1e 09 d9 6b 15 48 60 8b 99 c1 1a 45 6b ba c5 a2 // a0 15 b7 8a 86 61 bd b8 f3 86 a6 73 b7 b3 0a e3 43 0b 31 b6 a0 69 97 // 83 eb e3 76 22 f5 8c 05 56 13 aa 87 c5 b1 ee 94 31 f8 83 da fc 1c 46 // 0a aa 48 dc 19 22 f8 13 41 65 68 de 41 cd 5d 1d 39 2c 62 cc dc 6b f8 // 1f ec b4 a0 45 c1 69 88 90 62 3b 6b 92 e8 27 41 25 44 cb b0 fc 5a bb // 1a 21 66 bd 83 cc 9b 93 49 02 74 c8 ee ce ed c2 4c 2d 18 f2 78 a4 6c // 41 5a 9b 62 d1 f3 51 59 01 21 2d 4d a1 b3 1d 0d b4 71 99 1a c0 d5 a7 // 8d b4 06 77 54 98 9e 0e 19 32 61 9e e9 92 26 2c 87 86 36 fa 78 ab e6 // 39 b7 bb 4f 38 a5 58 ab 04 5b 75 ca 45 6d cd f5 53 cc fa 25 d9 02 1a // 3d 5c 78 7d 50 21 d2 f0 07 e1 8c 73 3a ae 8e 9e 7d fe 55 4e fe 7d 9b // f6 7f 75 a6 f2 e2 4e d2 94 86 5a de 89 1e fc e0 24 2f 38 3f f6 34 bd // c3 6c 5e fc 32 7d 31 bf 87 6a 45 40 b4 02 7f 0c bd 30 c2 99 d2 b7 58 // c0 e8 14 bd 70 59 e5 f6 99 f1 98 24 7c f2 c1 04 d3 d2 47 e4 f3 db 97 // f9 c7 aa d2 3f 6f 6c bf 00 ad d7 2a 56 28 1c e5 a2 68 b2 68 a9 f0 65 // 92 9c 90 46 a1 9b d4 36 85 05 ec 66 ca b2 8e f1 e3 7c dd cf a0 97 54 // e7 16 5c 40 d9 60 87 6f 40 f4 a7 2d 8c 81 5e 0e da 8b b4 05 c3 69 2e // c1 94 3f d3 ef a0 a9 05 8a 65 91 a1 23 21 2a f6 67 04 9b df 48 bb 17 // 0d 4c d8 f8 68 85 97 fb 83 56 27 91 4d 07 fa 4d e2 df 09 d5 63 6e be // 7a 98 92 45 46 b9 a3 c2 9c 20 6b 99 32 fd b1 58 bc 18 7d 55 9a 62 77 // c3 50 7f 13 bd d5 20 33 de 75 e6 44 5e 4f 1b 6c 79 75 df bb 75 0c 48 // aa 54 a1 0e 70 73 6b 8b 24 79 92 3d 14 d3 7e 87 cf 74 ad d0 7a e4 c1 // 7c a6 dd 29 12 e7 6a fe 19 de c8 8d 52 4d 52 02 1b e9 4d 18 ce 58 7e // e9 0a 5a d3 5e 7d 75 70 4c 24 a3 f9 55 43 56 d5 34 b3 3f 73 19 8a c0 // e6 46 fe 6f 32 33 50 ff 2e 5e 47 6c 98 1e 55 33 5c 59 50 4c 4d d9 63 // f1 21 94 12 bb cc 50 a6 65 37 06 cc fb f0 40 64 ef 79 8c 9c 09 83 00 // 2a 40 43 c6 3e 67 be d7 bf c8 6e 41 51 b3 d7 a7 b0 d2 64 bd f8 12 67 // 72 a0 fc e9 2d 6b cc eb 3d d6 a6 61 c8 e3 62 7e ed a9 71 bf fc 5f bd // cc 73 22 a2 b5 ac af 6d cf 2d 96 16 99 61 ec 71 bd b7 ef d4 34 4b f3 // de d2 e3 b4 36 41 05 fa 38 a7 0d 0e 6c 89 fa 28 e5 9f ce c1 95 12 89 // e6 fd b6 8f 7f 5e 53 43 d7 58 b1 43 2a fc 02 01 e8 a4 d4 26 59 da 60 // a2 64 f3 d0 25 68 fc d6 92 51 e9 66 f9 02 d9 e6 dd 2a c4 b2 2f e3 68 // 3a ff fb 65 fe 8f 71 41 ff 78 71 82 2a fd 41 7a 4f bf 0f bc 73 42 6f // fc 32 bf 98 a4 16 f1 36 aa 56 2e 19 ea a1 68 fe 2a 7b 06 ef ca 48 90 // 46 20 9c dc 98 33 9f 9e 35 e0 02 58 79 6f 82 ec 27 e7 8a e0 87 f3 ed // fa 8b 04 fb a7 47 9d 4f e0 8f fa 11 25 6d 58 97 1f 1d e5 35 b1 8c 6c // 3c 28 86 1d f9 54 38 4a 86 d6 7a cd b0 ad 7b 23 3d 55 bb ef 65 5c 42 // a1 5a 49 4f fc b4 35 83 68 f1 6f b5 0b e1 5c da 6e 9d 0a 5a 08 ca 62 // c2 1e 8b ed 10 ff be a3 ff 14 1f 35 a3 e2 4f 95 7c 7f 7d ac b3 54 ff // 69 39 29 fc ad d6 a8 5e b9 88 cb 76 3c 5e 02 57 b6 95 50 55 f1 ef 14 // 63 b9 80 81 b4 b3 20 72 ae 92 28 97 44 fd 26 5b 94 35 f8 ca 08 28 0c // d0 1c e3 6d ad a1 50 fd 74 ff 26 8b 6e 87 3a a3 f7 1b 18 75 4d c8 68 // 1e 70 41 cf 20 a6 f8 48 97 12 12 5f 42 c1 05 5c 96 9a ce 07 cf f0 74 // 2f 33 43 87 8a 97 15 52 94 ba 97 19 ba cc ca 6d b7 b9 48 f9 dc 22 1d // 8f f4 f6 76 dd df c1 2c 99 38 4a 1a 72 b7 44 a7 b8 f7 99 96 8d 7f c6 // 93 f2 f9 d1 3f 7f b9 9d d8 65 39 fb 44 71 35 a9 b1 66 68 fb e0 52 99 // 8d f0 f0 b7 1b 8a 7a 64 cf 3c bf 01 ff e5 bd aa 13 66 68 d4 3e e9 54 // 17 13 c1 12 2e 9b 05 07 5a d0 c1 f9 a6 8f 91 51 c1 d5 05 fe 7a 3d 5a // 9b 80 23 ac f7 57 51 5f 8f 2d 53 58 4c 50 3c 25 ee 7e 3a 0b 2e ad 97 // a1 fe cf 1f d0 81 bf c8 34 f4 eb b7 ad cc 1a 80 cb 55 ee 05 bb 74 cf // 44 e5 33 72 e2 72 2d aa f6 8a 29 4e 04 af b3 cd ab e2 b2 47 d6 d2 48 // 52 e1 33 02 ae 05 d6 a5 d9 2e 7f 97 69 72 62 a0 fc 57 26 1a 30 b4 71 // c1 19 a2 9a fe 4a 9b ac 97 6e 3e 6a 21 d3 9d b7 a1 c8 f0 7a 12 6d 97 // 45 55 51 22 62 32 f8 38 f2 e1 27 37 8d 24 86 e4 60 8a 9f 0e 80 38 24 // 31 9f 94 a1 ba 57 0e 71 1c 0e 34 27 fe 4c 47 7d 75 9f 1d 0a 45 cd a4 // 74 fc 55 cc 42 68 ef e2 0c 98 9e ae 22 ee fa 4e f4 15 c9 2a 9e 61 7f // 70 05 c4 60 fa 5b cd 5c a3 59 b5 fb 37 37 55 ec d9 65 d8 77 d7 1d f5 // d3 41 67 5e 72 ff be 13 5b e6 d5 29 79 d7 cf 65 d2 72 a4 82 f3 ea f2 // 91 02 67 a4 29 81 6b a2 69 3a e4 b9 0f 12 f5 da 15 3e 61 c5 9a 3e be // 54 a8 ea c4 17 17 43 04 69 a2 c1 50 ea 65 ec f7 35 24 93 89 b4 6b c5 // 15 f5 81 cd 65 7f f7 9c e9 93 70 d8 01 87 b2 d9 a9 64 8d 99 fa 77 3e // a1 bc a8 a7 52 14 7c df a4 a7 57 1f 7c 72 9c 8b 54 9b 04 ca 56 0b a1 // ca 79 92 4b 8f 2b 3b b5 ba 41 d7 3a ea a5 36 eb 91 5c a9 c3 20 91 e0 // 7d d2 43 2b 60 c9 93 db d9 0b cc ac f0 f8 0b 5c 9e 98 a5 e1 77 24 84 // f6 d8 b8 39 b6 f2 76 08 cc e4 f2 29 a4 b2 c7 af 1d 11 82 b7 7b f9 34 // 71 f7 ae 77 b5 9e 95 7b 37 f7 5e b0 e1 0e 61 48 6c 39 c0 f0 a8 db f2 // a4 11 0e a3 c2 71 00 24 3b 62 05 c7 fe 2a 53 3e 7c f4 5f cd 0c 40 53 // f2 9e fd 25 db d7 a1 c7 ba f2 0a de bc a1 b6 19 28 13 61 a6 fb 74 4b // 9b 9e 52 e8 74 18 a6 7d 63 56 a7 97 bc fa 0c d0 c0 6f 2f 08 32 83 29 // 63 ce 96 59 e2 63 b6 c5 9d a9 0a 12 ed 5d 0a b9 d4 88 a4 89 aa bd 34 // 6f 96 39 25 eb 62 16 06 d6 9f 06 eb 50 f2 1d 23 f1 34 76 08 6e 1b a2 // 09 be cf 3b 9d ff 30 41 17 7d 58 e5 c8 74 a3 4c 26 8d d0 ff 10 3a f2 // 03 0f 30 5d 05 e5 73 c3 72 8f 78 a2 91 c5 ee 07 fd c9 b4 fe a2 bb 8d // 64 fc 28 e2 47 79 e6 40 74 93 86 5e 9e 83 36 09 d2 b1 db 62 c4 20 21 // dc e0 ed 10 bb b9 bb 15 94 85 26 5a 98 89 b4 fa 22 b0 be 34 d6 1e 93 // 68 86 b8 12 16 e5 3a 7a 43 91 f7 da 7b 6e 19 65 a9 ab 18 6f ae 86 85 // 54 36 be cb f7 d1 9f 66 f8 e9 98 fb 22 00 84 b0 61 71 83 5d bf fc 5e // 2b 83 4a 77 2e 7e cd 30 f8 33 ef 94 4a 1b 3f 96 96 82 0a 72 3b 7b 80 // 06 63 6d 57 4b 56 92 ba 38 c0 43 f6 d8 7b 3f fb 79 a3 ae 91 5c bf d0 // c2 92 78 69 b8 35 04 78 76 01 f7 07 3c 8a 45 59 de ee 55 73 d2 2c 77 // 6f 59 79 31 1d 72 d6 e0 bc ee 99 a0 72 7a c7 3d 79 4e 92 5e 8a cc e2 // a0 5f d8 55 e3 a8 ef d7 b6 61 59 5f 85 17 f1 94 6c b7 55 d3 1e b8 27 // 20 39 57 2b d0 00 3d} (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 = 0x90 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x5 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x2 (8 bytes) // generation: int64 = 0x0 (8 bytes) // entry_valid: int64 = 0x5 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0x3ff (4 bytes) // attr_valid_nsec: int32 = 0xef (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x401 (8 bytes) // blocks: int64 = 0x9 (8 bytes) // atime: int64 = 0x6 (8 bytes) // mtime: int64 = 0x8 (8 bytes) // ctime: int64 = 0x8000000000000001 (8 bytes) // atimensec: int32 = 0x100 (4 bytes) // mtimensec: int32 = 0xffffff97 (4 bytes) // ctimensec: int32 = 0x1 (4 bytes) // mode: fuse_mode = 0xc000 (4 bytes) // nlink: int32 = 0xa (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x5 (4 bytes) // blksize: int32 = 0x8 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x2000000021c0, "\x91\x58\x67\x79\xef\xbd\x3a\x56\x2f\x2b\xa3\x13\x10\xa4\x1c\x0f\x71" "\x7a\x84\x44\xd7\x6d\x29\x5d\x9b\x64\xb7\xa3\xef\x33\x6f\x17\xcc\x37" "\x28\x17\xde\x52\x7e\x7e\x29\x13\x9b\x15\x9d\x6c\xc2\x3a\x42\x06\x88" "\x50\x21\x46\xce\xd7\x25\x44\xcb\x04\x9f\xbf\xcc\x1d\xb9\xfe\xe4\xc7" "\x34\x65\x4b\xdc\x30\x11\xd9\x25\xb7\xf3\xf0\xaf\x86\x82\xc5\x34\xf1" "\x5e\xc9\x37\x04\x58\x59\xc0\x28\x30\x02\x9e\x8d\x3d\x2d\xce\x3e\x45" "\xc6\xef\xc6\xab\x0c\xfa\xce\xe5\x41\x7c\xac\x11\xea\x59\xb5\xa0\xe1" "\xc9\x65\xc0\x16\x08\x20\x3c\x89\x7e\x02\x1e\xa6\x41\x20\x86\x01\x73" "\x02\x92\x2a\x0b\x80\x03\xa4\xb0\xd5\xde\x28\xae\xea\xf3\x64\x53\x6f" "\x11\xba\xe6\x6c\x8e\xd7\xd4\xd0\x74\xe6\x6e\xc5\xe9\x56\xf8\x0c\x53" "\x3e\x1d\xfb\x4b\x5f\x95\xb0\x07\x44\x82\x73\xc8\xa8\x45\x23\x8e\x0e" "\x36\x5b\x78\x5f\xea\x09\xcf\xaa\x4c\x18\xe8\x32\x79\xbf\x2e\xb0\x89" "\x88\x1c\xe2\xbb\x89\xe2\x23\x74\x95\x6b\xc9\xa1\x42\x3c\xf2\x86\xea" "\x32\x80\xa6\x34\x8c\xa2\x37\xbb\x17\x72\xae\x9a\xb8\xc6\x02\xe6\x10" "\x8d\xad\x1b\x05\xca\x71\xf9\x18\x70\x98\x45\x77\xfa\xbe\x08\xf7\xba" "\xe4\x22\x70\x31\xd9\xaf\x8b\xb3\x76\xc9\x37\x74\x97\x69\x9b\x39\x4b" "\x43\x51\xa2\x34\x93\xc5\x2a\x2f\x49\x78\x45\x3d\xd4\xea\xf9\x92\x87" "\x80\x3a\xdb\xa1\x66\xa5\x1f\x40\x4c\x16\xb8\x3a\x49\x11\x6c\x57\x99" "\x70\x61\xac\x01\xdd\x3b\x6e\xed\x37\xe9\x6e\x7d\xfe\x5e\x22\x17\x0a" "\x6f\x7c\xee\x00\x50\x40\xe5\x29\x11\xa7\x7d\xfe\xfb\x1f\xa2\x0b\x33" "\xe3\x48\x42\x34\x06\xc0\x24\xc1\xb0\xdf\x87\xcd\xc1\x2e\x52\xa8\x63" "\xa7\xd0\x1b\x5b\xed\x68\xc2\x72\x14\x82\x64\xab\x1d\xd5\x18\xdc\x8a" "\x73\x33\x9c\x68\xfd\xee\xde\x46\x54\x4e\x8d\xef\x75\x2f\x9b\x2c\x00" "\x12\x7c\x25\xf5\x69\x14\x35\x68\x8a\xba\x36\x70\x11\xbb\x13\xe1\x48" "\x28\x6b\xb9\x89\xdc\xcf\x02\x93\x6c\xb5\x80\x32\xad\x00\xe2\x34\xae" "\xff\x18\xe9\xb7\x1e\x35\x24\x05\xba\x9a\x6a\x3e\x02\x3b\xe8\x04\xb0" "\xb2\x20\xc1\xfd\x29\x6c\xaf\xb7\x50\x67\xf9\xcc\x66\xa8\xbe\x9b\xd6" "\x76\xd9\x76\x87\x9f\x24\x3a\xae\xa9\xa3\xf0\x26\x59\x18\x34\x0b\xdf" "\xd1\x1a\x51\x20\xbb\x01\xf9\x3b\x49\x19\xb8\x2f\x57\x9f\xb3\xd2\xfe" "\xdf\x16\x75\x56\x65\x39\x41\x08\x1a\xbe\x5a\x94\xf5\xc5\x8a\x0b\xe6" "\x6c\x16\xe9\xeb\xb6\x50\x77\x37\x02\x55\xe4\xd2\x67\xf2\xb2\xb7\x26" "\xa7\x9d\xfa\x20\xc0\x02\x08\xeb\x7c\xf3\x66\x21\x7f\xaa\x0c\x9e\xec" "\xc3\xd2\xe1\x92\x5a\x45\x45\x63\x73\xee\x88\xcc\xf6\xf5\x2f\x62\xd5" "\xf2\x98\x9e\xec\xae\x77\x0c\xce\x37\x04\x85\x15\xdd\xa2\x76\x86\x38" "\x0e\x92\x72\xc8\x12\xe9\x65\x6c\x93\xda\x15\x19\x58\x18\x14\x48\x0c" "\x05\x84\x04\xfe\x36\x86\x1d\x68\xec\x04\x29\x25\x8f\x54\x87\x1c\xfa" "\xf0\x1d\x9f\x72\x5f\xaa\xd4\x35\x66\xcd\xee\xf9\x47\x46\x72\x2a\x16" "\x8d\x05\x6c\x7f\x13\x90\x58\xf6\xe2\x2c\x4f\x9b\xd3\x35\xb4\x6b\x5b" "\x09\x9d\x46\x37\x7d\x9b\x5a\xa1\x81\x97\x54\x16\x40\x97\x76\x69\x04" "\x25\x57\x48\x29\x95\x28\xe0\x53\x21\x88\x9e\xfe\xa4\x76\x06\xef\x11" "\x5a\x02\x90\x70\x7d\xcd\x7f\x89\x16\x32\xea\x71\x91\x77\x38\xe6\x8d" "\x07\xbf\x40\x1a\xb9\xbc\xc2\x61\x32\x89\xd9\xaf\x05\xf2\x02\x93\x10" "\xaa\x80\x05\x02\x79\xd6\x7d\x9a\x10\x05\x08\xda\x95\xcb\x68\xd4\xa3" "\xf7\xb3\x62\xf4\x89\xbe\xcb\x7c\xce\x30\xa5\x63\x28\xec\x43\x40\x8c" "\xe2\x75\xcb\x26\xff\xe4\xb0\xe4\x2f\xae\x6c\x28\x41\x12\x86\x1f\x61" "\xd5\xb4\xe6\xe9\x3d\xd4\xfe\x2a\x5f\x12\xca\xad\xd3\x13\xc1\xd5\x6b" "\x7b\x1d\x1d\x2d\x6d\x29\x19\x20\x7c\x25\xe3\xf3\x09\xc3\x6a\x12\xa1" "\x30\x76\x48\x46\x38\xa8\x35\x82\xaa\xab\xa4\xf0\xaa\x9b\x8c\xc7\x27" "\xcf\xe7\x47\x77\xfd\x23\xe7\x87\x9f\x66\x75\x73\xfe\x77\x9c\x64\xef" "\x77\x2a\x54\xb5\x5e\x5c\x12\xc5\x94\x39\xea\x95\xa3\x8b\xbd\x7b\x51" "\xaa\x08\xaa\xe3\x61\x58\x60\x60\x2b\x9c\xd1\xcf\xfe\x7a\x89\x46\x22" "\xbb\x91\x38\x7a\xc8\x6d\xfb\xb5\xd1\x88\x3e\x74\x69\xe0\xf6\xbc\xaf" "\xbf\x1a\x4d\xe8\xea\xa4\xe7\xa8\x20\x5f\x5f\x75\x79\x82\x22\x14\x91" "\xbb\xac\x46\xb8\x96\xcb\xca\xa1\x07\x4e\x83\xe8\x0b\x35\xe1\xb6\x49" "\x97\x77\x8b\x7d\x20\xeb\x19\x59\xff\xa3\xae\x5e\x85\xbc\x85\x76\xb9" "\x44\x0b\x80\x5a\xd1\x12\x26\xdc\x73\xc4\x93\xd2\xe1\xec\xb9\x3a\xf6" "\xd1\x7e\xc4\x40\x50\x04\x9a\x40\xb7\x69\xdb\x4e\x19\x62\x93\x93\xd4" "\xf5\xca\x32\x55\x9c\x1d\x67\xe0\x37\x4b\x66\x63\x23\x38\x8e\x6a\x91" "\xff\x89\xc7\x59\x50\x07\xc5\xf3\xc9\xab\x32\x08\xed\x12\xf1\x5e\x3d" "\xb8\x2c\x1b\xed\xaf\xc0\x2e\xdd\x37\xe2\x11\xed\x8c\x94\xa5\xcd\x1d" "\x5b\xe5\x09\x38\xdc\x7f\x17\x5e\xe5\x11\xe3\x1b\x27\x59\xfb\x3d\x3d" "\x96\xfa\xb9\xa1\x84\xa7\x13\x01\x65\x47\x17\x7b\x5f\xf3\xd4\xbe\xff" "\xd7\x2b\xd4\x6e\x95\x66\xf5\x7f\xc9\x3a\xc0\xba\x69\xe3\x3a\xf1\xb1" "\xc6\x6a\x24\xf1\xe9\x29\xcf\x8e\x9a\xdf\xb7\x83\xc1\xc4\xec\xad\x83" "\x29\xc8\x23\x91\x91\xb6\x53\x3f\x26\x52\x38\x73\x52\x15\xec\xf2\xc9" "\x28\xb9\x33\x6e\x74\xb8\xf1\x08\x8b\x1f\x45\xd0\x02\xb9\x75\xa8\x32" "\xa1\x22\x3f\xac\x38\x45\x2b\xc8\x52\xde\x53\xf8\x77\x9c\x75\xaa\x07" "\x24\xc4\x7c\xb4\x6e\x2e\x8f\x7a\x60\xde\x27\x2a\x38\x3c\xc2\x89\x16" "\xf4\x05\x7d\xc1\xd7\x72\x71\xde\x9d\x4f\xc2\x35\x68\x12\x21\x0e\xc3" "\x09\xc8\x7a\x7d\xbd\x1b\xe1\xa8\x43\x7e\xd5\xbc\xf7\x9e\xa8\xaa\xc8" "\x32\xfc\xe4\x1e\x58\x35\x05\x72\x71\x14\xec\xbb\x64\x0a\xc0\x84\xad" "\x40\x62\x73\x6d\x5f\xfa\x38\xb5\x31\xfa\xe0\x8d\xc2\xfe\x8c\x2b\x99" "\xa0\xa5\xb3\x2b\x0d\x3e\xfd\xe2\x87\x2a\x93\xf1\xdb\x1e\xce\x13\xa7" "\x64\x4e\xc0\x14\x81\xeb\xb9\x3b\x16\xec\xb6\xc1\x6d\xc1\x7e\xc5\xe7" "\x2d\x5a\x2a\x48\xf0\xa5\x1d\x06\x8a\x40\x15\x36\x2e\x45\x5a\x1b\xf3" "\x65\x98\x7f\x3c\x75\x4e\xbe\xd2\x53\x3d\xd1\x22\x47\x8f\x24\x16\x4a" "\xea\xdb\x6e\x1f\x6a\xc6\xf0\xa9\xd5\x1d\xf8\x70\x23\xe7\x9a\x16\xf7" "\xf9\x58\x5b\xeb\x2b\x5d\x57\x18\xf4\x67\xdb\x27\x26\xe0\xf9\xd7\x37" "\xd5\x55\xc5\xe5\x73\x9e\x41\x8b\x4b\x32\x0e\x64\xb1\x1c\x46\x2f\x7b" "\x70\x91\xe7\xf2\x22\x8e\x8d\xf8\x7b\xde\x20\x43\x66\x36\x90\x13\xac" "\x68\xda\xad\x52\x3f\xfd\xde\x94\x51\xac\x71\x99\x49\x06\xfc\xd6\x30" "\x9e\x27\xe3\x92\x81\x3e\x66\xc4\x1b\x4c\xf4\xb0\x4c\x1f\xd6\xa3\x15" "\x5b\xba\x43\xbb\xd2\x1c\x38\x34\x8c\xbd\xf0\xf5\x28\xed\xe4\xbb\xe3" "\xb0\x59\x46\x26\x5f\x12\x1e\x39\x16\xed\xa6\x4f\xf9\x20\x83\x39\x87" "\x3a\xdc\x8c\x1d\x27\x4c\xe6\x6f\x55\x3a\xb3\xb1\xad\x93\x66\xd7\x6d" "\x1f\x1b\x8e\x0f\xb6\xa7\xb1\x84\x34\x01\xfa\x26\x67\xff\x48\x8b\x0b" "\x21\x92\x5d\x10\xba\x29\x05\x04\xed\xfb\x5a\x0e\x77\xf5\x42\x3b\x4c" "\x1b\x3b\x18\x45\xf6\x9d\x6f\xa2\x96\x28\xb6\x90\x4d\xdd\x4c\x75\x15" "\x3e\x88\x4e\xd3\x8b\x6d\xb3\x77\x64\xa9\x3e\x25\xad\x87\x64\x87\xa9" "\x73\x2f\xf0\xc8\x63\x05\xd4\xc5\x71\xf7\xa2\xff\x58\xe5\x4c\xfc\xe6" "\xd3\x47\xb3\x2a\xec\x9f\x04\xa3\xc3\x0f\xb7\xce\x7b\x3a\xc5\xb5\xec" "\x06\x8b\x75\xf2\x00\x09\x21\xa0\xbf\x0d\x78\xc7\xf4\xc6\x53\x65\x66" "\x4e\x85\x1c\x25\x88\x45\x14\x0a\x0b\x69\xb1\xcc\x66\xed\x19\xef\xb2" "\x15\x61\x39\x93\x36\x91\xc1\x7a\x50\x82\xd2\x6d\x27\xaf\xa8\x53\x28" "\x3e\x9b\x48\x8f\x91\xa5\xa7\x2f\x9d\x3c\x90\x4b\x1d\xde\x37\x33\xdf" "\x3b\x9e\x6e\x1e\xd4\x33\x7c\x19\x8c\x21\xab\x3d\x9e\x4b\x40\xc8\xef" "\x2c\x80\x38\x93\x64\x23\x19\x06\xee\x4d\xea\xaf\x30\x43\xbf\x9e\x5a" "\xd7\xb1\x29\x49\xda\x98\xba\xc6\xb8\xf0\x0b\xf4\x88\x77\xf4\x45\x38" "\x7c\x51\x3a\x0c\xf5\x92\xd6\xa2\x18\xc6\xaf\xa1\xbb\x93\x12\xd6\xa4" "\x0c\x7f\xe8\xe0\x06\x16\x96\xe0\xfe\x02\x9b\x2a\x78\xc2\x43\x14\xca" "\x3d\x8d\x1b\xb3\x6f\x60\xbf\x39\x84\x42\x2d\x7d\xda\x66\xc7\xd4\x4b" "\x26\x11\x24\x19\x2e\xfb\x78\xb4\x3d\xa9\xa9\x2c\xc8\x89\x3f\xf5\xc3" "\x51\x4c\x5b\xaf\xee\x0e\x22\x7d\xa0\x62\xa5\x61\x32\x3b\x71\xf6\xaa" "\x7b\xaa\xb6\x78\x24\x1d\xc8\xa8\xde\x58\xb1\xcd\x85\x52\x5a\x0d\x4c" "\x88\xaf\x66\xeb\x23\x4d\xa2\x1c\x89\x85\xb8\x01\x2e\x76\x02\xe2\x44" "\xc5\x54\xd8\x34\x47\x38\xc2\xcb\x63\x19\xa2\x6b\x31\x55\xc9\x6a\x54" "\x1c\xd8\xb9\x25\x3e\xd8\x5a\x68\xad\x84\x93\x64\x0f\xdd\xad\x33\x14" "\xe7\x3e\x40\xa6\xed\xe1\x97\xe3\x9e\x4b\x39\x11\x68\x9a\x7a\x7e\x73" "\xa4\x4b\x67\xa3\x4f\x1c\x37\xef\x28\xd9\x7c\x59\x31\xb4\xae\x2e\x70" "\x9e\xce\x9c\x4f\x80\xec\x52\x2e\x3b\xcf\x48\xb9\x9a\x81\xda\xf0\x44" "\xcd\x5c\xa1\xd3\xcf\xa6\xdb\xd6\x74\xf8\x57\x84\xb0\xb5\x5d\x74\xa9" "\x2d\xfa\x71\xc2\x5c\xa6\x56\xc3\xa9\xb1\x37\xf5\x27\x7a\xba\x5f\x33" "\xb5\x1d\x29\x0e\xb1\x5c\x94\x3c\xed\x88\x63\xe1\xa8\x88\x9f\xab\xc9" "\xb7\x2e\xc9\x1d\xb0\xb5\xc0\xe0\xa6\xb1\xc7\x42\xc9\xdd\x3d\xda\xb8" "\xd7\xbe\xdc\x85\x3e\x04\xf7\x88\xbe\x5e\xf5\x2a\x12\x4d\x7a\x04\xf8" "\x33\x9a\x77\x63\xbf\x26\x5a\xfd\x16\x8e\x15\x48\x93\x53\x70\x95\x54" "\xc8\x1c\x22\x6d\x60\xe1\xfa\x08\x3f\x81\x18\x5d\x1b\x01\x49\x59\x56" "\x8a\x8c\xd6\x40\x66\x23\xac\xc5\xd3\x14\x4c\xbf\x88\x82\xcc\xfa\xc7" "\xe0\x8a\x81\xe7\x6d\xde\x03\x4a\x6a\x84\x1d\x89\x12\x8c\x81\x98\x56" "\xbd\x99\xe4\xcc\x65\xca\x6c\xc2\xc8\x61\x92\x38\x07\x61\xdf\x78\x35" "\x99\x6f\x1f\xbc\x26\xd7\xfe\x50\xaf\xef\x5d\x25\x21\x4a\x04\x12\x98" "\xec\x77\xd8\x0c\x35\x41\x5f\x29\xca\xac\xa5\xae\x8d\xc4\xb2\xda\x25" "\x7d\x21\xdc\xa7\x20\x98\xe6\xd2\x5d\xef\xbf\xe0\x7f\x4a\xf5\xf3\x29" "\xb1\x56\xe0\xd6\xcf\xa4\x71\xe4\xc1\xeb\xc1\x4f\x50\xf0\xe8\x4e\x09" "\xe0\x58\xc3\xcb\x4c\x8e\x41\xe4\x77\x8d\x60\x26\xcc\x61\xa4\x77\x91" "\x76\x72\x93\x0e\x47\x22\xec\xab\x13\x87\xcb\x2e\x8d\xe2\x34\x04\xdd" "\xe4\xd2\xff\x64\xe3\x87\x75\x57\x10\x3a\xad\x43\x8a\x3c\x2b\x50\x75" "\xb2\x4e\x9a\x31\xd0\xd4\x6e\x4b\x8a\xfd\x16\x9e\x43\xac\x96\xe0\xe8" "\x78\xc9\x27\x34\x77\x63\x29\xfa\x29\x06\x77\x16\xf6\x09\xc2\x32\xe2" "\x5a\x78\xa9\x1a\xa0\x83\x22\xe7\x90\x4f\x05\xf0\x81\x64\x26\xcd\x6b" "\x5e\x7e\xed\x7a\xc1\xcf\x4f\x14\x66\xf6\x92\xd5\x66\xb0\xbc\x99\xd9" "\x2c\xaf\xb4\x03\x84\x6a\x63\xf8\x49\x56\x57\x05\x74\x13\x8b\x03\xf9" "\x77\xe1\x22\x11\xba\x4a\x90\x2a\x4c\xff\x1f\x72\x34\xcc\x2a\x93\x34" "\xee\x45\x52\x8e\x30\x71\x17\x35\x3c\xc8\x59\x85\x3b\xd9\xbc\xd9\xf0" "\x5a\xb6\x2c\x99\xad\x1c\x80\xbf\xdd\x7c\x5a\xc2\x96\x91\x74\x62\x9e" "\x6d\x54\x7a\xe3\xcf\x00\xf5\xe5\x85\x0b\x76\x5d\x76\x95\x7d\x92\xe7" "\x95\x59\xa8\xa4\xfe\x53\x55\xd8\xb6\x76\xc4\xa8\x4b\x33\x6e\x1e\x40" "\x94\x64\x2b\x15\xb6\xde\x6e\x27\xb2\x09\xa1\x69\xff\xd9\x20\x62\xc8" "\x34\x9f\x9e\x7d\x09\xc6\xfa\x19\x0d\xcf\xe6\x6a\x5b\x2a\x01\x6e\x17" "\x47\x7a\xfe\xbe\x2f\x81\x71\xf6\x37\x1c\xf8\x0d\xd8\x00\x56\xd4\x71" "\x57\x83\x75\x4c\x51\x04\x90\x70\x5b\x7a\x6f\xa5\xeb\x20\x39\xd9\xbe" "\xca\x38\x3d\xf6\x27\xe9\x8e\x1e\x00\xdd\xf2\x1f\x4a\x66\x9c\x5a\x43" "\xb5\x3f\x3a\xac\xe9\x77\xeb\x84\x34\xbd\x6e\xc2\x2b\xc8\x7c\xd2\x3e" "\x57\x4a\x32\x39\x7d\x09\xe6\xd6\xe5\x04\x7b\x89\x43\x8f\x14\x39\x30" "\x05\xb0\xb9\x50\x0e\xf4\xbc\x5b\xaf\xd8\x35\xe8\xb4\xc5\xa6\x11\xb3" "\xcf\xad\xa7\xe4\xe9\xe8\x3c\xbd\x69\x6b\x40\x49\xbd\xde\x06\xf9\x9c" "\x12\x3a\x54\x62\x72\x19\x53\x00\xca\xc3\x6b\x3b\x03\x60\x22\x7f\xf5" "\x80\x82\x73\x5d\xb4\xbc\x5f\x8b\x73\x03\xb6\x8a\xba\x91\x3c\x9a\xb5" "\x56\x0b\x1e\x0f\x99\x1e\x2b\x39\xb3\xeb\xab\xe8\x2a\x63\x96\x47\x43" "\xe9\xaf\x25\xf9\x40\xf8\xb4\xe0\x12\x7a\xa2\x11\x5c\xf9\xb6\x42\x17" "\xf5\x52\x3e\xeb\xf8\xa3\x47\x92\x0c\x57\x81\x52\xf6\x30\x08\xd7\x21" "\xc5\xc7\x51\x91\x71\xe5\x49\x88\x39\xf5\xa1\xca\x26\x92\xb8\xea\xf2" "\xc9\x8f\x61\xe7\x25\x16\xb0\x70\xda\x00\xd0\x1a\x33\xd8\x09\xaf\x84" "\x64\x41\x2a\xff\x2a\x03\x9e\xf6\xaa\x7f\x04\x69\x49\x8a\x5b\x07\xcf" "\xa6\x37\xea\x09\x01\x27\x50\x0c\xa5\x8f\x68\x3d\x27\xf5\x0e\xcd\xd3" "\xe2\xb4\x3c\xc6\x20\xc1\xba\x79\x58\x16\x94\x2d\xa6\x47\x1f\x12\xfa" "\x49\x56\xd3\x25\x3b\xae\x2a\xb2\xba\x5f\x8c\x08\x91\x62\xf8\x46\x0e" "\x00\x29\x61\x08\xa2\xcc\x97\x1b\xe2\xb3\xb7\x18\x9d\x6c\x43\x43\x7b" "\xdb\x9c\x11\x98\x9c\xa8\x57\x6b\xcf\x2a\xb0\x98\x74\x81\xa9\x53\xa1" "\xe2\xc8\x2e\xf4\x24\x3e\x58\x37\xc7\xce\x52\x85\x6a\x9c\x52\xdf\x86" "\xbe\x47\x94\x31\xdd\x6f\x1a\x88\xbc\x54\x4f\xc6\x5f\x27\x58\xb5\x58" "\xd6\xbb\x58\xba\x6c\xb4\x17\xca\x9f\x9e\x6f\x1d\x2d\x90\xde\x6b\xdc" "\x24\x87\x91\x64\x9c\x20\x5d\xdd\x3c\xf6\x14\xe0\xee\x52\xfb\x53\x4f" "\xca\xef\xcd\xfd\x5a\xcb\x5a\xa2\x38\x09\xe3\x9f\x03\x84\xb9\x71\x11" "\x18\x7f\x06\x47\x16\x11\x34\x22\x43\x75\x1e\x8d\x43\xa3\x0c\xb0\xe7" "\xc7\x0b\x96\xb6\x48\x45\xe8\x36\x45\x39\x47\x0e\x6f\xdb\xe6\x30\x04" "\xe7\x44\x66\xa5\xe2\x8b\x78\xae\x43\xc8\xf0\x5b\x7e\xa5\xe4\x0c\x5c" "\x8c\x29\xc0\x9b\xe8\xc9\xea\xbd\x9b\xc4\xf9\x9a\x42\x08\xb5\xc9\xa5" "\x3d\x5a\xba\xad\xe7\x44\x89\xe5\x3d\x04\x93\x04\x09\x78\x2a\x97\xdf" "\xf6\x7b\x76\x66\xc7\x83\x88\xd9\xd0\x67\x58\xf5\xc3\x00\xb7\xf5\xb5" "\xec\x26\xf6\xc7\x85\x5c\xe9\xe6\x9e\x1a\xf2\x06\xaa\x7b\x6f\xf2\x9c" "\xd4\xd7\x9a\xc1\xd2\x96\x1f\x30\x0f\xd5\xa9\x7b\xc3\xff\xef\xc3\x11" "\x4d\x9e\x2f\x8a\x9c\x00\x57\x76\xe5\x29\x7d\xcd\x9d\xf6\x8d\x0e\xfc" "\xed\x6e\x51\x14\x12\x44\x35\x97\xf5\x02\x15\x7f\x4c\x3d\x0b\xc0\x4d" "\x41\xd6\xb6\x1e\x68\x82\x13\xb2\x96\xd1\x98\xc8\xdf\xee\x80\x68\x83" "\x22\x54\xbf\x66\x10\x1d\x4b\x30\x37\x1d\xa2\xc4\xdd\xed\x11\x9f\x31" "\x8b\x4f\xb7\xf0\xab\x4d\x14\x06\xa8\xf6\x2d\x0d\x90\x97\x64\x4f\xdc" "\x42\x64\xd9\x59\x97\x5f\xd4\x62\x30\x3b\xf8\xb3\xd3\x6c\xca\x8a\x54" "\x53\x0f\x0c\xc5\x22\x0b\xe2\x88\xa6\xb9\xc8\x52\x37\x38\x84\x34\xd0" "\x59\xb1\xc6\xb3\x02\xd6\x54\x9e\x32\x4d\x42\x13\xa4\xb3\x3d\x09\x7f" "\x05\xd4\xdb\xb6\x20\x4b\xfa\xe9\xe7\xea\x86\xd1\x5c\xf1\x4a\xf1\x99" "\xd0\x03\xc9\x00\x21\x88\x8e\xa5\x14\x4b\x32\xe4\x20\xa9\x2f\x49\xa3" "\x1d\x3a\x45\x31\x69\x4d\xc6\x7b\x0f\x65\x47\xe6\xdb\x01\x19\x42\xc1" "\x18\xeb\xb5\x33\x9f\x9e\x53\xa5\x4f\xd8\x5f\xae\xf1\x4e\x26\xc4\x63" "\xc4\x69\x93\x6d\x99\x93\x2d\xb3\x48\xd4\x4c\xd7\xee\xb8\x9e\x24\xd8" "\xd7\xaa\x5c\x88\xe1\x6a\x95\xe5\xd3\x87\xa9\x70\xea\x15\x3f\xa2\xee" "\x59\x34\xb8\x03\x1f\x07\xae\xdf\x17\xa7\xf2\x14\xcc\x72\xcd\x00\x64" "\x82\x1d\x60\xd3\xb7\x74\x61\x45\xc3\xc7\xc0\x9b\x45\x53\x61\xd7\xe9" "\x27\xfe\x0f\x09\x8a\x6c\x1a\x8a\x4e\xee\xd8\x02\x31\xde\x20\x8c\x38" "\xff\x8b\x65\xfb\x93\x16\xad\x7f\x21\x51\x0a\xe5\x26\x84\x27\x14\xc1" "\x74\x91\xe3\x5c\xae\xd0\xbf\x3a\xa8\xa5\x9e\x6c\xaa\x94\x2b\x46\x89" "\x44\xdc\xcd\x17\x7d\xa4\x4b\xf2\x78\x56\x30\x9d\x0e\x33\xc1\x36\xda" "\xe0\xb5\x01\x72\x4f\x38\x56\xa6\x69\xa0\x3c\x3b\x0d\xba\xf9\x6d\xf2" "\xa9\xd9\x80\xbc\x0c\x4f\x78\x71\xce\x73\x7f\x73\x8e\x70\x7e\x63\x27" "\xfd\xab\x7b\xdc\xf0\xd3\xa3\x56\x09\x50\x0d\x6a\x34\x00\x67\x78\x58" "\x0f\xb1\xe8\x8d\x81\x55\x5c\xbf\x3a\x85\x2c\xc9\xd2\xeb\x48\x6e\xe7" "\xef\x20\x5c\x97\x0a\x6f\x12\x59\x10\x40\x9f\xde\xa7\x18\x4a\x05\x5d" "\x4e\xe7\xce\x68\x9e\x91\xa6\xbc\x36\xf2\xb7\x0f\x08\xa8\x3b\x94\xe5" "\xc4\x7b\x17\x82\x27\x7d\x2e\xb5\xce\x0a\xb9\x96\xb1\xcb\xcf\x17\x9d" "\x8c\x73\x8e\xee\x3c\x83\x3d\x56\x29\x08\x49\x70\xc7\x71\x54\x6d\xdb" "\x75\xf8\x8b\xd7\xe2\xb7\x20\x71\x57\x54\x84\x34\x9e\xf9\x4e\x54\x6c" "\x1d\xbf\xe0\xa2\xc2\x29\x78\x05\xc0\xba\xb8\xad\x58\x2f\x7c\xe4\x84" "\x79\xd2\xe2\xfc\xcb\x10\x62\x2d\x85\xfb\xb3\x4e\xa0\xf6\x32\x69\xe8" "\x2d\x6c\xdb\xfc\x98\xb1\x0f\xa3\x4d\x78\x91\x65\xd9\x9f\x0d\x0f\xbf" "\x2e\xb1\xe3\x4d\x0e\x1e\x71\x23\x02\x79\x86\xb8\xf8\xad\x54\x87\x54" "\xbb\x88\x64\x35\x63\xec\x0b\x71\x7f\xd8\x46\xbf\xd1\x4c\x7b\xef\x9a" "\x1e\x5e\x78\x81\x76\xa0\xd7\x6a\xb6\x17\x97\x3b\x40\x82\x2f\xed\x19" "\x20\x63\x0d\xdd\xed\x26\x20\x0e\xf2\x67\x1a\x41\xeb\xac\x62\x4b\xd3" "\xda\x37\x2b\xe7\x9c\xcd\x05\xf3\x9d\xf6\xae\x38\x29\x7c\x0c\x0d\x7f" "\x37\xdf\x71\x76\xbe\x22\xce\xc4\xaf\xda\x34\xcc\xb5\x65\x26\x9c\xcc" "\xa9\x10\x5e\x11\xad\x89\x9b\x83\x44\x8a\xb8\x90\x8d\x88\xbf\xcd\x89" "\x76\x5b\xe2\x1f\xab\x24\x19\x39\xac\x4c\x24\x5e\x54\x21\xa2\x38\x1a" "\x34\x04\x26\x04\x8e\x38\x7d\xa3\xf1\x75\x90\x7c\x20\x0c\xf1\xa3\x9d" "\xbd\x22\x49\xfe\xa4\x96\x44\x79\x29\x00\x7d\x0b\x63\x18\xb5\x01\xb6" "\xf1\xa6\x03\xbe\x3b\xef\xcf\x65\xed\x52\x3e\x8a\xf0\x62\x92\x82\x19" "\x73\xe1\x11\xc0\x3b\x7f\x97\xe1\x09\x67\x11\xc9\x76\x9b\x4c\x0b\x8e" "\x26\x6f\xe2\x73\xc1\x68\x88\x7d\x62\xa1\x45\x1e\x05\xa2\xc3\x4f\x76" "\xf5\xac\x65\xf5\xed\xf4\x0d\x98\xaf\xf0\x03\x5b\xcb\x92\x74\xad\x4d" "\xd2\x3f\x4e\xf2\x61\x13\xf6\x3e\x2f\x9e\x3e\x75\x67\x8b\xab\x66\x08" "\x87\x81\x11\x2a\xd4\xf7\x60\x00\xf2\x73\x3d\xf4\x29\x42\x33\x7a\xa8" "\x52\x5c\x64\x2c\x21\x5b\xf5\x5f\xdb\xa1\x9d\x5e\x8f\xa3\x0a\xdd\x69" "\xbe\x51\x6d\x38\xbd\x0c\x5d\xf6\x87\xbe\x7b\x34\x18\x06\x05\x7e\x0e" "\xa1\xcd\x3e\x8f\x28\x68\xb5\xa4\xdc\x84\x18\xfb\xbd\x5e\xe2\x02\xa4" "\x8d\x81\xa8\xd0\xa4\xad\xc2\x65\x61\x54\x3e\x03\x69\xe9\xbc\x6b\xd6" "\x3f\xf5\xc2\x7a\xd5\x74\xd0\x37\xd1\xbe\x83\xe7\x37\xb4\xe1\x08\xa1" "\x95\xe5\x5e\x93\xc7\xc9\x07\xf5\x48\xd7\xee\xf6\x41\x47\x48\x82\x4b" "\x9c\x69\x4a\x06\xb6\x4c\xf5\x45\x17\x6f\xd0\x41\xd5\x69\x56\xd7\x4b" "\x2d\xc1\x4d\x5b\x75\xdb\xc1\x27\x6c\x6e\x82\xff\x3e\x0a\x23\x15\x87" "\x52\x8a\xaa\x8f\xa5\xca\x74\x8b\x5d\xea\xe2\x83\x25\xfa\x8d\xad\xb0" "\xec\x35\x94\x18\x72\x24\x0a\xd3\xe9\xa7\x64\xa4\x08\x0f\x94\x91\xf1" "\x89\x94\xfd\x0d\x0e\x49\x5a\x04\x66\x55\xcb\x97\x99\xa2\x4a\x1f\x04" "\x6e\xcf\xa0\x4c\x45\x68\x48\x69\xcd\x51\xd6\xf9\xb8\x96\xf7\xe4\x15" "\xfd\x39\xc9\xf2\xb4\x61\x47\x30\x95\xac\xa6\xa3\x6d\xec\x70\x2b\xed" "\x08\x9b\x69\x9b\xe7\xa4\x04\x16\x41\xea\x84\xe9\x1f\x46\xaa\xf6\xd4" "\xca\x00\xf5\x1c\xfc\x1a\xaa\xa7\x0a\xfe\xb5\xdb\x02\xdb\x19\x99\xa3" "\x8b\xc4\xd7\x3b\x33\x1d\x68\x27\x71\x47\xe1\x18\x69\x22\xcd\x0a\x5d" "\x60\x72\xcd\xbb\x80\xa6\x8f\x93\x59\x2a\xf5\x0a\x7c\x4f\x83\xac\x9f" "\x92\x36\x56\x2e\xf2\x75\xba\xb5\x25\x04\xa2\x00\xad\xea\xe9\x02\x4a" "\x1f\x04\xfa\xc4\x8b\xdc\xb6\x55\x9a\x0f\xed\x00\x28\x2a\x39\xde\x9b" "\x56\x9d\x25\xf6\x49\x36\x13\x9b\x04\x6f\x63\xfd\x32\x1a\xcc\x09\x7a" "\xf4\xb1\x18\xc4\xf3\x5c\x2d\xc8\xe4\x26\x46\xd8\xa2\xbf\x19\x17\x6b" "\x8e\xa1\x57\xdd\x6b\x0d\x88\xd9\x42\xc4\xc6\x89\x14\x9f\xbf\xca\xf8" "\xec\x74\xd4\x01\x1e\x4e\x87\x35\xc8\x46\x5d\xea\x62\x39\x77\x33\xc4" "\x71\x4d\xd0\x40\xc2\x90\x1d\xac\xd4\xce\xb9\x56\xd9\x76\x36\x0a\xb1" "\x55\x58\x7e\x48\x86\x54\x02\x9d\x07\x6a\xf8\x61\xba\x04\x6c\x03\x6c" "\xd2\xbb\xf9\x43\xf2\xa6\xf0\xc0\x39\x10\x44\x31\x4e\x18\x6d\xa5\x3f" "\x7a\x24\x17\x42\x97\xc7\xda\xe7\x8d\x26\x23\x55\x0e\xf4\x84\x69\xca" "\x28\x88\x09\x4d\x98\x6a\xc6\x9d\x8b\x70\x8a\xf0\x2d\xbc\xbc\xfc\x72" "\x4e\x7a\xdc\xbb\x67\x44\xdd\x68\x3d\x87\x50\x44\x60\x90\x36\x6f\xd0" "\x84\x4d\x14\x92\x9c\x65\xb0\x68\x2e\xf6\xeb\x3b\xda\xc6\x4a\x68\x32" "\xc4\x9a\x66\xe3\x6f\x3b\xa5\x9a\x0a\x9c\x81\xcf\x4e\xe3\xec\xda\xd5" "\x22\x23\xa6\xe1\xa2\x45\xe7\xdf\xc3\xbd\x52\x6f\x3f\xd9\x04\x41\xcc" "\xc6\xe9\xef\x30\x5d\xc6\xc4\x94\x36\x1c\x79\x6c\xff\x28\xb4\x79\x99" "\x94\xa0\xcf\x05\x1f\xf5\xd0\x85\x48\x9a\xb1\xef\xd2\xed\x39\xdb\x63" "\x5d\x15\x43\x2a\x62\xc9\x51\x1e\xe1\x45\x76\xf6\x87\xa9\x3b\x64\xb3" "\x93\xb7\x9d\x17\x69\x86\x2a\x3c\xdd\x37\xe9\x0c\x4f\x8e\x7f\xf8\x2b" "\xd5\xe9\x11\xf4\x66\x91\xba\xbc\x6b\xee\x04\xaf\x97\xf3\x2d\x51\xd4" "\x78\xeb\x98\xde\x9b\xe7\x42\xa1\xdf\x48\x42\xd5\x2b\xe1\xde\x4f\xf2" "\x61\xa1\x18\xb0\x85\x36\x49\x45\x94\xab\x49\x02\x78\xe3\xe2\x48\xd8" "\x72\x33\xb2\x32\x94\x01\x94\x86\x95\x91\x3a\x90\x96\xcf\x38\xb0\xe0" "\x26\x25\x8f\x50\x07\x0a\x3b\x3a\x51\xe8\x72\x99\xf6\x9f\x63\xff\xcb" "\x36\xd9\xb0\x42\x1a\xe1\x9c\x31\x07\x81\x92\x8f\xcd\xb8\x63\x73\x5c" "\x8b\x6f\x6a\x2f\xb2\x68\x09\xaf\x51\xe4\xfd\x6e\x82\xcf\x42\xe0\xdf" "\xa6\xe9\xb0\x76\xbb\x1b\x69\x05\xa7\xaf\x85\x11\x43\xb8\x67\x4c\xa1" "\x3c\xc2\x05\x3a\xa5\x49\xc7\x03\x63\xca\x35\x00\x30\x95\x25\x4f\xe1" "\xf4\x8e\x20\xfe\x39\x01\x0a\xb8\x77\xc3\x87\xdc\xc4\x6e\xc3\x57\x76" "\x7c\x1e\x9f\xcc\x38\x3b\xd3\x3e\x3c\x54\xbb\x85\x3e\x1e\x84\x38\x20" "\x3d\x6b\x8d\x74\x33\x78\x3e\x9f\x76\xbb\xa2\x68\x6c\x78\xa2\xf7\xf5" "\x2d\x0d\x19\x85\xdc\x04\x6a\x32\x81\xa6\x48\x67\x74\x9b\x91\x50\x61" "\x3e\x99\xb6\x10\xef\xa4\xde\xf0\xcc\xf2\x90\x86\xba\xd3\xe3\x55\xd8" "\x7e\x08\xbd\x4d\x29\x18\xa5\x53\xf9\xfb\xdf\x19\x82\x4c\x81\x76\x97" "\xd0\xfc\xdf\x0e\x5f\x4a\x9f\x94\x5f\xab\x42\x46\x6c\xc2\x5b\x3b\x79" "\xd1\x64\x7d\x6b\x1f\x5b\x9b\x36\x0c\xef\x9b\xa3\x42\xcd\x4a\x5c\x43" "\x49\x32\xa1\xbd\xe2\x3e\xe7\xf0\x8c\xc8\x4a\x8c\xf4\x30\xdc\xa2\xdb" "\xcf\x17\xf7\xb2\xc0\x73\x37\x71\x6f\xcd\x8a\xe5\x58\x15\x09\xd8\x91" "\x0e\x85\xcf\xb7\xa1\xf8\xff\xc6\xa1\x62\x9a\xb4\x84\x47\xe8\xfc\xa4" "\x3c\x53\xed\x74\x76\x4e\xe2\xdd\xfa\x6b\x00\xde\x27\x98\xf6\x40\x6a" "\xd8\xbe\xb3\xf2\x06\xe1\x6a\xb0\xd1\xc7\x4c\x8b\x7b\x42\x8c\x65\x92" "\xaa\x13\xa5\x33\x76\x0f\x53\x6b\xe8\xc8\x18\xc2\xdf\xcf\xa0\x82\xa2" "\x70\xc3\x96\x85\x44\x75\x71\x43\x7b\xdd\xba\x36\x67\x9b\x36\xb0\xd2" "\xf5\x3f\x5f\x0d\xa4\x9d\xaa\x81\x08\xcf\xce\xa2\xd2\xeb\x8f\x69\x42" "\x88\xe4\x4e\x59\x0e\x7e\x32\x58\xd1\xe4\x68\xc6\x57\xe9\x86\x05\xef" "\x3d\x56\x06\x2d\xf3\x5b\x90\xe1\x33\xc1\xbe\x86\xad\xc6\x28\xd1\xd0" "\x8a\x04\x08\x19\xe4\xbd\x69\x6c\x5b\x32\xb7\x14\xb6\xe7\x54\x5e\x5e" "\x39\x0a\x76\x56\x0c\x2d\x48\xca\xc2\xb8\x16\x18\xeb\xc1\xb0\x24\xec" "\xc6\xef\x01\xe5\x06\xdb\xdf\xb8\xb7\x16\x5a\xc3\x4b\x54\x39\xc6\xc4" "\x13\x23\xa2\xc7\xe9\xaa\xe8\xf4\x37\xe6\xd5\xb4\x3c\xa5\xf3\x63\x19" "\xdc\xb8\xdb\xa2\xcc\xb1\xb9\xdf\x6d\x64\xec\x0e\x0d\x55\xb2\x8b\x98" "\x40\x96\xf9\xb4\x88\x98\xc8\x9b\x5f\xc1\x68\x35\x38\xe2\x9d\x4f\x7b" "\x39\x1a\xb8\xe9\x57\x94\x2e\xba\xde\xc5\xa4\xad\xea\x0a\x73\x06\x04" "\xa5\x20\x35\xd8\xf7\x36\x69\xbe\x1b\xab\x31\x3d\x78\x10\xb3\x21\x41" "\x18\x39\xc2\xad\xef\x8b\x05\x4f\x54\x20\x5b\xc5\x89\x6e\x59\xdc\x62" "\x35\xf7\x10\x59\x63\x7b\xfe\x79\xd1\x28\xbc\xd4\x56\x13\x30\xd5\xdc" "\x52\x1b\x60\x92\x3a\x49\xb6\x96\x91\xaf\x17\x3e\xec\x1d\x5a\x3d\xeb" "\xc8\xf4\x59\x39\xde\xbf\x11\xcb\x4e\xca\x10\xf1\x34\x13\x82\xd2\x17" "\xa4\x04\x4a\x2c\x16\x7f\x05\x07\x12\xb3\x8e\x9a\x5d\x8c\x2b\x87\xb7" "\xdc\x31\x7a\xb1\xf5\x17\x37\xa1\x21\x6b\xce\x99\xd8\xac\x9b\xd1\x83" "\x23\x24\x16\x56\xdb\xa1\x0d\x00\x11\x35\x58\xc5\x52\xc7\x54\xb6\xb7" "\x58\x46\x05\x57\x11\xf0\xca\x12\xb1\x76\xa1\x9e\x2d\x97\x77\x9e\x8d" "\xeb\xf3\x09\xb0\xc8\x6a\xcf\xac\x24\xc3\x7e\x59\x51\x78\xed\x8e\x03" "\xa8\x01\x0e\xd9\x21\x41\x2d\x78\x60\xe7\x08\xf7\x0c\x7a\xe2\xae\x5e" "\xed\xd0\xa7\x78\xa8\x8e\xb8\xa4\x27\x7a\x6e\xd1\x3f\x6a\xf4\x06\xfe" "\xff\xe7\x62\xdf\x1c\xa5\x2f\x26\x13\xbc\x1e\xf6\xf1\xa8\x32\x68\x97" "\x91\x1b\x57\x51\x5d\x6f\x19\x26\x57\x10\x5b\xe2\x3b\x1a\x6f\x37\x68" "\x9d\xaa\xc8\x7b\x5b\xd1\xff\x3c\x36\xf1\x11\xc9\x73\xd1\x98\xae\x3f" "\x1f\x17\x0b\x84\xdc\xe8\x1b\xe8\x8d\xc1\x1a\x7c\x2c\xf2\xc7\xc0\x2f" "\x1d\x4a\x74\x2f\xd3\xd6\x4f\xec\x0b\x9d\x22\xc9\x0d\x74\xef\xc2\x80" "\x8c\xb7\xcd\x21\x58\x31\xd2\x72\x11\xb0\x5b\xd4\x97\xee\xec\xc5\xfb" "\xbe\xd0\x2e\x1c\x48\xfe\x1f\x40\x47\x1b\x84\x00\x1e\x89\xb5\xee\xb8" "\x1a\x39\x0b\xec\x5b\x84\xd5\xaa\xc6\x6d\x51\xf2\x0d\x04\x14\x0c\xfd" "\x5e\xff\x66\xc8\x07\x68\xa5\x69\xe1\x58\xa2\xa1\xff\xb9\xe3\x39\x73" "\x10\xa3\xca\xeb\x8f\xb1\x34\x8a\x4e\xfa\xb0\x32\xd7\xb0\x7a\x9f\xfe" "\x05\xbe\x0f\x75\x1c\xf6\xf5\x5e\x3a\x18\xac\x39\x72\x96\x5f\x8d\xd8" "\x65\x8e\xd5\xe8\x1d\x27\x2c\x89\x42\x9d\x9a\xea\x70\x65\x6c\x87\x2c" "\xc6\xab\xb1\xee\x1f\x29\xb3\xa9\xe2\x51\xf9\x44\x0e\xf0\x2e\xfc\xe3" "\x03\x5c\x36\x84\x8d\x83\xa1\x36\x47\x5b\x73\x51\x4f\x91\xd8\xfa\x33" "\xa1\x53\x83\x16\xa9\xef\xe3\x00\x64\xef\x50\x4a\x7f\xf1\xc9\x3c\xbc" "\xdc\x20\x29\x79\x5d\x11\x55\x0f\x8d\xae\x80\x5d\x0f\x95\x70\x21\xf9" "\x5a\x8f\xc8\x96\xa0\xdb\x2c\xdc\xed\x3b\x8d\xef\x80\xf5\xb0\x4c\x4c" "\x54\xfa\x87\xb3\x84\x15\x83\xd0\x0d\xac\x6e\xba\x1c\x46\x91\xc6\x44" "\x96\xe5\x75\x8b\x33\x71\xe9\xeb\xfd\xe6\x15\xfe\x90\x62\xd3\x7e\xb5" "\x1a\xff\xd0\xc2\x9b\x36\xab\x67\x3d\xc6\x87\xdf\x90\x50\x95\x8f\xaa" "\xd9\x05\x3e\xac\x15\xa9\x8b\x8c\x91\xff\x00\x3b\xa6\xc6\x4f\x92\x8e" "\x31\x45\x96\x3a\x86\x45\x3f\xdf\xc8\xc4\x3c\xf4\x15\x2d\xe8\xa0\x4d" "\x94\x86\x6b\x8e\xdd\xb1\x33\x57\x22\xe5\x6b\xff\x39\x39\x42\x9f\x45" "\x4d\x48\xf3\xe9\xb2\x00\x31\xc0\xb5\x39\x74\x56\x97\x2e\x3a\xed\x04" "\x33\xc8\xbe\x81\x74\x38\xa5\x1d\x7a\x94\x79\xe4\xb9\x39\x7c\x90\x28" "\xfe\x15\xf2\x1f\x0c\xea\x77\xbe\xf9\xa8\xd7\x13\x67\xcf\xc0\xd3\x03" "\x79\x03\x38\xe0\x9d\xd9\xcb\x4c\x72\x6b\xed\x88\x8b\x8d\xf6\xf2\xc7" "\x21\x1c\x25\x66\x97\x34\x66\x19\xa6\x9c\xdb\x86\xb3\x64\xbe\xa6\x66" "\xec\xd8\x77\x00\xb8\x30\x1b\xe7\xbd\x64\x23\x10\xe8\x12\x3b\x5a\x13" "\x62\x08\x64\x49\x38\x1b\x1d\xfe\xc2\x73\xe2\x2a\x2d\x80\x0c\x8a\xf0" "\x4a\xd9\xf4\xa4\x81\x77\x89\xbb\xac\xff\xc1\xd4\x6e\xa4\x08\x1f\x17" "\x5d\xea\x20\x3b\xaf\xb5\xd6\xa7\xd7\xe2\x64\x38\xb5\x56\x9b\xc8\x32" "\xea\x24\xa1\x7a\x0c\x42\x79\x59\x74\x64\xd9\x1b\xdb\x74\xff\x60\x14" "\xb6\x24\xa7\xab\x76\x03\x6e\xd5\x49\xfb\x3b\x72\x62\x1d\x54\x6b\xe7" "\x85\xc3\x5e\xd6\x73\x3b\x69\xf6\x65\xe0\x95\x74\xec\x60\x0a\x4b\x26" "\x43\xd3\xa3\xf8\x3d\x09\x08\xeb\xd1\x31\xcd\x85\xde\x78\xb2\x74\xac" "\x4f\x09\x2c\x52\x68\x34\x9f\x7c\x34\xc4\x67\x97\xcd\xc1\x1d\xa1\xef" "\xfe\x4b\x6c\xee\x4b\xe1\x28\x7a\xfa\x37\xfc\xa5\x91\xc0\xf5\x63\xfc" "\x1f\x94\xc3\xa2\x7f\xef\x7b\xa7\x29\xbb\x93\xab\x1f\x51\x44\xc6\x7b" "\x2e\x69\x31\x80\xaa\xcc\x7d\x5e\xb3\x7c\xfa\xa3\x74\xe2\xa2\x69\xc0" "\xdb\x83\xb4\xca\x1e\x96\x02\xb3\x92\x69\x56\xf9\x70\x71\x06\x9d\xe8" "\x5a\xd0\x87\x04\xcf\x68\xbf\x0e\xac\xe6\x6d\xd3\xd2\x38\xfd\xdd\x1c" "\x01\x98\x44\x7f\xfc\x22\xda\xe9\xd5\x27\x59\xa6\xa3\xc4\x98\xe3\x4e" "\x4c\xf7\xc7\xeb\xd4\xe9\x27\x74\x1d\xbb\xa9\xd8\xe4\xb2\xca\x87\xad" "\xce\x91\x42\x59\x58\x5b\xd1\x1a\xa1\xa1\x9e\x97\x20\x8b\xdd\x26\xe9" "\xc4\x97\x93\xb2\x44\xe8\x4e\xf5\xae\x3d\x13\xe0\x30\xec\x8f\x81\xa6" "\xe6\x40\x37\x2f\xbc\x2d\xb1\xfb\x52\x0c\x8d\x9a\x3a\xfc\x79\xf0\x3d" "\x3f\x8a\x73\x62\xd9\x49\xa0\x47\x0d\x44\x69\x90\xff\x61\x08\x89\xe7" "\x5c\x9d\xce\x84\xcb\x05\x86\x88\x49\xa2\x61\xbc\x1e\x38\xab\x84\xee" "\x98\x57\x5b\xee\x07\xea\x54\xbd\x67\x21\xf5\x6f\x14\xb5\xa0\x6a\x14" "\xd7\x69\xc3\xc3\xc5\xc3\x85\xe9\xe8\x2e\x1c\x52\x50\x0c\x8a\x84\xa8" "\x37\x98\xe3\x31\xa6\xbe\x67\x17\x81\x42\x53\xc6\xe0\x6e\x41\x49\x15" "\x87\x7b\xe5\x19\x8d\xf5\x24\x20\x72\xe4\x10\xb4\xec\xc8\x48\xd1\x25" "\x05\x82\x1c\x7a\x9a\xb9\x9b\x44\xc0\x8b\xfe\x40\x3b\x77\x35\x80\x96" "\x6d\x09\x7f\xc1\x89\x95\xed\x0b\x0a\xfc\x39\x48\xc6\x1e\x22\x07\x62" "\xb2\xda\xd0\x6e\x47\x32\xac\x0e\xae\x48\x0c\xa4\x7d\x7a\x21\x4f\x7e" "\x6a\x66\x0f\x46\xc9\x1f\xd2\xa8\x79\xe2\xfb\xe5\x2b\xb6\x07\x41\x24" "\x2e\x99\xb0\x4f\xc9\x0b\x5c\xd4\x3b\x95\x87\xbb\x67\x58\xa3\x8b\xba" "\xcd\x35\xf0\x67\x64\x68\x21\x14\x23\x17\xc6\x9f\xf4\xec\xb8\x82\x95" "\x4e\x7e\xb8\x7c\x25\x48\x3f\xbe\xa2\x57\xa8\xad\x0c\xad\x71\x4c\xfc" "\xe6\x74\xaf\xbc\xed\xd1\x40\x8b\x54\x1d\x31\xc7\x95\x36\x7e\xfc\x33" "\xd4\x3b\x55\x8d\x5b\x1b\xfc\xb5\xc4\x6e\x10\x16\x59\x34\x24\x70\x1f" "\x80\xb1\x8c\xaa\x9a\xaa\xb6\x3c\x88\x49\xff\x55\xbb\x56\x21\xe0\x88" "\x72\xa5\xa3\x1a\xfe\xb4\xcf\x53\xac\xcc\xea\xd0\x7d\xd7\xd9\x08\x42" "\x17\x77\x85\x8b\xe8\xee\x15\x6e\x9b\x84\xfc\x75\x1f\x27\x9c\xf4\xbc" "\x0a\xb5\x56\x1e\x62\xea\x14\x81\x3d\x73\xac\xe5\xb9\xed\xaa\x45\xec" "\x8c\x60\x25\x70\xc3\x87\x98\xf4\x8d\xf1\x4e\x34\xb0\x3a\x2c\xc5\x33" "\x5e\x0e\x40\xba\x13\x0b\xf6\x1d\x6d\x1d\x0a\x86\xb0\x04\x10\xbb\x55" "\x57\x00\xd4\x59\x7e\x67\x11\x00\x94\x72\x45\x25\x6b\x10\x6f\xf4\x47" "\x28\x73\x57\x65\x75\xd6\x2c\xfe\x61\x15\xf7\xe6\xc6\xfe\xd6\x0c\xf4" "\xd2\xd6\xff\xe5\xa1\x1e\x09\xd9\x6b\x15\x48\x60\x8b\x99\xc1\x1a\x45" "\x6b\xba\xc5\xa2\xa0\x15\xb7\x8a\x86\x61\xbd\xb8\xf3\x86\xa6\x73\xb7" "\xb3\x0a\xe3\x43\x0b\x31\xb6\xa0\x69\x97\x83\xeb\xe3\x76\x22\xf5\x8c" "\x05\x56\x13\xaa\x87\xc5\xb1\xee\x94\x31\xf8\x83\xda\xfc\x1c\x46\x0a" "\xaa\x48\xdc\x19\x22\xf8\x13\x41\x65\x68\xde\x41\xcd\x5d\x1d\x39\x2c" "\x62\xcc\xdc\x6b\xf8\x1f\xec\xb4\xa0\x45\xc1\x69\x88\x90\x62\x3b\x6b" "\x92\xe8\x27\x41\x25\x44\xcb\xb0\xfc\x5a\xbb\x1a\x21\x66\xbd\x83\xcc" "\x9b\x93\x49\x02\x74\xc8\xee\xce\xed\xc2\x4c\x2d\x18\xf2\x78\xa4\x6c" "\x41\x5a\x9b\x62\xd1\xf3\x51\x59\x01\x21\x2d\x4d\xa1\xb3\x1d\x0d\xb4" "\x71\x99\x1a\xc0\xd5\xa7\x8d\xb4\x06\x77\x54\x98\x9e\x0e\x19\x32\x61" "\x9e\xe9\x92\x26\x2c\x87\x86\x36\xfa\x78\xab\xe6\x39\xb7\xbb\x4f\x38" "\xa5\x58\xab\x04\x5b\x75\xca\x45\x6d\xcd\xf5\x53\xcc\xfa\x25\xd9\x02" "\x1a\x3d\x5c\x78\x7d\x50\x21\xd2\xf0\x07\xe1\x8c\x73\x3a\xae\x8e\x9e" "\x7d\xfe\x55\x4e\xfe\x7d\x9b\xf6\x7f\x75\xa6\xf2\xe2\x4e\xd2\x94\x86" "\x5a\xde\x89\x1e\xfc\xe0\x24\x2f\x38\x3f\xf6\x34\xbd\xc3\x6c\x5e\xfc" "\x32\x7d\x31\xbf\x87\x6a\x45\x40\xb4\x02\x7f\x0c\xbd\x30\xc2\x99\xd2" "\xb7\x58\xc0\xe8\x14\xbd\x70\x59\xe5\xf6\x99\xf1\x98\x24\x7c\xf2\xc1" "\x04\xd3\xd2\x47\xe4\xf3\xdb\x97\xf9\xc7\xaa\xd2\x3f\x6f\x6c\xbf\x00" "\xad\xd7\x2a\x56\x28\x1c\xe5\xa2\x68\xb2\x68\xa9\xf0\x65\x92\x9c\x90" "\x46\xa1\x9b\xd4\x36\x85\x05\xec\x66\xca\xb2\x8e\xf1\xe3\x7c\xdd\xcf" "\xa0\x97\x54\xe7\x16\x5c\x40\xd9\x60\x87\x6f\x40\xf4\xa7\x2d\x8c\x81" "\x5e\x0e\xda\x8b\xb4\x05\xc3\x69\x2e\xc1\x94\x3f\xd3\xef\xa0\xa9\x05" "\x8a\x65\x91\xa1\x23\x21\x2a\xf6\x67\x04\x9b\xdf\x48\xbb\x17\x0d\x4c" "\xd8\xf8\x68\x85\x97\xfb\x83\x56\x27\x91\x4d\x07\xfa\x4d\xe2\xdf\x09" "\xd5\x63\x6e\xbe\x7a\x98\x92\x45\x46\xb9\xa3\xc2\x9c\x20\x6b\x99\x32" "\xfd\xb1\x58\xbc\x18\x7d\x55\x9a\x62\x77\xc3\x50\x7f\x13\xbd\xd5\x20" "\x33\xde\x75\xe6\x44\x5e\x4f\x1b\x6c\x79\x75\xdf\xbb\x75\x0c\x48\xaa" "\x54\xa1\x0e\x70\x73\x6b\x8b\x24\x79\x92\x3d\x14\xd3\x7e\x87\xcf\x74" "\xad\xd0\x7a\xe4\xc1\x7c\xa6\xdd\x29\x12\xe7\x6a\xfe\x19\xde\xc8\x8d" "\x52\x4d\x52\x02\x1b\xe9\x4d\x18\xce\x58\x7e\xe9\x0a\x5a\xd3\x5e\x7d" "\x75\x70\x4c\x24\xa3\xf9\x55\x43\x56\xd5\x34\xb3\x3f\x73\x19\x8a\xc0" "\xe6\x46\xfe\x6f\x32\x33\x50\xff\x2e\x5e\x47\x6c\x98\x1e\x55\x33\x5c" "\x59\x50\x4c\x4d\xd9\x63\xf1\x21\x94\x12\xbb\xcc\x50\xa6\x65\x37\x06" "\xcc\xfb\xf0\x40\x64\xef\x79\x8c\x9c\x09\x83\x00\x2a\x40\x43\xc6\x3e" "\x67\xbe\xd7\xbf\xc8\x6e\x41\x51\xb3\xd7\xa7\xb0\xd2\x64\xbd\xf8\x12" "\x67\x72\xa0\xfc\xe9\x2d\x6b\xcc\xeb\x3d\xd6\xa6\x61\xc8\xe3\x62\x7e" "\xed\xa9\x71\xbf\xfc\x5f\xbd\xcc\x73\x22\xa2\xb5\xac\xaf\x6d\xcf\x2d" "\x96\x16\x99\x61\xec\x71\xbd\xb7\xef\xd4\x34\x4b\xf3\xde\xd2\xe3\xb4" "\x36\x41\x05\xfa\x38\xa7\x0d\x0e\x6c\x89\xfa\x28\xe5\x9f\xce\xc1\x95" "\x12\x89\xe6\xfd\xb6\x8f\x7f\x5e\x53\x43\xd7\x58\xb1\x43\x2a\xfc\x02" "\x01\xe8\xa4\xd4\x26\x59\xda\x60\xa2\x64\xf3\xd0\x25\x68\xfc\xd6\x92" "\x51\xe9\x66\xf9\x02\xd9\xe6\xdd\x2a\xc4\xb2\x2f\xe3\x68\x3a\xff\xfb" "\x65\xfe\x8f\x71\x41\xff\x78\x71\x82\x2a\xfd\x41\x7a\x4f\xbf\x0f\xbc" "\x73\x42\x6f\xfc\x32\xbf\x98\xa4\x16\xf1\x36\xaa\x56\x2e\x19\xea\xa1" "\x68\xfe\x2a\x7b\x06\xef\xca\x48\x90\x46\x20\x9c\xdc\x98\x33\x9f\x9e" "\x35\xe0\x02\x58\x79\x6f\x82\xec\x27\xe7\x8a\xe0\x87\xf3\xed\xfa\x8b" "\x04\xfb\xa7\x47\x9d\x4f\xe0\x8f\xfa\x11\x25\x6d\x58\x97\x1f\x1d\xe5" "\x35\xb1\x8c\x6c\x3c\x28\x86\x1d\xf9\x54\x38\x4a\x86\xd6\x7a\xcd\xb0" "\xad\x7b\x23\x3d\x55\xbb\xef\x65\x5c\x42\xa1\x5a\x49\x4f\xfc\xb4\x35" "\x83\x68\xf1\x6f\xb5\x0b\xe1\x5c\xda\x6e\x9d\x0a\x5a\x08\xca\x62\xc2" "\x1e\x8b\xed\x10\xff\xbe\xa3\xff\x14\x1f\x35\xa3\xe2\x4f\x95\x7c\x7f" "\x7d\xac\xb3\x54\xff\x69\x39\x29\xfc\xad\xd6\xa8\x5e\xb9\x88\xcb\x76" "\x3c\x5e\x02\x57\xb6\x95\x50\x55\xf1\xef\x14\x63\xb9\x80\x81\xb4\xb3" "\x20\x72\xae\x92\x28\x97\x44\xfd\x26\x5b\x94\x35\xf8\xca\x08\x28\x0c" "\xd0\x1c\xe3\x6d\xad\xa1\x50\xfd\x74\xff\x26\x8b\x6e\x87\x3a\xa3\xf7" "\x1b\x18\x75\x4d\xc8\x68\x1e\x70\x41\xcf\x20\xa6\xf8\x48\x97\x12\x12" "\x5f\x42\xc1\x05\x5c\x96\x9a\xce\x07\xcf\xf0\x74\x2f\x33\x43\x87\x8a" "\x97\x15\x52\x94\xba\x97\x19\xba\xcc\xca\x6d\xb7\xb9\x48\xf9\xdc\x22" "\x1d\x8f\xf4\xf6\x76\xdd\xdf\xc1\x2c\x99\x38\x4a\x1a\x72\xb7\x44\xa7" "\xb8\xf7\x99\x96\x8d\x7f\xc6\x93\xf2\xf9\xd1\x3f\x7f\xb9\x9d\xd8\x65" "\x39\xfb\x44\x71\x35\xa9\xb1\x66\x68\xfb\xe0\x52\x99\x8d\xf0\xf0\xb7" "\x1b\x8a\x7a\x64\xcf\x3c\xbf\x01\xff\xe5\xbd\xaa\x13\x66\x68\xd4\x3e" "\xe9\x54\x17\x13\xc1\x12\x2e\x9b\x05\x07\x5a\xd0\xc1\xf9\xa6\x8f\x91" "\x51\xc1\xd5\x05\xfe\x7a\x3d\x5a\x9b\x80\x23\xac\xf7\x57\x51\x5f\x8f" "\x2d\x53\x58\x4c\x50\x3c\x25\xee\x7e\x3a\x0b\x2e\xad\x97\xa1\xfe\xcf" "\x1f\xd0\x81\xbf\xc8\x34\xf4\xeb\xb7\xad\xcc\x1a\x80\xcb\x55\xee\x05" "\xbb\x74\xcf\x44\xe5\x33\x72\xe2\x72\x2d\xaa\xf6\x8a\x29\x4e\x04\xaf" "\xb3\xcd\xab\xe2\xb2\x47\xd6\xd2\x48\x52\xe1\x33\x02\xae\x05\xd6\xa5" "\xd9\x2e\x7f\x97\x69\x72\x62\xa0\xfc\x57\x26\x1a\x30\xb4\x71\xc1\x19" "\xa2\x9a\xfe\x4a\x9b\xac\x97\x6e\x3e\x6a\x21\xd3\x9d\xb7\xa1\xc8\xf0" "\x7a\x12\x6d\x97\x45\x55\x51\x22\x62\x32\xf8\x38\xf2\xe1\x27\x37\x8d" "\x24\x86\xe4\x60\x8a\x9f\x0e\x80\x38\x24\x31\x9f\x94\xa1\xba\x57\x0e" "\x71\x1c\x0e\x34\x27\xfe\x4c\x47\x7d\x75\x9f\x1d\x0a\x45\xcd\xa4\x74" "\xfc\x55\xcc\x42\x68\xef\xe2\x0c\x98\x9e\xae\x22\xee\xfa\x4e\xf4\x15" "\xc9\x2a\x9e\x61\x7f\x70\x05\xc4\x60\xfa\x5b\xcd\x5c\xa3\x59\xb5\xfb" "\x37\x37\x55\xec\xd9\x65\xd8\x77\xd7\x1d\xf5\xd3\x41\x67\x5e\x72\xff" "\xbe\x13\x5b\xe6\xd5\x29\x79\xd7\xcf\x65\xd2\x72\xa4\x82\xf3\xea\xf2" "\x91\x02\x67\xa4\x29\x81\x6b\xa2\x69\x3a\xe4\xb9\x0f\x12\xf5\xda\x15" "\x3e\x61\xc5\x9a\x3e\xbe\x54\xa8\xea\xc4\x17\x17\x43\x04\x69\xa2\xc1" "\x50\xea\x65\xec\xf7\x35\x24\x93\x89\xb4\x6b\xc5\x15\xf5\x81\xcd\x65" "\x7f\xf7\x9c\xe9\x93\x70\xd8\x01\x87\xb2\xd9\xa9\x64\x8d\x99\xfa\x77" "\x3e\xa1\xbc\xa8\xa7\x52\x14\x7c\xdf\xa4\xa7\x57\x1f\x7c\x72\x9c\x8b" "\x54\x9b\x04\xca\x56\x0b\xa1\xca\x79\x92\x4b\x8f\x2b\x3b\xb5\xba\x41" "\xd7\x3a\xea\xa5\x36\xeb\x91\x5c\xa9\xc3\x20\x91\xe0\x7d\xd2\x43\x2b" "\x60\xc9\x93\xdb\xd9\x0b\xcc\xac\xf0\xf8\x0b\x5c\x9e\x98\xa5\xe1\x77" "\x24\x84\xf6\xd8\xb8\x39\xb6\xf2\x76\x08\xcc\xe4\xf2\x29\xa4\xb2\xc7" "\xaf\x1d\x11\x82\xb7\x7b\xf9\x34\x71\xf7\xae\x77\xb5\x9e\x95\x7b\x37" "\xf7\x5e\xb0\xe1\x0e\x61\x48\x6c\x39\xc0\xf0\xa8\xdb\xf2\xa4\x11\x0e" "\xa3\xc2\x71\x00\x24\x3b\x62\x05\xc7\xfe\x2a\x53\x3e\x7c\xf4\x5f\xcd" "\x0c\x40\x53\xf2\x9e\xfd\x25\xdb\xd7\xa1\xc7\xba\xf2\x0a\xde\xbc\xa1" "\xb6\x19\x28\x13\x61\xa6\xfb\x74\x4b\x9b\x9e\x52\xe8\x74\x18\xa6\x7d" "\x63\x56\xa7\x97\xbc\xfa\x0c\xd0\xc0\x6f\x2f\x08\x32\x83\x29\x63\xce" "\x96\x59\xe2\x63\xb6\xc5\x9d\xa9\x0a\x12\xed\x5d\x0a\xb9\xd4\x88\xa4" "\x89\xaa\xbd\x34\x6f\x96\x39\x25\xeb\x62\x16\x06\xd6\x9f\x06\xeb\x50" "\xf2\x1d\x23\xf1\x34\x76\x08\x6e\x1b\xa2\x09\xbe\xcf\x3b\x9d\xff\x30" "\x41\x17\x7d\x58\xe5\xc8\x74\xa3\x4c\x26\x8d\xd0\xff\x10\x3a\xf2\x03" "\x0f\x30\x5d\x05\xe5\x73\xc3\x72\x8f\x78\xa2\x91\xc5\xee\x07\xfd\xc9" "\xb4\xfe\xa2\xbb\x8d\x64\xfc\x28\xe2\x47\x79\xe6\x40\x74\x93\x86\x5e" "\x9e\x83\x36\x09\xd2\xb1\xdb\x62\xc4\x20\x21\xdc\xe0\xed\x10\xbb\xb9" "\xbb\x15\x94\x85\x26\x5a\x98\x89\xb4\xfa\x22\xb0\xbe\x34\xd6\x1e\x93" "\x68\x86\xb8\x12\x16\xe5\x3a\x7a\x43\x91\xf7\xda\x7b\x6e\x19\x65\xa9" "\xab\x18\x6f\xae\x86\x85\x54\x36\xbe\xcb\xf7\xd1\x9f\x66\xf8\xe9\x98" "\xfb\x22\x00\x84\xb0\x61\x71\x83\x5d\xbf\xfc\x5e\x2b\x83\x4a\x77\x2e" "\x7e\xcd\x30\xf8\x33\xef\x94\x4a\x1b\x3f\x96\x96\x82\x0a\x72\x3b\x7b" "\x80\x06\x63\x6d\x57\x4b\x56\x92\xba\x38\xc0\x43\xf6\xd8\x7b\x3f\xfb" "\x79\xa3\xae\x91\x5c\xbf\xd0\xc2\x92\x78\x69\xb8\x35\x04\x78\x76\x01" "\xf7\x07\x3c\x8a\x45\x59\xde\xee\x55\x73\xd2\x2c\x77\x6f\x59\x79\x31" "\x1d\x72\xd6\xe0\xbc\xee\x99\xa0\x72\x7a\xc7\x3d\x79\x4e\x92\x5e\x8a" "\xcc\xe2\xa0\x5f\xd8\x55\xe3\xa8\xef\xd7\xb6\x61\x59\x5f\x85\x17\xf1" "\x94\x6c\xb7\x55\xd3\x1e\xb8\x27\x20\x39\x57\x2b\xd0\x00\x3d", 8192); *(uint64_t*)0x200000000cc0 = 0; *(uint64_t*)0x200000000cc8 = 0; *(uint64_t*)0x200000000cd0 = 0; *(uint64_t*)0x200000000cd8 = 0; *(uint64_t*)0x200000000ce0 = 0; *(uint64_t*)0x200000000ce8 = 0; *(uint64_t*)0x200000000cf0 = 0; *(uint64_t*)0x200000000cf8 = 0; *(uint64_t*)0x200000000d00 = 0; *(uint64_t*)0x200000000d08 = 0; *(uint64_t*)0x200000000d10 = 0; *(uint64_t*)0x200000000d18 = 0x2000000005c0; *(uint32_t*)0x2000000005c0 = 0x90; *(uint32_t*)0x2000000005c4 = 0; *(uint64_t*)0x2000000005c8 = 5; *(uint64_t*)0x2000000005d0 = 2; *(uint64_t*)0x2000000005d8 = 0; *(uint64_t*)0x2000000005e0 = 5; *(uint64_t*)0x2000000005e8 = 0; *(uint32_t*)0x2000000005f0 = 0x3ff; *(uint32_t*)0x2000000005f4 = 0xef; *(uint64_t*)0x2000000005f8 = 0; *(uint64_t*)0x200000000600 = 0x401; *(uint64_t*)0x200000000608 = 9; *(uint64_t*)0x200000000610 = 6; *(uint64_t*)0x200000000618 = 8; *(uint64_t*)0x200000000620 = 0x8000000000000001; *(uint32_t*)0x200000000628 = 0x100; *(uint32_t*)0x20000000062c = 0xffffff97; *(uint32_t*)0x200000000630 = 1; *(uint32_t*)0x200000000634 = 0xc000; *(uint32_t*)0x200000000638 = 0xa; *(uint32_t*)0x20000000063c = r[2]; *(uint32_t*)0x200000000640 = 0; *(uint32_t*)0x200000000644 = 5; *(uint32_t*)0x200000000648 = 8; *(uint32_t*)0x20000000064c = 0; *(uint64_t*)0x200000000d20 = 0; *(uint64_t*)0x200000000d28 = 0; *(uint64_t*)0x200000000d30 = 0; *(uint64_t*)0x200000000d38 = 0; *(uint64_t*)0x200000000d40 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x2000000021c0, /*len=*/0x2000, /*res=*/0x200000000cc0); 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; }