// https://syzkaller.appspot.com/bug?id=1baa47b7286ba3ad15adf771149722db793b5280 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #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; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } #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 execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 8; 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); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x2000000003c0, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x2000000003c0ul, /*mode=*/0ul); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x2 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000000080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000080ul, /*flags=*/2, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 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*)0x200000000800, "fuse\000", 5); memcpy((void*)0x2000000003c0, "fd=", 3); sprintf((char*)0x2000000003c3, "0x%016llx", (long long)r[0]); memcpy((void*)0x2000000003d5, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x2000000003ff, "%020llu", (long long)0); memcpy((void*)0x200000000413, ",group_id=", 10); sprintf((char*)0x20000000041d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000000800ul, /*flags=*/0ul, /*opts=*/0x2000000003c0ul); 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=*/0x200000006380ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000006388; r[2] = *(uint32_t*)0x200000006390; } break; case 4: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {4e 53 50 99 4e bf 71 ce 30 49 a5 8c 5d 05 00 78 bf 16 b0 75 // 7a 4c 27 b4 55 e2 a5 47 73 95 87 dd 33 80 b5 df 8f 40 a0 69 6c 5b d6 // cd b6 72 cf fe 4d 87 0c 5c 90 ca 92 09 5b 9e bf 3e 92 fe 31 d8 cd 74 // 27 5d 85 7d 34 a7 4f 7e ec c7 fa c1 5e 2f 14 8d 4e 9d 47 bb 45 b8 58 // bb f0 78 99 99 70 d1 80 f2 8d 7b 2c ef d9 26 35 d4 5a 56 3d 92 29 c9 // fd 77 0e fd c0 84 8e 52 fa 5e fd 9a da 5c 94 a1 ba 94 b4 b7 c7 50 7f // 8b 08 19 bb 20 91 0f 9f 50 a8 3a 01 0a bb e1 26 dd 9f 6a 7b 84 ea b6 // b0 d5 ce 78 d2 ad e7 7a 5f 7e 4e 99 7d f1 d0 3f fa b4 b4 c9 45 d8 03 // e4 45 79 09 01 31 27 a9 87 69 c9 38 c2 37 f3 72 63 bc 50 9a 42 bc 56 // ff 2d bf 80 e8 47 e2 c4 07 00 9e ef 94 f1 8e 1e 59 06 9d 62 29 8f db // ad ae 00 7f fb df 40 3c 50 49 a4 53 0a c0 ab ec ce b5 60 8d a0 27 54 // c9 a5 75 af 52 c0 b7 e4 12 26 e2 d6 42 a8 14 86 1c 43 10 c9 35 bc ba // e4 13 51 6d de 21 32 65 2b 39 c7 aa 02 18 a6 ce 65 da bb 44 94 96 52 // 09 ce 87 9b a7 e7 e5 90 39 db 5c 1d 36 d6 a7 f8 6d 72 dd 59 95 4f d6 // f4 61 24 a2 50 6b 24 5a 0d b1 1a a8 9d 2f eb 31 2a 65 96 ea 2f ec aa // 7b 60 21 f3 7a 25 5f 62 8d a7 ff 6b 6c 36 b5 14 d3 b6 be 34 e5 05 f9 // da c6 ac fb 88 81 98 00 46 99 fb 35 0a c9 34 31 53 35 54 65 8c 49 57 // df 36 70 35 91 43 8d 64 88 bc 03 dd 82 90 a7 5e bb 36 7a 48 1a 50 e7 // 9a 46 b0 4d 00 56 49 ca bd 79 e5 c6 32 6c 06 6b c2 b6 fc 5f eb b8 7e // f6 6d 83 2e f3 1a 16 c2 a4 50 a0 b9 90 fb 54 9a 5d 81 0c 92 8d 1a 81 // fa 1d c7 95 db 26 07 ac 7d 46 cb 57 16 b6 8a cd eb 00 98 7e 42 9f e6 // a3 94 63 2c 83 b4 33 36 e7 b5 1d 9c fd b5 0e 83 d8 c6 ba 17 84 d9 f7 // 4c 16 b4 76 e0 48 e6 5e 7a c0 af 68 3b 34 7d 73 77 ac 17 95 42 2e 00 // e5 bd 8d a9 b3 13 af 83 ab b3 34 88 61 11 6d e7 a9 99 59 16 9b 7d ff // 9f 7d 9b 7a 6d 10 7f 2e 76 67 0a 62 14 a4 19 bf 82 98 f8 0e b5 70 fa // 29 26 4b a5 7a 38 3c 5e c5 83 6c e3 31 04 ec af 1a ec 76 e3 11 28 0a // 1d 2c 8b d7 ab ff 3a 5a 24 2e 6a 63 7f 7d b6 30 38 ef 5d 78 ac a9 c6 // 80 d7 2b 60 da 4d be b0 e1 e6 83 dd c8 28 98 64 7c 58 9a 81 b8 f9 2d // b0 67 11 d8 a0 af 05 56 0c d7 7f a7 00 52 83 db 71 e8 da 21 71 3f cc // d4 50 82 20 62 b9 94 d1 52 aa ed 2c dc f0 de c9 c6 06 17 e1 5b a4 df // 62 8d a4 e7 12 79 bf 9d 1e ee 5c 7f 05 5c 27 cd df dd 45 f9 22 5d 5d // 55 29 ef 71 19 e2 e3 c9 83 8e 73 62 97 1e 06 9b e4 87 79 7e 94 9b 24 // 29 7d e1 9c 61 34 0d 1c d7 a2 bf a3 88 0b 91 a7 1e 93 47 20 a5 9e 1e // 0e a9 92 d2 a1 63 3a 08 52 ad 8a dd fc ab 73 a2 91 e3 57 45 e6 94 a6 // 47 1f 42 9b 12 43 05 88 6c 1f 79 f6 7c 78 de 3f 3e c9 98 c9 1e 7f c5 // 9d 26 76 6c d4 46 f6 f0 de 60 3f 2c 68 92 e1 3c da a3 7d 9e 8e 11 8d // 09 8b 69 86 cc d9 91 99 3e c1 52 19 3e 7d 77 39 4b 05 b9 9e 7d 31 0c // 50 67 07 f1 be 52 24 94 38 fb a9 61 5f 6d ad 2e c7 24 4f ed f3 6e 34 // ec 31 1b 7d 6b ee 64 27 1d 64 91 07 9e 16 11 90 de d7 e2 8e 2a da 43 // 07 a9 b2 98 6c 26 7b 1a 30 d2 f7 20 ff 23 40 80 11 f1 d5 89 ce 9e e7 // 7f 98 1c 78 33 65 6c cf 7d f5 b3 a8 7e c2 53 ff 7c 7e f1 e6 7c ee b1 // 0c 93 e3 fa 68 3c da da d6 58 50 ff bc 40 2b 77 44 e9 4c de ce f9 db // 9d 26 4c 75 5c 53 d3 62 78 df 23 d4 c9 68 5f de fa 69 f7 58 8a 33 b8 // a6 4b 35 19 1e e8 1a bc b9 76 55 77 d1 75 cb 06 e3 1c 58 28 07 ff 72 // 43 bf ef 44 96 1f bc 0f 8a 23 52 42 f5 1e e9 91 ea 62 18 03 d4 dc fe // d9 0d 26 f0 04 b2 99 42 5b f2 19 f6 d1 85 fe 6e 08 8a e4 46 01 b0 3d // ef ad a1 87 94 fe ac 93 78 76 96 a5 d4 19 f0 9f 76 9b c5 90 f4 3d 2d // f6 a1 31 f6 89 5d a2 de 12 0c 26 44 68 5e 57 b1 d4 76 c6 ab a5 88 1e // 95 4f b2 57 53 56 45 2b 11 8b 94 2c b0 2b 4e a0 fc f8 f1 bb b9 a2 3b // 6e 32 c9 d0 ac cd 3d d8 61 45 2a 3a d7 7b 38 fe 70 9e 21 69 74 93 2d // eb 53 97 fd 80 33 ff 0e 07 3d 93 ac 0b 4b e7 62 bc a0 42 4d 69 bd 57 // b2 2b a9 14 13 3f 87 67 1a 29 49 8b 26 8c 29 11 e7 93 21 54 63 ca 21 // 64 e3 80 59 45 61 07 dc b2 9b ee df d6 27 7e 2b 41 a1 1d 1c 6f 13 61 // b1 98 75 c9 38 4f 04 f9 c5 3c 18 56 d7 1f 36 0a 8f af e0 5f 7a ef 75 // 0e c0 cf 2b fc fa 97 1c 01 7a d0 71 b6 9a 18 fd af 97 0b 38 4d 4c 88 // 9c fa 5a 03 97 db e8 95 43 a5 c6 30 26 45 d6 ed f9 59 aa 60 70 9c e0 // 22 5f e6 c3 26 6c 7e f6 21 57 ac 8e 78 fd dc d8 a1 f2 ca 5b 58 12 82 // 18 d1 92 76 88 55 15 77 53 26 ae ee e0 22 6c c8 10 84 3e b0 51 44 bf // 8e 2f e3 34 0c f6 0b 32 ca fd 96 d2 3c d7 d0 d3 ad cb df ec 9a 2a 3d // 88 30 7c 36 26 33 b1 c5 63 76 08 ea 84 76 d9 00 b3 f8 36 a9 73 4b 5e // ca f5 e8 29 83 57 71 28 d3 f7 4b 90 3b 0e 3b f6 43 26 c1 b5 64 ae 42 // ae eb 0c 07 70 2b 63 a9 ff 74 a2 af 6b 45 e5 18 5a 53 f3 6c 17 bc 29 // df bc 0e a2 8c a5 cc a4 3a 15 d7 51 e9 88 7a d3 e6 a8 7f aa cb 6a 27 // 8c 4c 8a 8d 21 b9 a7 7b 97 76 f3 31 02 a6 e6 45 e9 9c c5 cb c5 43 ed // 06 74 28 2c 2b 9f 8e 5d 14 c2 59 9a a9 ac 8f 81 43 8c 77 f2 b9 36 8b // da c8 2e dc dc 53 66 f3 9a de c9 e9 a3 fb d5 5b 79 ab c1 6d 2e bf f2 // 6b 7d 0c 88 f1 8b 48 6e 58 36 33 35 75 e3 fc 78 08 cb 42 3b 44 78 1c // 57 96 57 67 86 29 22 b4 ff 32 d9 ba e7 62 96 84 3a 46 f4 30 21 1c 27 // ef 9d b1 68 43 00 26 a5 69 16 23 28 4d fd 45 9d bd d1 f1 a6 ec 9b fa // d6 66 50 7e 6e ac b1 e2 a7 86 6d a2 e1 2e 6d 59 6d 0b bb 15 05 00 59 // 00 13 d9 28 8a f2 05 96 44 7f 97 bf 17 44 eb 9c fb 24 4d 8f ca 26 9b // 1f b7 1e 14 de 66 4b e4 e9 5d 83 ff f1 b8 ab cf eb cf 3e 78 c1 c6 6d // 28 f2 60 fb 0c 19 f9 fb cd 2a bb dd 7d d7 24 6e 49 dc 25 d9 54 bf 25 // f8 10 a2 ff 6f 90 69 df dc 62 e7 17 0f e3 b0 96 4b 2a c9 50 24 25 6d // fa 3e 7a 42 6b e5 bb 5f 70 7f d8 2c 2b 3a fe c5 d5 dc f5 bb b8 fc b6 // db c1 b5 9f 6c 53 30 96 6c 70 d8 b0 16 95 69 03 a4 27 88 17 41 4b a3 // 65 2a 10 2d 7e 7e 37 ec c7 94 00 26 7f c3 bf 76 01 c0 73 1f 87 d4 79 // c3 3f 10 07 35 e7 48 87 41 55 26 7f 70 8c ea 49 d5 49 e9 3c f7 a3 98 // b2 03 73 dc 90 ad 9a fd 56 d9 c7 7c d2 4e 2c 4a 18 f7 13 0b 36 6c 7f // e5 b2 6b c4 d1 1c a1 ed 1b 98 fa 0b 4d 73 96 f8 2a e6 59 3f 45 75 d1 // 9f 4d 8f d5 86 c9 91 12 9e 5c be 15 c8 ba cc 89 c3 ee 15 ca 47 1d ea // 96 6b 5c 48 ed e0 d3 ba 2a 7e 28 c7 5c 04 e6 a4 aa 49 a6 1f 4e 39 1f // fe 78 eb 5e 40 a5 ef 34 9f 3a a4 d1 5f 22 91 cc 86 ec 7e 47 ae 30 1b // f0 b6 08 3d ae 44 b6 95 82 0a 89 3d 46 73 25 53 ef 15 ed 1c 16 d2 82 // 68 d5 2a 7e 3a 7e 7c 00 9d 0c 07 08 a3 56 d3 31 0c 1e bc bc ca 4d 7a // cf 43 3e 34 bf c9 fc 11 54 98 14 2d cc 72 5e 7a 16 87 9c 75 e4 c2 f0 // 1c 6c 98 b3 96 19 f3 24 8b f5 30 e6 ee 59 34 67 e3 8c f4 02 6c fd c4 // db 62 96 56 57 22 d5 87 f3 c5 80 75 0b 14 53 ec c1 41 c0 46 14 95 55 // 12 97 d8 8a e0 34 ac bd 4f 5e 80 ce 19 8e 66 40 c4 c1 e9 50 15 29 98 // 81 09 ce f0 06 eb 20 90 a6 fc d9 74 d7 f6 02 90 b7 8f 1a 8c e3 05 1a // c2 d6 96 36 c3 21 9f 0a 6a d8 c2 54 76 43 96 a1 68 4b 2f d9 80 5b 18 // 53 52 5f 2e 64 0e 51 31 97 28 3c c4 d4 07 3a c0 33 e0 53 9a 88 f0 8a // ab e1 42 3c d4 0b 8a 7e 07 34 37 d8 12 b5 7a 5d 39 a0 53 1d cb e1 3f // 44 66 e8 9e fc 66 c2 a1 e4 b3 9a 3e 0b 30 73 c9 d4 4e 6c f9 b8 5f 4d // f5 c4 e0 36 28 d0 5b c0 f9 4e c0 42 34 c9 ec a4 ed 17 46 3f 19 04 06 // 83 4b 02 88 87 28 f6 25 37 1c da 75 d1 5e c1 9e fe bd 59 f0 0a b6 59 // eb 94 eb 88 bc b2 11 08 62 a3 69 ad 59 96 10 c1 53 0f cc 11 8f 5b 82 // 20 5b c5 21 5f e3 62 3a c8 ec 29 7d 8f f4 ee e7 5a ce 20 73 1c 5d 50 // 5e 66 05 c2 62 03 b7 f7 54 16 4c 94 63 f0 a6 ee fe 3a 28 80 b8 e0 6e // 7b c6 6b b2 ad cc 1a 3f 9b 03 25 f5 ec 31 d1 2a 25 f1 f7 3c 2a a6 bb // 3a 76 80 d7 86 a0 82 a6 3b 13 cc e1 82 2f a6 a4 b0 85 a8 71 ae 34 09 // ee cb c1 fd 86 61 b5 d5 2b b2 b8 b7 2f 23 e2 4a 22 50 75 f2 72 ed 2b // a0 c6 c5 c6 93 81 1a 0e f8 db 6d a7 cf e7 c9 66 c6 47 f0 18 7a d2 23 // ee db 10 12 a5 b7 af 10 3e 98 46 4a c7 68 c7 9b 21 ca 45 b1 2a 52 cf // 26 1d e0 d3 67 44 2c da 71 c4 b8 ee 39 c9 4d ed 1b 22 ba 06 c1 38 36 // cb 46 7e ba b4 ef ea 07 bd f1 e3 de 8d a5 6a 0e e6 d4 f8 48 01 12 53 // cc 21 fa c1 07 00 00 35 13 d3 16 7b 7a 73 e0 d7 52 b8 61 c4 98 14 bc // 54 10 eb e5 3a 02 64 f7 60 68 c9 1e e6 ec 9e 2d aa 34 34 82 b2 f0 f0 // 6e 60 5c 5a af 81 f2 a3 cd 57 0e fc 20 94 b4 bc 45 2f 95 26 f1 bb e7 // b2 2b 69 4f b8 10 9a 5a 98 7f ab f6 25 09 12 d6 09 9e 67 da 9c ac 79 // e8 b6 f2 cc e4 70 2d 1f 17 cb c5 d0 6c 38 b8 a4 81 55 ec 75 83 69 c1 // 85 de d8 39 fb 58 cd 73 6f bb 74 10 5f e5 ba f4 4e 7e 3e d0 68 43 f2 // 36 01 b6 0a 43 b1 f8 8f d2 9e 9b 3f 58 47 9f 9b 95 39 2a 39 d5 ba 1a // 31 ee 44 41 ca 2d 1f b5 7c 0a 86 78 a0 7a 72 4b 7a 65 b2 ab 16 d1 da // 19 7f 43 5b ce 3e f0 03 fc e2 7f a2 f0 a6 7c 9d d6 c9 30 a4 bc f5 9e // 79 e5 7b 01 00 00 00 6f e3 49 72 95 8c 28 b5 66 42 d1 4e a8 9b f4 d7 // d6 f7 fc bc f4 fd a8 bd 08 fc 9f e4 24 de 43 59 11 2b 11 f8 1f bd c1 // 50 56 58 36 36 97 71 3f f6 e1 f8 ca 3c 4b e3 4a 79 99 3a 90 91 f6 01 // 7c da 6c 74 89 ae 5c 07 06 25 55 23 14 27 c3 eb 42 a0 49 f4 2d 22 a0 // 60 98 3b 04 4a 7d 34 ab 5d 2b 53 86 cc a7 9a f7 23 96 a4 8a ad 6b 8d // cd 78 55 41 0f c6 10 6e 4a 16 59 94 f2 6e ff f1 e7 ea 0a a8 f5 60 33 // 3b 5d fd b2 a0 d8 99 b0 fd a9 55 15 5f 90 c7 5e ff d3 c9 53 5d 88 50 // 8e 83 6f eb 78 07 d5 7b 2a 57 cc a4 2d 3d 08 fe 7d e6 0d 2a 33 37 6f // 49 bd ac dd 3f 81 4b d0 92 7f 41 7f 15 ad 62 a1 0b 30 2f 1c b3 90 aa // f8 2b 0b c6 af 46 bb f9 90 b6 ad a4 5e f8 3c e1 30 29 d1 67 c6 51 34 // e7 b8 2b 59 dd fd c3 67 e6 1c 40 de fd 27 32 cc eb b1 d4 00 0f 6c 74 // 2d f9 64 e1 fb 39 0c 25 5d 2b 1d fc 74 5c 6a b3 4a f8 09 6b 5b 67 aa // 17 9e 3f 34 18 54 f7 a6 9f 7b f4 76 64 c8 32 03 7e c7 a7 8f 8e 27 20 // 9e 3f 20 f8 33 fb 6e 8c 0f c4 a4 09 20 a5 ad 2b 06 18 98 2f f7 25 40 // 00 9d 5d b8 2f 0f 5b ca ed 2a 27 f3 5d 1e 50 ea a0 cf 8e 48 c7 a2 d4 // 3c 25 d0 26 4d b7 50 a7 f3 3b 44 a4 bf aa e5 76 cf 9e e7 59 4e d2 04 // 51 38 99 56 65 64 ed 8b bc 97 ed 18 b1 d8 86 8f 92 6a 5c 70 ac 06 fb // ac 1e ad e4 67 92 18 6b e7 bf 8f fa 33 01 23 9e dd 09 34 49 b7 d7 71 // 92 78 2b 51 11 c1 41 69 d2 b4 a1 b3 44 3a d6 2e 4a bd f1 1a ac 6a 5b // 89 a5 b2 0a b0 ad 0a bd 94 9b 9d 64 58 2c 67 ff ce 01 8e 7e 46 de 40 // 91 fc c7 7a 65 b9 71 fc 67 c8 d9 cb f0 c3 41 ca 76 4b 10 56 ee 50 14 // d9 86 50 59 61 6a 52 5a 1d 46 ae 2f ad 15 9a fe 86 dd 1d f9 b8 24 64 // 11 82 7e 19 53 5c a0 aa 9f 83 05 0b 06 e7 0a a2 73 7f 27 e9 3d 58 4a // 9c ef 87 8a 64 2e 93 61 ef aa 5d 20 bd 8d a9 01 fa 2e 06 46 56 f6 86 // d3 b3 ea 31 d1 d8 50 ae 91 96 b7 76 45 48 f5 c6 45 0a 32 a7 17 e0 9b // 6b 7e 75 d4 3f bb da 76 e4 3a 24 f1 86 d5 57 89 33 f4 08 bf a2 8e 04 // 35 cd e5 25 fb 91 e7 1d 92 d7 04 cc 5a 9b 5e 3d b7 aa ec 46 d2 b1 f8 // dc b3 f9 21 f6 9b d7 39 7c 96 a1 e1 32 c3 9c 8f 16 56 ce a4 36 5c 77 // 9a bf 76 19 9c b5 b6 aa da 02 2e de c5 c9 01 cd af a2 e7 f3 76 5a f9 // c8 b2 0c b1 a6 78 50 85 fc b0 dc 90 13 67 b8 90 51 bd fd c6 b6 8c 52 // 15 fd 04 e2 b3 c7 e1 c4 54 a4 d2 11 32 95 3b 25 c5 09 95 af 0f 71 59 // a5 a8 d0 a1 62 1f 48 08 f1 26 a5 bd 40 dd c7 9f ed 90 f4 99 25 ee 36 // 7a 57 a0 5c 07 0f be 39 fe 2c 21 3e 7c 17 24 a9 07 ec fa 69 ef e6 e0 // 21 c0 6a 26 24 71 a4 37 7f 3c 98 09 e9 fe e4 f3 75 e2 7c 31 b6 af bb // 21 51 da 86 b7 ca b6 3c 7b 4f a4 b7 7f b3 01 72 b9 d0 d7 8b 1c 05 35 // ec 06 39 c4 91 0b 5e ee cb b5 b8 b5 c8 aa 74 c1 40 e7 ad 34 78 12 e3 // 6d b3 09 7a 7f f8 5c 09 ab 2c 00 20 20 23 07 f5 0e fe fc db 49 7b 9c // 06 0c a6 8c 4b e5 4a 91 65 b4 ce bc 6b 2e 2e 14 e5 ff b9 21 31 42 41 // 8f ae dc df 26 fd 32 6b 76 72 39 9e 71 cf ff e3 ed 71 2c ed 53 17 c2 // 54 f9 19 9e e1 0c 24 c8 02 d1 02 bd 87 49 51 3d 31 45 20 1c a4 e0 1b // c7 c8 bb cf 43 0a fa 54 1e c5 66 5f 86 df b1 43 be 64 85 21 bb 0f 2b // 02 90 18 20 14 44 78 7f 64 4f 8c 88 b7 9e 75 4e 6e a9 c7 97 ba bd ae // c7 2a 96 80 ab ad f3 a4 16 84 cd d5 7c 2b 6e 83 3a cc 08 46 be 5a a9 // 27 f1 b1 b3 65 62 d2 ac b9 ec fb 75 84 55 23 0d 05 0d ae c6 74 8b a2 // 80 a5 ed c8 6d 48 e3 f8 af 0f 8f 4f fb 18 ae 3c d3 c1 9a 82 d5 04 a4 // fd 52 bb 62 28 9a e8 02 65 72 a4 97 fe 26 8f 87 ef 4b 4b 58 86 aa 07 // ee b6 98 b7 cb f9 96 83 f7 10 af c9 ed 1f 8a 48 88 83 ce 0e b8 f7 fd // 05 5b 82 a9 fe 21 a4 09 ca a2 31 c4 1b a1 51 00 8e 96 58 91 9c 61 1e // 15 7d 7f 39 26 a5 e4 24 85 32 a6 86 0e 61 5b 9c 86 e9 fe a2 12 12 8d // 96 ed 58 c9 b8 4e f2 27 06 07 1e b6 9f 49 2e 4d 83 21 ed 9f af 6c 6a // 89 28 f8 61 72 bd c9 30 24 45 83 ea 15 be 49 7d 9c e4 ae 79 cb 3e 62 // 93 a8 51 2f fa a9 e8 e3 58 f3 c7 c7 11 70 01 fb 92 89 1a 40 b8 4f 91 // 26 cc 3d ef 5c de 67 f4 63 bb ac 96 68 b9 f5 6c 3e 4e e7 2f ce eb b4 // 7e 52 fc 22 6b ab 21 3d 81 93 51 6e 70 64 45 9f d1 36 53 50 a9 5c 5a // 1c 3a c4 4a 73 bb ba 2a 4c 17 eb e4 9d d7 81 bf f1 99 5c d7 06 b7 7b // b5 33 11 75 94 ad 63 56 6f 4c 07 30 be ab 85 ff 4c 71 3b 7f 10 b9 54 // 80 fe 99 a0 f6 76 c5 1c a1 11 16 b2 1e 87 88 7b 46 2a a9 77 0e 85 50 // 9e 4e 60 f1 98 14 81 15 f0 a3 ce 60 28 51 6a 94 61 78 d1 ac ac f7 76 // 7f 6b e7 27 78 91 36 9e ff 67 76 2a a5 8f 92 8d 48 b7 23 1e 44 d8 99 // ce a8 28 90 03 34 91 17 a5 3d 61 bc 27 b2 07 fd c9 1c 9d b6 1e 67 7d // 1e 1a 1b c6 a1 b6 e8 56 41 30 b3 35 23 3d b4 b5 de 8d 62 32 4e 6d 0c // cb 2b 08 c2 ff 92 23 24 eb 8c 50 67 11 14 2d 4b 8d 7a 21 22 3e f0 a3 // d5 34 fd b0 de 58 be 95 cd 82 71 52 f7 1b dd 0a 82 76 6b 62 b4 c8 75 // 36 f0 b7 e7 df 34 3c 42 63 18 7d a8 87 de 6e 65 d1 1d 03 60 e2 37 6c // 1d 71 c3 67 ae 85 ed ee d8 f7 67 d2 4c 64 4b 1a 9b 45 5d ed 1d c3 cc // 22 4f 99 93 6a 6e e6 69 31 c4 5e 5e 3d b2 42 77 19 ab 2d 5c d9 c2 0d // 9b b0 ec 00 4b 69 bc cb 00 64 9f 3d 8e 34 a3 57 2c 25 7d e1 14 b9 f0 // 27 d7 6b c7 db 90 07 17 5c c0 3b 9e 20 61 b6 b3 fe 74 09 e0 09 b5 37 // 15 44 e5 6f e4 38 cb d3 61 e5 b1 1e fb f2 d7 9d 1c 25 0a 1e 73 ca 8c // 60 1c 4f 4d 1e 37 61 29 09 50 42 1c 48 c7 da a4 59 65 e4 72 f5 ef 3c // 4b 85 97 44 4d c5 dc 01 cd 25 35 80 55 b5 00 06 17 f3 e7 29 1d a3 41 // 3e 3f 08 53 b1 27 13 66 61 24 05 c3 5f f1 b7 85 b9 84 d9 21 b5 18 42 // 56 28 a5 33 a2 9a b6 5d 3c 11 f4 4c 6d aa 86 f8 b6 45 7e bb 94 19 27 // 4c 48 1a a6 f3 fa 45 47 64 16 70 af f5 8b 9c c6 2c 09 93 d4 9a 50 9f // 02 de e7 55 ee 5f 1f d2 71 0c 99 5c 43 a9 1c 4f 87 3a fa 1b bd ff 19 // 42 7c ba 26 41 05 2a 8f 36 1e cb c7 2e 8a 6c f5 87 e8 3f 8b d3 11 0c // 95 fb 08 0e dc 77 a6 d4 3c d5 8c 44 7b 0e 02 26 1e 41 09 50 0c 64 58 // dc e7 0a cb 17 aa 8f 9d c1 d1 5b 94 a6 13 54 16 40 31 b5 d5 63 c2 5d // 02 46 fc 45 e6 40 1c ef ce b5 01 e1 46 89 03 e5 d6 77 75 9d be 3f 24 // bd 48 ce 55 ff 8b 8f 26 52 9f b3 b2 d6 69 20 2a 1e 8a 49 89 84 b4 49 // b4 83 0a 01 26 b1 8f 0e 78 18 2c 9c e7 8f e0 c4 48 c0 e2 78 45 b9 26 // cf de 28 fa 85 e1 56 fa 98 fe fa eb 19 ed 12 47 c9 64 3b 44 7b 43 42 // c9 4c 11 4d 3c 4c 35 ee d4 d5 b4 9a a7 0e 6a ad 45 bf b5 57 f1 5e 8f // db 2d 6e 3d 10 d8 33 8a 13 fe 3f 18 77 51 98 5b 37 a5 bb 10 b7 50 f7 // 9e 36 fc 2e 2e e9 bd ec c3 ed 15 6e 20 2e d7 b4 5a 94 80 9d 77 ed aa // 39 80 42 fc 6a 82 5a 48 48 c3 34 c5 57 30 3d 24 eb 3f 8e 01 be 06 99 // 5c eb 28 3c 70 27 2b 00 da 61 c3 38 16 28 f0 e3 72 fe 2f cc 77 9f f7 // da f7 e4 b7 f2 68 6c 39 d3 fa b6 74 b8 86 7b 62 b0 bf 9d 5c fd 0c 1d // 3b 27 05 21 f5 5f 14 7d e7 51 42 ff d7 fc 9a c7 e5 da e7 ca 2f df 26 // a9 22 2d 06 08 23 85 24 09 dd 04 0c fd 1f 66 f2 18 c6 db da aa cd da // b3 4b 12 3a f2 2f 97 38 4d 64 fa c6 4d 84 fd 63 8c 96 37 8c 8f 95 32 // a1 19 27 d4 84 40 bc 77 7f f8 b8 b9 be 88 f9 30 f3 b5 79 a7 13 c0 bc // 44 9d ca 3a 3b d5 f2 ef a9 82 40 cc c5 94 29 9e 44 45 1d c6 0c 6c 5c // 9e dd 0d 7b 77 79 12 b3 dc 40 c5 7e 0e a5 f4 42 5c d7 04 7e 68 6c 73 // 04 f0 4b a9 f7 b5 de 6a d2 bd 52 4f 1d 29 f8 80 2a 52 44 41 fa 28 60 // 15 ad f4 58 94 31 71 0a a4 d7 6d e8 a9 56 dc 1d 39 c0 a1 3a bb 7f c3 // 09 d2 42 22 d0 36 e2 04 ab 6b b4 6e f8 a7 59 5d 9e 45 12 e0 b9 d5 f8 // fd 71 9a 4e 30 72 e1 d8 06 96 70 45 78 9c 67 a1 68 1f 2a 9f 1f 4b 19 // f4 f5 e1 af da fc 17 db 7a 6d 51 96 16 14 99 e6 2a b4 b0 ec 27 64 8f // 3e eb 1f b2 b7 8f 8e cf 9b 05 cf 95 09 a3 b9 e2 a3 61 23 8d eb 1c 91 // bd bc 8b 1d 11 bb eb 93 9f d9 da 81 1c d4 39 06 9d a0 ec c0 06 65 d7 // 23 57 aa c0 1f 25 9a 03 25 40 9b 20 18 59 cc 05 69 e0 eb a6 7a 7a 9c // a7 e8 b7 80 78 d9 37 0b d3 e3 7f 05 71 68 0e de 60 cb 6b bf e6 94 35 // d6 ab 5e fd 80 cf 05 1d 11 9a 70 04 fc 0b 60 08 44 d4 92 18 d8 44 de // 8f 52 15 24 a4 7e e5 02 29 c7 da 25 e4 2a 86 39 b5 db 22 5e 7f 23 96 // 7f 5d 4f 8a 29 7a ff 04 a3 cb ed c2 98 5b 63 93 a5 ba 0b 26 b6 c7 b4 // ca 22 d3 69 b3 5b 41 07 99 d1 ad 02 82 51 04 d3 4f 73 40 8d b1 94 84 // 38 59 79 31 ed 1c 1c 26 0e 78 34 05 17 bf a2 f7 34 53 7d bd f5 ec 30 // 35 18 ff 46 40 ef e7 f7 b1 c2 f4 6b ab db 92 47 ce 8e ab ad 97 18 a8 // b9 dd b7 a1 8d 5e 87 ce d5 54 c9 d6 de 78 f8 5d 29 33 49 59 0c 6c 32 // 48 35 34 bc 96 8b 24 a2 8e b5 4b 95 15 58 9d 6d d8 eb 51 a5 ad 0b 4d // 89 6c e9 22 50 39 7c bc 40 43 23 fc df 0e e4 7e d6 34 e0 c5 82 13 bc // 5b 35 a7 2b 21 a0 98 e1 1b 79 c0 61 43 0d c8 17 c1 e0 c7 9a 5b 6e d3 // b0 02 97 99 33 f1 b8 3a 17 f2 50 b1 bd 5c 49 58 df 4d 75 53 1c a0 3e // fb da 89 f6 a9 2f e0 8c 23 ad 90 14 ff 56 2a 7f 3d cd e5 78 d6 82 5b // 98 47 b5 df 04 db ca 4f 2a a5 2d 8e 0f 4c f8 18 3c e1 21 e3 9b 50 35 // 8a 97 96 ac de 03 72 a8 ff 97 76 98 74 a8 0a b9 97 cd 88 91 45 aa d4 // 88 8c 06 96 3c 2f 5b 82 f5 3a 74 8a 67 29 fb c7 9d 35 c0 6d 84 e0 5c // 62 e4 4f f7 80 40 e5 6e bf c6 ef cf 0d 8b 49 33 7d 5a 17 c4 04 1f 0d // 5a 8b 61 62 44 d5 85 a1 62 b6 9d b0 73 ac cd 90 71 d1 2d f5 b3 26 a4 // 3b 83 4b bf fc 2f 2a 60 de af cb dd f1 c6 43 8a 17 69 d6 fb 09 fb e1 // 99 0e 89 da 12 16 4e f2 37 f3 26 ed b5 be 64 bb 64 b1 43 a0 30 de 8a // 99 b3 c5 e5 43 c8 71 cb 58 1e 2b e0 90 a9 21 34 aa 58 77 01 f8 64 90 // 7c ad d7 c1 ce 20 fc f8 f5 dc 7f 7e cd 06 a6 c1 9d 89 a9 2c a0 ad 43 // 93 c2 08 b8 0b ba 99 0c 7a 37 02 a9 c7 9b dd de 75 d5 db 24 47 19 ac // 32 19 1b 6c eb 04 1a b5 41 fb 47 68 0a 97 dc 04 22 b8 a5 0d 91 e3 2c // b0 8c d3 41 b0 b0 99 ac a5 bd 12 b6 9d 4f 89 d1 0b 75 5b 35 1a 64 89 // 18 0b 78 6a 3b eb ac 92 65 32 a4 a2 d8 5b 07 bc e6 c0 90 d1 aa af f0 // 79 e3 6d 53 94 a6 12 f1 35 1b 90 c1 3a 0f a6 bf 9d 18 8d 54 8d fe 6f // a5 1a 90 26 ed b5 20 09 c0 3e d4 5a c5 1d 05 c5 8a 95 7b cc 67 e0 5a // 58 89 85 ba 00 d7 9f 33 ae 9c dd 5f 57 21 d9 fd c7 2e e6 e8 80 70 8b // e8 7e 8a 60 c3 c0 35 c1 46 f2 09 1d 1b 9a 4c 2c fa 56 f2 92 fe 1b a6 // 22 90 d4 e5 6c 05 66 92 91 bb e9 17 f3 ca c5 18 02 a2 cc 8e 9c 90 da // df e6 66 c2 33 c5 a5 bb 71 ee 17 de ec 51 ce 60 c7 3f 57 bf 9e cb 84 // 87 3a fc c4 48 15 13 18 10 c6 c1 21 7b ea 48 5e f9 aa 27 85 e8 59 b2 // 53 15 ef 8a a3 a2 74 98 27 86 e4 5d 62 2a e8 31 fb 76 01 0d 69 a1 81 // b0 69 e4 cc 55 d4 43 6e db 10 d1 11 9b 0c 60 00 c6 d5 cf f7 c7 2f 74 // 0a 59 dc 05 07 e7 a9 52 b6 94 03 c6 26 73 f1 22 c9 d1 26 4f ac 6c e2 // 26 2e 86 cd 8d 6a 40 26 72 f8 85 30 fc 2d 16 f3 17 36 dd 49 7a 4e 85 // 32 53 ac 8d 5a ff 8d 13 76 89 5e 9f 55 19 b2 49 0c c2 a2 41 2b a0 c9 // 9c ec 85 5f 66 88 37 31 00 35 e9 2f b6 46 48 6d e1 b0 ac ff b9 1a e7 // 51 6d f3 ee ef 38 14 56 b5 5e 65 ba a5 8e 71 46 1c 92 86 87 e6 99 d2 // b2 18 14 80 55 91 38 2e 95 e1 b9 70 aa a5 32 59 91 7f 07 02 81 f2 33 // 6b 7d 57 02 49 d8 38 b3 f1 a3 27 53 c3 36 86 4e 15 f4 56 1b ad f8 fe // e0 34 a2 9c 52 ff 3f ca 74 56 ae 14 0f 83 e3 b2 fd 5b 57 c9 ae f3 f2 // 0c 66 42 00 d2 35 f2 36 ec 47 dd 2f c2 0b 14 dc 60 00 81 22 37 ae a9 // 92 d9 87 e5 46 06 79 e8 c5 b7 6d 93 1e f6 d9 51 e6 c7 08 7e 31 06 b6 // ce 2d b9 de 6f 22 8f df 3f fc 38 71 0c 0e 8d 50 00 a1 95 a7 9d 1f a2 // 30 10 38 f5 b2 7c 40 b0 9c 34 c0 25 e5 09 9d 40 c2 20 4e a0 ea e9 85 // 26 3c 91 01 ca b8 8d 68 57 a3 20 c9 e4 97 f2 23 48 a2 48 61 a5 fb 8d // 73 4e 08 ca d0 9f 99 33 74 8f f0 1e ab 22 f1 77 56 f5 86 88 dc 1b 48 // 6a 39 75 63 ee 9a d0 78 4b 88 33 cd b5 f7 c6 bc f7 6d 9c 11 05 f7 1c // 3c 6a ab ef d7 0d c6 cd 5c 66 d3 1c af 91 61 45 ac 5e d7 fa 07 0b 42 // 77 c0 44 8a b1 eb 78 c9 43 be 9a ea b0 58 7d 32 1a 4b cb 77 54 f0 70 // 88 11 78 f8 be 66 8b 68 61 24 89 9f ac 25 25 19 f4 b6 0e c4 2d b7 66 // a9 08 75 50 40 46 31 25 c2 68 50 17 74 02 a9 77 24 6d 36 d2 3a fa c0 // a1 18 89 d5 46 40 bd 8f 6f 67 0d 68 6c fd 33 f6 fc 5d 90 cf 6c bd 63 // d9 d0 fd 20 1d d4 c7 4d bb ab 89 9f 3c 23 c0 b7 e3 7e a0 b2 af f4 21 // 32 72 00 d0 da 58 b5 89 3a 41 86 ae 36 52 cc 6e 11 c2 c2 a0 e5 21 84 // a3 87 25 32 ac ce 98 c9 4c eb f4 f3 13 33 66 3a 62 0f 0d ba 0f fd 89 // c3 12 43 80 07 5b d2 8c aa 6d 44 9a 05 0b 36 61 b8 fb af 47 47 b7 7c // 49 28 b1 37 8f dc 8c 7a 7b 38 ad e1 ae ec 44 bd fa cc 82 71 d0 b1 32 // b2 02 9b 0f 35 82 f9 91 9f 5c 8c d5 43 ab c9 ca f6 b8 2b 19 7c d4 82 // c3 ef 61 a6 47 43 50 63 42 bf 50 a3 c1 ff 54 45 63 bb 8b 20 02 91 1e // e1 fa d6 98 f4 ac 13 3f fe d5 bf e8 12 39 c9 18 20 7a 03 c7 a8 bd 71 // a0 a5 02 ae a7 8d 38 e9 70 e3 ab 2a bf 75 4b 59 8a cb 79 cf 27 67 92 // aa 08 72 4d 0b a2 4f 2a 69 49 12 ab 79 5b 3f 45 f5 2d ec 50 d9 bf bc // 99 ae 27 e1 d2 c2 21 6a fe c6 70 9d 65 13 a6 4b 29 ef 58 25 5b be 18 // 47 8c 5d 4f 15 f7 4e a6 3a 1e 15 48 77 52 ee c8 fd 01 9f 1d 4a 7a a2 // 52 77 66 47 54 bd 2d 7c d3 a7 a0 18 b9 2c 56 d9 65 a1 97 48 85 36 37 // 57 28 6d a9 e0 55 ef 7f ac 17 87 6f 0a 64 c1 02 6a 59 77 33 b8 97 a9 // 15 5e cb f4 20 15 9a e8 e5 20 9a a8 3a 35 44 ff f1 fb 45 66 f2 d5 4f // 95 e3 bb d3 0d cc a5 f2 43 97 e4 bd 47 ff 01 29 2f 0d 6f e9 dd 47 a8 // 10 e0 c2 53 82 fa 69 b4 98 7d 1a fd 9b 69 ef 12 51 10 ad 6b 24 0e aa // 9c 85 82 9a 26 46 f9 ab 78 74 bc 02 bf a8 34 6c c9 19 09 43 e9 d4 6b // 44 88 06 70 b1 e2 aa 3a 29 e8 3b e5 47 2d 74 18 88 5a 35 3f aa de 6e // 8b 18 f4 b5 88 60 7b bb 75 85 88 d1 e2 f1 1a 9d fa 1c 4d 61 be 50 24 // 9f 1e e3 2e 6f f8 c0 c7 72 2a ae c1 bc 79 65 4a 47 72 ef c5 78 bd 6a // 14 c7 9a bc c7 7a 4e 09 c8 b6 c6 ea 35 cd 3a b3 1e 35 26 8f b5 5d b8 // 43 17 6f 80 42 f8 ce 7b e0 dd d4 ea d6 db da d0 ef 9e 7c b2 32 3d b5 // cc 48 11 9a 72 b2 73 06 b8 ff 63 66 c0 bc 68 2a 85 ab 9e 2c f2 23 8b // 6d 6e b2 e3 8a 97 d5 57 7e 63 34 cb 2a a6 e7 c8 6e 48 9e 87 6f 9d 70 // 53 57 7a 5c b5 7f 52 81 2f ab 7c 4b d7 b1 9a 34 c2 28 ff b6 7d ca c9 // 28 16 12 f7 78 b5 8c 58 0c 14 05 42 20 0f d0 0c b3 ad 81 d9 34 20 df // 93 c5 af 24 93 f6 46 d8 de 79 71 02 fa 0a 65 24 73 17 88 2f bf 17 15 // 20 f0 0b 2c 76 38 62 3b 82 3f f1 14 44 fd de 45 35 70 f9 9f 90 99 b6 // 00 61 a9 08 b8 33 83 ba 8b 82 bb 78 ed d0 74 dc cf 93 42 af df 8d 11 // a6 12 9b a6 ea 70 30 f3 62 90 56 26 4f 17 36 c2 b9 26 17 1b 6d c7 e1 // fa 45 5a 47 3d e6 56 39 04 95 f3 b6 ad 2f 9f 46 f3 5e ac b0 75 62 8f // f7 39 ef 78 f2 8b a6 83 44 80 68 c7 f1 8f b6 3f 28 ba 7d bb b7 89 99 // 10 0d de 0a 94 e8 b8 57 08 17 c7 11 4c 13 e1 39 ce b3 33 78 2b 29 a8 // 4a 5b 19 49 7f a7 85 91 5c 76 80 dd 7f 97 2c b5 9b a2 21 61 f6 08 86 // e5 cb 3c 3e 80 87 26 cb f9 6b c4 da 78 91 4e ee 56 5c 6d 9d 18 e7 0d // 22 cf 8c 02 44 cf 3c f4 88 c3 55 0e aa 40 0b c0 f2 6d 64 e0 f1 bc 8d // 03 01 a8 41 d9 54 07 3a 64 1f 3e f8 83 d8 1f 4d 5d b8 e9 df 70 8e 64 // e6 40 b3 8d f7 29 5f 7f e5 73 86 36 53 08 6b ae 55 07 c8 80 ab 7f db // 7a 6c 5c e7 70 27 ff a7 39 52 33 d3 ce 53 6d 77 ae 6c 2e 9c 8f fb 6f // ee 78 a3 bc b3 b5 f8 88 bd 59 5c aa 3a 55 86 94 87 76 b9 50 a8 9c de // 4d b8 24 7f ff f2 74 91 c8 82 b4 30 af dd 60 e7 a2 23 24 f6 63 5a 9a // a7 13 9f 3e 62 4c 6d 9e ce 60 f7 f8 15 3b 20 80 cf 05 44 fb f8 e1 c4 // 36 50 37 66 e6 70 b9 02 60 4a b5 21 e1 1a a5 a6 5c ed d6 4c fa f8 98 // ac 5f 55 c0 8c 87 69 3c 32 35 17 bc b0 d9 9c 28 f5 e0 72 d4 f6 54 0c // 7e ad 70 13 8d 47 c1 a6 7f d7 2b d6 ef 56 13 af 33 a0 af 31 1c 3d 0a // 63 1c a2 a2 df be 35 d1 02 1e b6 10 e4 0b 9b e1 28 68 32 35 a7 88 b5 // a4 ca cf 99 ba be e3 82 45 8d 59 e8 aa 1d d7 bb a7 e0 9d d3 0c 05 5a // 3d f8 ed 72 1a 17 78 b2 c6 ed 58 7a 40 35 66 32 5c d1 99 62 ed d7 83 // 1c aa 44 a6 b7 16 51 7b ad 50 21 30 e7 cf 6a 5c e5 28 8d c8 4c 01 70 // f6 22 ae 0b 1e 11 66 a9 c2 c0 77 1d 91 df 9f 9d d8 2a e2 10 46 96 02 // ce 38 96 47 46 c1 c1 d0 43 21 aa e7 d4 64 eb 80 1d be a7 ec 39 50 54 // 57 e7 78 20 87 74 d7 26 73 62 6c 99 8b 00 2c 46 a9 b4 b1 e3 90 d9 34 // 4f 0c a6 22 12 a1 b6 d4 10 43 a2 10 0b 35 19 6b ce 42 d4 0c aa 0e a9 // a4 86 bf 85 26 fd 1f 0f 0d 36 2c 2c ac 46 3e a7 37 7a 20 b5 4b 94 35 // 44 2c a5 29 fc 00 da 4f d7 e2 7c 4e af 14 21 5a 06 85 7b 54 25 4c 26 // 34 69 56 fd 7f e2 15 a5 ce 57 ec 38 ce df 50 a3 c7 59 e5 63 a4 fd 87 // 49 4f 00 e7 bd 9b 44 f3 b7 e9 9c 6e f6 71 87 05 6a 21 d2 fe 1a c9 d2 // 41 25 b1 94 7e b2 93 18 9f dc 44 8b 59 1a f4 d9 b8 eb 09 1d 6b bb 5e // 50 fa e7 9d 00 00 44 e2 82 bb 2a b6 c6 3c c9 56 2b 15 1c 21 4e 45 01 // 53 54 e6 2b e6 3e 18 81 23 8b 90 7f 7b db 79 1f f4 4a 4e 03 fa 29 db // d2 6d b2 f4 9d 0f 47 29 b7 cd 9b a6 9a 65 b0 b4 93 46 6d 35 d0 9b 3f // 59 0c 67 c3 16 60 d9 5e 2a b4 af 2c 9f 1d f9 1f 04 ce 5a 57 dd e2 d7 // 52 06 b4 2e 34 23 12 67 74 d7 65 93 c2 f7 13 ae 27 9d 70 92 50 6b 51 // 3f d5 d1 8f 0f 52 d3 fa fd 71 41 df d4 a0 de 10 63 75 4d ba 86 5f af // 8d c0 f6 be 9d 90 ef 21 ec 86 a2 75 53 3f 6a d4 b4 e3 60 dc 77 54 13 // f2 9e ab 8b 3d aa c6 27 9b 9a bf e1 63 ea 2f 18 3e 09 ed 91 ef 67 fb // b0 90 87 51 09 28 8a 18 2c fd cc 46 d9 06 78 ef e5 ed ce da 65 18 33 // 5e 67 84 38 ca c4 bb 47 d3 76 f3 f0 e1 2a a5 53 01 73 5d 7f 42 65 3c // 07 3d 6a 4a 37 b2 e1 7d 33 2d c1 be 6b 50 91 8c 00 7b 14 88 63 07 cc // 39 25 0e 81 ef ec d6 3d 24 06 7a 49 99 45 72 72 5a 9d f1 76 0c aa c1 // 3a 28 f5 25 55 56 b2 7e c2 45 e9 39 69 b8 5c de c7 cd 1c 2d 2a 43 3d // 3f 95 72 b9 30 54 a7 ce 8a df f8 1b c1 d3 08 84 d5 fc 47 91 e2 51 bd // 90 7e 37 af 5b ec 74 23 5c 3e 2f 80 4e 4e 04 50 b7 15 28 99 42 b7 85 // 9a d2 07 ba fc fe c1 b5 86 dc 15 e7 91 1f e6 d2 0a a3 d0 2f cd 47 e9 // 95 67 80 e3 00 d7 c5 3c 17 df a1 57 54 de b4 c2 0e fe bc 72 70 bd a0 // fa 6b 37 fc 88 c6 be 42 50 ca c3 8c 1b 81 86 b3 64 48 20 26 ab 52 d6 // 5d 3a 69 19 03 fc cc 39 77 22 77 01 1b fa a4 21 ad ba 76 be d9 73 10 // 77 be c8 85 ce 88 d4 0f 36 bb d2 a8 39 c6 7d c4 b8 62 c9 68 49 1b 87 // 7d 4f d1 3f c9 0f 8d a5 7a 29 12 1e 12 f7 8e 85 af 76 5c d6 6e 72 ba // 51 35 93 fe 1c df 20 01 99 85 b0 65 d8 28 70 7d 8e 50 9c 68 34 ea b1 // 88 de ea 5c 9e e9 79 55 f4 b0 7d 37 b6 fc 7b ee d7 3b e9 48 87 d4 23 // a3 49 f3 5b b8 78 2b c6 70 ce ae c8 70 d9 7f 06 1b da 02 ae 73 f6 d5 // 75 f8 1e 0b 63 26 ea e6 c1 b3 08 5c c5 84 68 61 20 e1 2d d9 ad 8c e4 // 40 36 be c8 a1 89 f9} (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 = 0x4000000000000 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x0 (8 bytes) // generation: int64 = 0x200000000 (8 bytes) // entry_valid: int64 = 0x20000000 (8 bytes) // attr_valid: int64 = 0x4 (8 bytes) // entry_valid_nsec: int32 = 0x6 (4 bytes) // attr_valid_nsec: int32 = 0x0 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x10001 (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0xd (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x100 (8 bytes) // atimensec: int32 = 0x10000 (4 bytes) // mtimensec: int32 = 0x2 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0x0 (4 bytes) // nlink: int32 = 0xfffffffc (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x7 (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*)0x200000004380, "\x4e\x53\x50\x99\x4e\xbf\x71\xce\x30\x49\xa5\x8c\x5d\x05\x00\x78\xbf" "\x16\xb0\x75\x7a\x4c\x27\xb4\x55\xe2\xa5\x47\x73\x95\x87\xdd\x33\x80" "\xb5\xdf\x8f\x40\xa0\x69\x6c\x5b\xd6\xcd\xb6\x72\xcf\xfe\x4d\x87\x0c" "\x5c\x90\xca\x92\x09\x5b\x9e\xbf\x3e\x92\xfe\x31\xd8\xcd\x74\x27\x5d" "\x85\x7d\x34\xa7\x4f\x7e\xec\xc7\xfa\xc1\x5e\x2f\x14\x8d\x4e\x9d\x47" "\xbb\x45\xb8\x58\xbb\xf0\x78\x99\x99\x70\xd1\x80\xf2\x8d\x7b\x2c\xef" "\xd9\x26\x35\xd4\x5a\x56\x3d\x92\x29\xc9\xfd\x77\x0e\xfd\xc0\x84\x8e" "\x52\xfa\x5e\xfd\x9a\xda\x5c\x94\xa1\xba\x94\xb4\xb7\xc7\x50\x7f\x8b" "\x08\x19\xbb\x20\x91\x0f\x9f\x50\xa8\x3a\x01\x0a\xbb\xe1\x26\xdd\x9f" "\x6a\x7b\x84\xea\xb6\xb0\xd5\xce\x78\xd2\xad\xe7\x7a\x5f\x7e\x4e\x99" "\x7d\xf1\xd0\x3f\xfa\xb4\xb4\xc9\x45\xd8\x03\xe4\x45\x79\x09\x01\x31" "\x27\xa9\x87\x69\xc9\x38\xc2\x37\xf3\x72\x63\xbc\x50\x9a\x42\xbc\x56" "\xff\x2d\xbf\x80\xe8\x47\xe2\xc4\x07\x00\x9e\xef\x94\xf1\x8e\x1e\x59" "\x06\x9d\x62\x29\x8f\xdb\xad\xae\x00\x7f\xfb\xdf\x40\x3c\x50\x49\xa4" "\x53\x0a\xc0\xab\xec\xce\xb5\x60\x8d\xa0\x27\x54\xc9\xa5\x75\xaf\x52" "\xc0\xb7\xe4\x12\x26\xe2\xd6\x42\xa8\x14\x86\x1c\x43\x10\xc9\x35\xbc" "\xba\xe4\x13\x51\x6d\xde\x21\x32\x65\x2b\x39\xc7\xaa\x02\x18\xa6\xce" "\x65\xda\xbb\x44\x94\x96\x52\x09\xce\x87\x9b\xa7\xe7\xe5\x90\x39\xdb" "\x5c\x1d\x36\xd6\xa7\xf8\x6d\x72\xdd\x59\x95\x4f\xd6\xf4\x61\x24\xa2" "\x50\x6b\x24\x5a\x0d\xb1\x1a\xa8\x9d\x2f\xeb\x31\x2a\x65\x96\xea\x2f" "\xec\xaa\x7b\x60\x21\xf3\x7a\x25\x5f\x62\x8d\xa7\xff\x6b\x6c\x36\xb5" "\x14\xd3\xb6\xbe\x34\xe5\x05\xf9\xda\xc6\xac\xfb\x88\x81\x98\x00\x46" "\x99\xfb\x35\x0a\xc9\x34\x31\x53\x35\x54\x65\x8c\x49\x57\xdf\x36\x70" "\x35\x91\x43\x8d\x64\x88\xbc\x03\xdd\x82\x90\xa7\x5e\xbb\x36\x7a\x48" "\x1a\x50\xe7\x9a\x46\xb0\x4d\x00\x56\x49\xca\xbd\x79\xe5\xc6\x32\x6c" "\x06\x6b\xc2\xb6\xfc\x5f\xeb\xb8\x7e\xf6\x6d\x83\x2e\xf3\x1a\x16\xc2" "\xa4\x50\xa0\xb9\x90\xfb\x54\x9a\x5d\x81\x0c\x92\x8d\x1a\x81\xfa\x1d" "\xc7\x95\xdb\x26\x07\xac\x7d\x46\xcb\x57\x16\xb6\x8a\xcd\xeb\x00\x98" "\x7e\x42\x9f\xe6\xa3\x94\x63\x2c\x83\xb4\x33\x36\xe7\xb5\x1d\x9c\xfd" "\xb5\x0e\x83\xd8\xc6\xba\x17\x84\xd9\xf7\x4c\x16\xb4\x76\xe0\x48\xe6" "\x5e\x7a\xc0\xaf\x68\x3b\x34\x7d\x73\x77\xac\x17\x95\x42\x2e\x00\xe5" "\xbd\x8d\xa9\xb3\x13\xaf\x83\xab\xb3\x34\x88\x61\x11\x6d\xe7\xa9\x99" "\x59\x16\x9b\x7d\xff\x9f\x7d\x9b\x7a\x6d\x10\x7f\x2e\x76\x67\x0a\x62" "\x14\xa4\x19\xbf\x82\x98\xf8\x0e\xb5\x70\xfa\x29\x26\x4b\xa5\x7a\x38" "\x3c\x5e\xc5\x83\x6c\xe3\x31\x04\xec\xaf\x1a\xec\x76\xe3\x11\x28\x0a" "\x1d\x2c\x8b\xd7\xab\xff\x3a\x5a\x24\x2e\x6a\x63\x7f\x7d\xb6\x30\x38" "\xef\x5d\x78\xac\xa9\xc6\x80\xd7\x2b\x60\xda\x4d\xbe\xb0\xe1\xe6\x83" "\xdd\xc8\x28\x98\x64\x7c\x58\x9a\x81\xb8\xf9\x2d\xb0\x67\x11\xd8\xa0" "\xaf\x05\x56\x0c\xd7\x7f\xa7\x00\x52\x83\xdb\x71\xe8\xda\x21\x71\x3f" "\xcc\xd4\x50\x82\x20\x62\xb9\x94\xd1\x52\xaa\xed\x2c\xdc\xf0\xde\xc9" "\xc6\x06\x17\xe1\x5b\xa4\xdf\x62\x8d\xa4\xe7\x12\x79\xbf\x9d\x1e\xee" "\x5c\x7f\x05\x5c\x27\xcd\xdf\xdd\x45\xf9\x22\x5d\x5d\x55\x29\xef\x71" "\x19\xe2\xe3\xc9\x83\x8e\x73\x62\x97\x1e\x06\x9b\xe4\x87\x79\x7e\x94" "\x9b\x24\x29\x7d\xe1\x9c\x61\x34\x0d\x1c\xd7\xa2\xbf\xa3\x88\x0b\x91" "\xa7\x1e\x93\x47\x20\xa5\x9e\x1e\x0e\xa9\x92\xd2\xa1\x63\x3a\x08\x52" "\xad\x8a\xdd\xfc\xab\x73\xa2\x91\xe3\x57\x45\xe6\x94\xa6\x47\x1f\x42" "\x9b\x12\x43\x05\x88\x6c\x1f\x79\xf6\x7c\x78\xde\x3f\x3e\xc9\x98\xc9" "\x1e\x7f\xc5\x9d\x26\x76\x6c\xd4\x46\xf6\xf0\xde\x60\x3f\x2c\x68\x92" "\xe1\x3c\xda\xa3\x7d\x9e\x8e\x11\x8d\x09\x8b\x69\x86\xcc\xd9\x91\x99" "\x3e\xc1\x52\x19\x3e\x7d\x77\x39\x4b\x05\xb9\x9e\x7d\x31\x0c\x50\x67" "\x07\xf1\xbe\x52\x24\x94\x38\xfb\xa9\x61\x5f\x6d\xad\x2e\xc7\x24\x4f" "\xed\xf3\x6e\x34\xec\x31\x1b\x7d\x6b\xee\x64\x27\x1d\x64\x91\x07\x9e" "\x16\x11\x90\xde\xd7\xe2\x8e\x2a\xda\x43\x07\xa9\xb2\x98\x6c\x26\x7b" "\x1a\x30\xd2\xf7\x20\xff\x23\x40\x80\x11\xf1\xd5\x89\xce\x9e\xe7\x7f" "\x98\x1c\x78\x33\x65\x6c\xcf\x7d\xf5\xb3\xa8\x7e\xc2\x53\xff\x7c\x7e" "\xf1\xe6\x7c\xee\xb1\x0c\x93\xe3\xfa\x68\x3c\xda\xda\xd6\x58\x50\xff" "\xbc\x40\x2b\x77\x44\xe9\x4c\xde\xce\xf9\xdb\x9d\x26\x4c\x75\x5c\x53" "\xd3\x62\x78\xdf\x23\xd4\xc9\x68\x5f\xde\xfa\x69\xf7\x58\x8a\x33\xb8" "\xa6\x4b\x35\x19\x1e\xe8\x1a\xbc\xb9\x76\x55\x77\xd1\x75\xcb\x06\xe3" "\x1c\x58\x28\x07\xff\x72\x43\xbf\xef\x44\x96\x1f\xbc\x0f\x8a\x23\x52" "\x42\xf5\x1e\xe9\x91\xea\x62\x18\x03\xd4\xdc\xfe\xd9\x0d\x26\xf0\x04" "\xb2\x99\x42\x5b\xf2\x19\xf6\xd1\x85\xfe\x6e\x08\x8a\xe4\x46\x01\xb0" "\x3d\xef\xad\xa1\x87\x94\xfe\xac\x93\x78\x76\x96\xa5\xd4\x19\xf0\x9f" "\x76\x9b\xc5\x90\xf4\x3d\x2d\xf6\xa1\x31\xf6\x89\x5d\xa2\xde\x12\x0c" "\x26\x44\x68\x5e\x57\xb1\xd4\x76\xc6\xab\xa5\x88\x1e\x95\x4f\xb2\x57" "\x53\x56\x45\x2b\x11\x8b\x94\x2c\xb0\x2b\x4e\xa0\xfc\xf8\xf1\xbb\xb9" "\xa2\x3b\x6e\x32\xc9\xd0\xac\xcd\x3d\xd8\x61\x45\x2a\x3a\xd7\x7b\x38" "\xfe\x70\x9e\x21\x69\x74\x93\x2d\xeb\x53\x97\xfd\x80\x33\xff\x0e\x07" "\x3d\x93\xac\x0b\x4b\xe7\x62\xbc\xa0\x42\x4d\x69\xbd\x57\xb2\x2b\xa9" "\x14\x13\x3f\x87\x67\x1a\x29\x49\x8b\x26\x8c\x29\x11\xe7\x93\x21\x54" "\x63\xca\x21\x64\xe3\x80\x59\x45\x61\x07\xdc\xb2\x9b\xee\xdf\xd6\x27" "\x7e\x2b\x41\xa1\x1d\x1c\x6f\x13\x61\xb1\x98\x75\xc9\x38\x4f\x04\xf9" "\xc5\x3c\x18\x56\xd7\x1f\x36\x0a\x8f\xaf\xe0\x5f\x7a\xef\x75\x0e\xc0" "\xcf\x2b\xfc\xfa\x97\x1c\x01\x7a\xd0\x71\xb6\x9a\x18\xfd\xaf\x97\x0b" "\x38\x4d\x4c\x88\x9c\xfa\x5a\x03\x97\xdb\xe8\x95\x43\xa5\xc6\x30\x26" "\x45\xd6\xed\xf9\x59\xaa\x60\x70\x9c\xe0\x22\x5f\xe6\xc3\x26\x6c\x7e" "\xf6\x21\x57\xac\x8e\x78\xfd\xdc\xd8\xa1\xf2\xca\x5b\x58\x12\x82\x18" "\xd1\x92\x76\x88\x55\x15\x77\x53\x26\xae\xee\xe0\x22\x6c\xc8\x10\x84" "\x3e\xb0\x51\x44\xbf\x8e\x2f\xe3\x34\x0c\xf6\x0b\x32\xca\xfd\x96\xd2" "\x3c\xd7\xd0\xd3\xad\xcb\xdf\xec\x9a\x2a\x3d\x88\x30\x7c\x36\x26\x33" "\xb1\xc5\x63\x76\x08\xea\x84\x76\xd9\x00\xb3\xf8\x36\xa9\x73\x4b\x5e" "\xca\xf5\xe8\x29\x83\x57\x71\x28\xd3\xf7\x4b\x90\x3b\x0e\x3b\xf6\x43" "\x26\xc1\xb5\x64\xae\x42\xae\xeb\x0c\x07\x70\x2b\x63\xa9\xff\x74\xa2" "\xaf\x6b\x45\xe5\x18\x5a\x53\xf3\x6c\x17\xbc\x29\xdf\xbc\x0e\xa2\x8c" "\xa5\xcc\xa4\x3a\x15\xd7\x51\xe9\x88\x7a\xd3\xe6\xa8\x7f\xaa\xcb\x6a" "\x27\x8c\x4c\x8a\x8d\x21\xb9\xa7\x7b\x97\x76\xf3\x31\x02\xa6\xe6\x45" "\xe9\x9c\xc5\xcb\xc5\x43\xed\x06\x74\x28\x2c\x2b\x9f\x8e\x5d\x14\xc2" "\x59\x9a\xa9\xac\x8f\x81\x43\x8c\x77\xf2\xb9\x36\x8b\xda\xc8\x2e\xdc" "\xdc\x53\x66\xf3\x9a\xde\xc9\xe9\xa3\xfb\xd5\x5b\x79\xab\xc1\x6d\x2e" "\xbf\xf2\x6b\x7d\x0c\x88\xf1\x8b\x48\x6e\x58\x36\x33\x35\x75\xe3\xfc" "\x78\x08\xcb\x42\x3b\x44\x78\x1c\x57\x96\x57\x67\x86\x29\x22\xb4\xff" "\x32\xd9\xba\xe7\x62\x96\x84\x3a\x46\xf4\x30\x21\x1c\x27\xef\x9d\xb1" "\x68\x43\x00\x26\xa5\x69\x16\x23\x28\x4d\xfd\x45\x9d\xbd\xd1\xf1\xa6" "\xec\x9b\xfa\xd6\x66\x50\x7e\x6e\xac\xb1\xe2\xa7\x86\x6d\xa2\xe1\x2e" "\x6d\x59\x6d\x0b\xbb\x15\x05\x00\x59\x00\x13\xd9\x28\x8a\xf2\x05\x96" "\x44\x7f\x97\xbf\x17\x44\xeb\x9c\xfb\x24\x4d\x8f\xca\x26\x9b\x1f\xb7" "\x1e\x14\xde\x66\x4b\xe4\xe9\x5d\x83\xff\xf1\xb8\xab\xcf\xeb\xcf\x3e" "\x78\xc1\xc6\x6d\x28\xf2\x60\xfb\x0c\x19\xf9\xfb\xcd\x2a\xbb\xdd\x7d" "\xd7\x24\x6e\x49\xdc\x25\xd9\x54\xbf\x25\xf8\x10\xa2\xff\x6f\x90\x69" "\xdf\xdc\x62\xe7\x17\x0f\xe3\xb0\x96\x4b\x2a\xc9\x50\x24\x25\x6d\xfa" "\x3e\x7a\x42\x6b\xe5\xbb\x5f\x70\x7f\xd8\x2c\x2b\x3a\xfe\xc5\xd5\xdc" "\xf5\xbb\xb8\xfc\xb6\xdb\xc1\xb5\x9f\x6c\x53\x30\x96\x6c\x70\xd8\xb0" "\x16\x95\x69\x03\xa4\x27\x88\x17\x41\x4b\xa3\x65\x2a\x10\x2d\x7e\x7e" "\x37\xec\xc7\x94\x00\x26\x7f\xc3\xbf\x76\x01\xc0\x73\x1f\x87\xd4\x79" "\xc3\x3f\x10\x07\x35\xe7\x48\x87\x41\x55\x26\x7f\x70\x8c\xea\x49\xd5" "\x49\xe9\x3c\xf7\xa3\x98\xb2\x03\x73\xdc\x90\xad\x9a\xfd\x56\xd9\xc7" "\x7c\xd2\x4e\x2c\x4a\x18\xf7\x13\x0b\x36\x6c\x7f\xe5\xb2\x6b\xc4\xd1" "\x1c\xa1\xed\x1b\x98\xfa\x0b\x4d\x73\x96\xf8\x2a\xe6\x59\x3f\x45\x75" "\xd1\x9f\x4d\x8f\xd5\x86\xc9\x91\x12\x9e\x5c\xbe\x15\xc8\xba\xcc\x89" "\xc3\xee\x15\xca\x47\x1d\xea\x96\x6b\x5c\x48\xed\xe0\xd3\xba\x2a\x7e" "\x28\xc7\x5c\x04\xe6\xa4\xaa\x49\xa6\x1f\x4e\x39\x1f\xfe\x78\xeb\x5e" "\x40\xa5\xef\x34\x9f\x3a\xa4\xd1\x5f\x22\x91\xcc\x86\xec\x7e\x47\xae" "\x30\x1b\xf0\xb6\x08\x3d\xae\x44\xb6\x95\x82\x0a\x89\x3d\x46\x73\x25" "\x53\xef\x15\xed\x1c\x16\xd2\x82\x68\xd5\x2a\x7e\x3a\x7e\x7c\x00\x9d" "\x0c\x07\x08\xa3\x56\xd3\x31\x0c\x1e\xbc\xbc\xca\x4d\x7a\xcf\x43\x3e" "\x34\xbf\xc9\xfc\x11\x54\x98\x14\x2d\xcc\x72\x5e\x7a\x16\x87\x9c\x75" "\xe4\xc2\xf0\x1c\x6c\x98\xb3\x96\x19\xf3\x24\x8b\xf5\x30\xe6\xee\x59" "\x34\x67\xe3\x8c\xf4\x02\x6c\xfd\xc4\xdb\x62\x96\x56\x57\x22\xd5\x87" "\xf3\xc5\x80\x75\x0b\x14\x53\xec\xc1\x41\xc0\x46\x14\x95\x55\x12\x97" "\xd8\x8a\xe0\x34\xac\xbd\x4f\x5e\x80\xce\x19\x8e\x66\x40\xc4\xc1\xe9" "\x50\x15\x29\x98\x81\x09\xce\xf0\x06\xeb\x20\x90\xa6\xfc\xd9\x74\xd7" "\xf6\x02\x90\xb7\x8f\x1a\x8c\xe3\x05\x1a\xc2\xd6\x96\x36\xc3\x21\x9f" "\x0a\x6a\xd8\xc2\x54\x76\x43\x96\xa1\x68\x4b\x2f\xd9\x80\x5b\x18\x53" "\x52\x5f\x2e\x64\x0e\x51\x31\x97\x28\x3c\xc4\xd4\x07\x3a\xc0\x33\xe0" "\x53\x9a\x88\xf0\x8a\xab\xe1\x42\x3c\xd4\x0b\x8a\x7e\x07\x34\x37\xd8" "\x12\xb5\x7a\x5d\x39\xa0\x53\x1d\xcb\xe1\x3f\x44\x66\xe8\x9e\xfc\x66" "\xc2\xa1\xe4\xb3\x9a\x3e\x0b\x30\x73\xc9\xd4\x4e\x6c\xf9\xb8\x5f\x4d" "\xf5\xc4\xe0\x36\x28\xd0\x5b\xc0\xf9\x4e\xc0\x42\x34\xc9\xec\xa4\xed" "\x17\x46\x3f\x19\x04\x06\x83\x4b\x02\x88\x87\x28\xf6\x25\x37\x1c\xda" "\x75\xd1\x5e\xc1\x9e\xfe\xbd\x59\xf0\x0a\xb6\x59\xeb\x94\xeb\x88\xbc" "\xb2\x11\x08\x62\xa3\x69\xad\x59\x96\x10\xc1\x53\x0f\xcc\x11\x8f\x5b" "\x82\x20\x5b\xc5\x21\x5f\xe3\x62\x3a\xc8\xec\x29\x7d\x8f\xf4\xee\xe7" "\x5a\xce\x20\x73\x1c\x5d\x50\x5e\x66\x05\xc2\x62\x03\xb7\xf7\x54\x16" "\x4c\x94\x63\xf0\xa6\xee\xfe\x3a\x28\x80\xb8\xe0\x6e\x7b\xc6\x6b\xb2" "\xad\xcc\x1a\x3f\x9b\x03\x25\xf5\xec\x31\xd1\x2a\x25\xf1\xf7\x3c\x2a" "\xa6\xbb\x3a\x76\x80\xd7\x86\xa0\x82\xa6\x3b\x13\xcc\xe1\x82\x2f\xa6" "\xa4\xb0\x85\xa8\x71\xae\x34\x09\xee\xcb\xc1\xfd\x86\x61\xb5\xd5\x2b" "\xb2\xb8\xb7\x2f\x23\xe2\x4a\x22\x50\x75\xf2\x72\xed\x2b\xa0\xc6\xc5" "\xc6\x93\x81\x1a\x0e\xf8\xdb\x6d\xa7\xcf\xe7\xc9\x66\xc6\x47\xf0\x18" "\x7a\xd2\x23\xee\xdb\x10\x12\xa5\xb7\xaf\x10\x3e\x98\x46\x4a\xc7\x68" "\xc7\x9b\x21\xca\x45\xb1\x2a\x52\xcf\x26\x1d\xe0\xd3\x67\x44\x2c\xda" "\x71\xc4\xb8\xee\x39\xc9\x4d\xed\x1b\x22\xba\x06\xc1\x38\x36\xcb\x46" "\x7e\xba\xb4\xef\xea\x07\xbd\xf1\xe3\xde\x8d\xa5\x6a\x0e\xe6\xd4\xf8" "\x48\x01\x12\x53\xcc\x21\xfa\xc1\x07\x00\x00\x35\x13\xd3\x16\x7b\x7a" "\x73\xe0\xd7\x52\xb8\x61\xc4\x98\x14\xbc\x54\x10\xeb\xe5\x3a\x02\x64" "\xf7\x60\x68\xc9\x1e\xe6\xec\x9e\x2d\xaa\x34\x34\x82\xb2\xf0\xf0\x6e" "\x60\x5c\x5a\xaf\x81\xf2\xa3\xcd\x57\x0e\xfc\x20\x94\xb4\xbc\x45\x2f" "\x95\x26\xf1\xbb\xe7\xb2\x2b\x69\x4f\xb8\x10\x9a\x5a\x98\x7f\xab\xf6" "\x25\x09\x12\xd6\x09\x9e\x67\xda\x9c\xac\x79\xe8\xb6\xf2\xcc\xe4\x70" "\x2d\x1f\x17\xcb\xc5\xd0\x6c\x38\xb8\xa4\x81\x55\xec\x75\x83\x69\xc1" "\x85\xde\xd8\x39\xfb\x58\xcd\x73\x6f\xbb\x74\x10\x5f\xe5\xba\xf4\x4e" "\x7e\x3e\xd0\x68\x43\xf2\x36\x01\xb6\x0a\x43\xb1\xf8\x8f\xd2\x9e\x9b" "\x3f\x58\x47\x9f\x9b\x95\x39\x2a\x39\xd5\xba\x1a\x31\xee\x44\x41\xca" "\x2d\x1f\xb5\x7c\x0a\x86\x78\xa0\x7a\x72\x4b\x7a\x65\xb2\xab\x16\xd1" "\xda\x19\x7f\x43\x5b\xce\x3e\xf0\x03\xfc\xe2\x7f\xa2\xf0\xa6\x7c\x9d" "\xd6\xc9\x30\xa4\xbc\xf5\x9e\x79\xe5\x7b\x01\x00\x00\x00\x6f\xe3\x49" "\x72\x95\x8c\x28\xb5\x66\x42\xd1\x4e\xa8\x9b\xf4\xd7\xd6\xf7\xfc\xbc" "\xf4\xfd\xa8\xbd\x08\xfc\x9f\xe4\x24\xde\x43\x59\x11\x2b\x11\xf8\x1f" "\xbd\xc1\x50\x56\x58\x36\x36\x97\x71\x3f\xf6\xe1\xf8\xca\x3c\x4b\xe3" "\x4a\x79\x99\x3a\x90\x91\xf6\x01\x7c\xda\x6c\x74\x89\xae\x5c\x07\x06" "\x25\x55\x23\x14\x27\xc3\xeb\x42\xa0\x49\xf4\x2d\x22\xa0\x60\x98\x3b" "\x04\x4a\x7d\x34\xab\x5d\x2b\x53\x86\xcc\xa7\x9a\xf7\x23\x96\xa4\x8a" "\xad\x6b\x8d\xcd\x78\x55\x41\x0f\xc6\x10\x6e\x4a\x16\x59\x94\xf2\x6e" "\xff\xf1\xe7\xea\x0a\xa8\xf5\x60\x33\x3b\x5d\xfd\xb2\xa0\xd8\x99\xb0" "\xfd\xa9\x55\x15\x5f\x90\xc7\x5e\xff\xd3\xc9\x53\x5d\x88\x50\x8e\x83" "\x6f\xeb\x78\x07\xd5\x7b\x2a\x57\xcc\xa4\x2d\x3d\x08\xfe\x7d\xe6\x0d" "\x2a\x33\x37\x6f\x49\xbd\xac\xdd\x3f\x81\x4b\xd0\x92\x7f\x41\x7f\x15" "\xad\x62\xa1\x0b\x30\x2f\x1c\xb3\x90\xaa\xf8\x2b\x0b\xc6\xaf\x46\xbb" "\xf9\x90\xb6\xad\xa4\x5e\xf8\x3c\xe1\x30\x29\xd1\x67\xc6\x51\x34\xe7" "\xb8\x2b\x59\xdd\xfd\xc3\x67\xe6\x1c\x40\xde\xfd\x27\x32\xcc\xeb\xb1" "\xd4\x00\x0f\x6c\x74\x2d\xf9\x64\xe1\xfb\x39\x0c\x25\x5d\x2b\x1d\xfc" "\x74\x5c\x6a\xb3\x4a\xf8\x09\x6b\x5b\x67\xaa\x17\x9e\x3f\x34\x18\x54" "\xf7\xa6\x9f\x7b\xf4\x76\x64\xc8\x32\x03\x7e\xc7\xa7\x8f\x8e\x27\x20" "\x9e\x3f\x20\xf8\x33\xfb\x6e\x8c\x0f\xc4\xa4\x09\x20\xa5\xad\x2b\x06" "\x18\x98\x2f\xf7\x25\x40\x00\x9d\x5d\xb8\x2f\x0f\x5b\xca\xed\x2a\x27" "\xf3\x5d\x1e\x50\xea\xa0\xcf\x8e\x48\xc7\xa2\xd4\x3c\x25\xd0\x26\x4d" "\xb7\x50\xa7\xf3\x3b\x44\xa4\xbf\xaa\xe5\x76\xcf\x9e\xe7\x59\x4e\xd2" "\x04\x51\x38\x99\x56\x65\x64\xed\x8b\xbc\x97\xed\x18\xb1\xd8\x86\x8f" "\x92\x6a\x5c\x70\xac\x06\xfb\xac\x1e\xad\xe4\x67\x92\x18\x6b\xe7\xbf" "\x8f\xfa\x33\x01\x23\x9e\xdd\x09\x34\x49\xb7\xd7\x71\x92\x78\x2b\x51" "\x11\xc1\x41\x69\xd2\xb4\xa1\xb3\x44\x3a\xd6\x2e\x4a\xbd\xf1\x1a\xac" "\x6a\x5b\x89\xa5\xb2\x0a\xb0\xad\x0a\xbd\x94\x9b\x9d\x64\x58\x2c\x67" "\xff\xce\x01\x8e\x7e\x46\xde\x40\x91\xfc\xc7\x7a\x65\xb9\x71\xfc\x67" "\xc8\xd9\xcb\xf0\xc3\x41\xca\x76\x4b\x10\x56\xee\x50\x14\xd9\x86\x50" "\x59\x61\x6a\x52\x5a\x1d\x46\xae\x2f\xad\x15\x9a\xfe\x86\xdd\x1d\xf9" "\xb8\x24\x64\x11\x82\x7e\x19\x53\x5c\xa0\xaa\x9f\x83\x05\x0b\x06\xe7" "\x0a\xa2\x73\x7f\x27\xe9\x3d\x58\x4a\x9c\xef\x87\x8a\x64\x2e\x93\x61" "\xef\xaa\x5d\x20\xbd\x8d\xa9\x01\xfa\x2e\x06\x46\x56\xf6\x86\xd3\xb3" "\xea\x31\xd1\xd8\x50\xae\x91\x96\xb7\x76\x45\x48\xf5\xc6\x45\x0a\x32" "\xa7\x17\xe0\x9b\x6b\x7e\x75\xd4\x3f\xbb\xda\x76\xe4\x3a\x24\xf1\x86" "\xd5\x57\x89\x33\xf4\x08\xbf\xa2\x8e\x04\x35\xcd\xe5\x25\xfb\x91\xe7" "\x1d\x92\xd7\x04\xcc\x5a\x9b\x5e\x3d\xb7\xaa\xec\x46\xd2\xb1\xf8\xdc" "\xb3\xf9\x21\xf6\x9b\xd7\x39\x7c\x96\xa1\xe1\x32\xc3\x9c\x8f\x16\x56" "\xce\xa4\x36\x5c\x77\x9a\xbf\x76\x19\x9c\xb5\xb6\xaa\xda\x02\x2e\xde" "\xc5\xc9\x01\xcd\xaf\xa2\xe7\xf3\x76\x5a\xf9\xc8\xb2\x0c\xb1\xa6\x78" "\x50\x85\xfc\xb0\xdc\x90\x13\x67\xb8\x90\x51\xbd\xfd\xc6\xb6\x8c\x52" "\x15\xfd\x04\xe2\xb3\xc7\xe1\xc4\x54\xa4\xd2\x11\x32\x95\x3b\x25\xc5" "\x09\x95\xaf\x0f\x71\x59\xa5\xa8\xd0\xa1\x62\x1f\x48\x08\xf1\x26\xa5" "\xbd\x40\xdd\xc7\x9f\xed\x90\xf4\x99\x25\xee\x36\x7a\x57\xa0\x5c\x07" "\x0f\xbe\x39\xfe\x2c\x21\x3e\x7c\x17\x24\xa9\x07\xec\xfa\x69\xef\xe6" "\xe0\x21\xc0\x6a\x26\x24\x71\xa4\x37\x7f\x3c\x98\x09\xe9\xfe\xe4\xf3" "\x75\xe2\x7c\x31\xb6\xaf\xbb\x21\x51\xda\x86\xb7\xca\xb6\x3c\x7b\x4f" "\xa4\xb7\x7f\xb3\x01\x72\xb9\xd0\xd7\x8b\x1c\x05\x35\xec\x06\x39\xc4" "\x91\x0b\x5e\xee\xcb\xb5\xb8\xb5\xc8\xaa\x74\xc1\x40\xe7\xad\x34\x78" "\x12\xe3\x6d\xb3\x09\x7a\x7f\xf8\x5c\x09\xab\x2c\x00\x20\x20\x23\x07" "\xf5\x0e\xfe\xfc\xdb\x49\x7b\x9c\x06\x0c\xa6\x8c\x4b\xe5\x4a\x91\x65" "\xb4\xce\xbc\x6b\x2e\x2e\x14\xe5\xff\xb9\x21\x31\x42\x41\x8f\xae\xdc" "\xdf\x26\xfd\x32\x6b\x76\x72\x39\x9e\x71\xcf\xff\xe3\xed\x71\x2c\xed" "\x53\x17\xc2\x54\xf9\x19\x9e\xe1\x0c\x24\xc8\x02\xd1\x02\xbd\x87\x49" "\x51\x3d\x31\x45\x20\x1c\xa4\xe0\x1b\xc7\xc8\xbb\xcf\x43\x0a\xfa\x54" "\x1e\xc5\x66\x5f\x86\xdf\xb1\x43\xbe\x64\x85\x21\xbb\x0f\x2b\x02\x90" "\x18\x20\x14\x44\x78\x7f\x64\x4f\x8c\x88\xb7\x9e\x75\x4e\x6e\xa9\xc7" "\x97\xba\xbd\xae\xc7\x2a\x96\x80\xab\xad\xf3\xa4\x16\x84\xcd\xd5\x7c" "\x2b\x6e\x83\x3a\xcc\x08\x46\xbe\x5a\xa9\x27\xf1\xb1\xb3\x65\x62\xd2" "\xac\xb9\xec\xfb\x75\x84\x55\x23\x0d\x05\x0d\xae\xc6\x74\x8b\xa2\x80" "\xa5\xed\xc8\x6d\x48\xe3\xf8\xaf\x0f\x8f\x4f\xfb\x18\xae\x3c\xd3\xc1" "\x9a\x82\xd5\x04\xa4\xfd\x52\xbb\x62\x28\x9a\xe8\x02\x65\x72\xa4\x97" "\xfe\x26\x8f\x87\xef\x4b\x4b\x58\x86\xaa\x07\xee\xb6\x98\xb7\xcb\xf9" "\x96\x83\xf7\x10\xaf\xc9\xed\x1f\x8a\x48\x88\x83\xce\x0e\xb8\xf7\xfd" "\x05\x5b\x82\xa9\xfe\x21\xa4\x09\xca\xa2\x31\xc4\x1b\xa1\x51\x00\x8e" "\x96\x58\x91\x9c\x61\x1e\x15\x7d\x7f\x39\x26\xa5\xe4\x24\x85\x32\xa6" "\x86\x0e\x61\x5b\x9c\x86\xe9\xfe\xa2\x12\x12\x8d\x96\xed\x58\xc9\xb8" "\x4e\xf2\x27\x06\x07\x1e\xb6\x9f\x49\x2e\x4d\x83\x21\xed\x9f\xaf\x6c" "\x6a\x89\x28\xf8\x61\x72\xbd\xc9\x30\x24\x45\x83\xea\x15\xbe\x49\x7d" "\x9c\xe4\xae\x79\xcb\x3e\x62\x93\xa8\x51\x2f\xfa\xa9\xe8\xe3\x58\xf3" "\xc7\xc7\x11\x70\x01\xfb\x92\x89\x1a\x40\xb8\x4f\x91\x26\xcc\x3d\xef" "\x5c\xde\x67\xf4\x63\xbb\xac\x96\x68\xb9\xf5\x6c\x3e\x4e\xe7\x2f\xce" "\xeb\xb4\x7e\x52\xfc\x22\x6b\xab\x21\x3d\x81\x93\x51\x6e\x70\x64\x45" "\x9f\xd1\x36\x53\x50\xa9\x5c\x5a\x1c\x3a\xc4\x4a\x73\xbb\xba\x2a\x4c" "\x17\xeb\xe4\x9d\xd7\x81\xbf\xf1\x99\x5c\xd7\x06\xb7\x7b\xb5\x33\x11" "\x75\x94\xad\x63\x56\x6f\x4c\x07\x30\xbe\xab\x85\xff\x4c\x71\x3b\x7f" "\x10\xb9\x54\x80\xfe\x99\xa0\xf6\x76\xc5\x1c\xa1\x11\x16\xb2\x1e\x87" "\x88\x7b\x46\x2a\xa9\x77\x0e\x85\x50\x9e\x4e\x60\xf1\x98\x14\x81\x15" "\xf0\xa3\xce\x60\x28\x51\x6a\x94\x61\x78\xd1\xac\xac\xf7\x76\x7f\x6b" "\xe7\x27\x78\x91\x36\x9e\xff\x67\x76\x2a\xa5\x8f\x92\x8d\x48\xb7\x23" "\x1e\x44\xd8\x99\xce\xa8\x28\x90\x03\x34\x91\x17\xa5\x3d\x61\xbc\x27" "\xb2\x07\xfd\xc9\x1c\x9d\xb6\x1e\x67\x7d\x1e\x1a\x1b\xc6\xa1\xb6\xe8" "\x56\x41\x30\xb3\x35\x23\x3d\xb4\xb5\xde\x8d\x62\x32\x4e\x6d\x0c\xcb" "\x2b\x08\xc2\xff\x92\x23\x24\xeb\x8c\x50\x67\x11\x14\x2d\x4b\x8d\x7a" "\x21\x22\x3e\xf0\xa3\xd5\x34\xfd\xb0\xde\x58\xbe\x95\xcd\x82\x71\x52" "\xf7\x1b\xdd\x0a\x82\x76\x6b\x62\xb4\xc8\x75\x36\xf0\xb7\xe7\xdf\x34" "\x3c\x42\x63\x18\x7d\xa8\x87\xde\x6e\x65\xd1\x1d\x03\x60\xe2\x37\x6c" "\x1d\x71\xc3\x67\xae\x85\xed\xee\xd8\xf7\x67\xd2\x4c\x64\x4b\x1a\x9b" "\x45\x5d\xed\x1d\xc3\xcc\x22\x4f\x99\x93\x6a\x6e\xe6\x69\x31\xc4\x5e" "\x5e\x3d\xb2\x42\x77\x19\xab\x2d\x5c\xd9\xc2\x0d\x9b\xb0\xec\x00\x4b" "\x69\xbc\xcb\x00\x64\x9f\x3d\x8e\x34\xa3\x57\x2c\x25\x7d\xe1\x14\xb9" "\xf0\x27\xd7\x6b\xc7\xdb\x90\x07\x17\x5c\xc0\x3b\x9e\x20\x61\xb6\xb3" "\xfe\x74\x09\xe0\x09\xb5\x37\x15\x44\xe5\x6f\xe4\x38\xcb\xd3\x61\xe5" "\xb1\x1e\xfb\xf2\xd7\x9d\x1c\x25\x0a\x1e\x73\xca\x8c\x60\x1c\x4f\x4d" "\x1e\x37\x61\x29\x09\x50\x42\x1c\x48\xc7\xda\xa4\x59\x65\xe4\x72\xf5" "\xef\x3c\x4b\x85\x97\x44\x4d\xc5\xdc\x01\xcd\x25\x35\x80\x55\xb5\x00" "\x06\x17\xf3\xe7\x29\x1d\xa3\x41\x3e\x3f\x08\x53\xb1\x27\x13\x66\x61" "\x24\x05\xc3\x5f\xf1\xb7\x85\xb9\x84\xd9\x21\xb5\x18\x42\x56\x28\xa5" "\x33\xa2\x9a\xb6\x5d\x3c\x11\xf4\x4c\x6d\xaa\x86\xf8\xb6\x45\x7e\xbb" "\x94\x19\x27\x4c\x48\x1a\xa6\xf3\xfa\x45\x47\x64\x16\x70\xaf\xf5\x8b" "\x9c\xc6\x2c\x09\x93\xd4\x9a\x50\x9f\x02\xde\xe7\x55\xee\x5f\x1f\xd2" "\x71\x0c\x99\x5c\x43\xa9\x1c\x4f\x87\x3a\xfa\x1b\xbd\xff\x19\x42\x7c" "\xba\x26\x41\x05\x2a\x8f\x36\x1e\xcb\xc7\x2e\x8a\x6c\xf5\x87\xe8\x3f" "\x8b\xd3\x11\x0c\x95\xfb\x08\x0e\xdc\x77\xa6\xd4\x3c\xd5\x8c\x44\x7b" "\x0e\x02\x26\x1e\x41\x09\x50\x0c\x64\x58\xdc\xe7\x0a\xcb\x17\xaa\x8f" "\x9d\xc1\xd1\x5b\x94\xa6\x13\x54\x16\x40\x31\xb5\xd5\x63\xc2\x5d\x02" "\x46\xfc\x45\xe6\x40\x1c\xef\xce\xb5\x01\xe1\x46\x89\x03\xe5\xd6\x77" "\x75\x9d\xbe\x3f\x24\xbd\x48\xce\x55\xff\x8b\x8f\x26\x52\x9f\xb3\xb2" "\xd6\x69\x20\x2a\x1e\x8a\x49\x89\x84\xb4\x49\xb4\x83\x0a\x01\x26\xb1" "\x8f\x0e\x78\x18\x2c\x9c\xe7\x8f\xe0\xc4\x48\xc0\xe2\x78\x45\xb9\x26" "\xcf\xde\x28\xfa\x85\xe1\x56\xfa\x98\xfe\xfa\xeb\x19\xed\x12\x47\xc9" "\x64\x3b\x44\x7b\x43\x42\xc9\x4c\x11\x4d\x3c\x4c\x35\xee\xd4\xd5\xb4" "\x9a\xa7\x0e\x6a\xad\x45\xbf\xb5\x57\xf1\x5e\x8f\xdb\x2d\x6e\x3d\x10" "\xd8\x33\x8a\x13\xfe\x3f\x18\x77\x51\x98\x5b\x37\xa5\xbb\x10\xb7\x50" "\xf7\x9e\x36\xfc\x2e\x2e\xe9\xbd\xec\xc3\xed\x15\x6e\x20\x2e\xd7\xb4" "\x5a\x94\x80\x9d\x77\xed\xaa\x39\x80\x42\xfc\x6a\x82\x5a\x48\x48\xc3" "\x34\xc5\x57\x30\x3d\x24\xeb\x3f\x8e\x01\xbe\x06\x99\x5c\xeb\x28\x3c" "\x70\x27\x2b\x00\xda\x61\xc3\x38\x16\x28\xf0\xe3\x72\xfe\x2f\xcc\x77" "\x9f\xf7\xda\xf7\xe4\xb7\xf2\x68\x6c\x39\xd3\xfa\xb6\x74\xb8\x86\x7b" "\x62\xb0\xbf\x9d\x5c\xfd\x0c\x1d\x3b\x27\x05\x21\xf5\x5f\x14\x7d\xe7" "\x51\x42\xff\xd7\xfc\x9a\xc7\xe5\xda\xe7\xca\x2f\xdf\x26\xa9\x22\x2d" "\x06\x08\x23\x85\x24\x09\xdd\x04\x0c\xfd\x1f\x66\xf2\x18\xc6\xdb\xda" "\xaa\xcd\xda\xb3\x4b\x12\x3a\xf2\x2f\x97\x38\x4d\x64\xfa\xc6\x4d\x84" "\xfd\x63\x8c\x96\x37\x8c\x8f\x95\x32\xa1\x19\x27\xd4\x84\x40\xbc\x77" "\x7f\xf8\xb8\xb9\xbe\x88\xf9\x30\xf3\xb5\x79\xa7\x13\xc0\xbc\x44\x9d" "\xca\x3a\x3b\xd5\xf2\xef\xa9\x82\x40\xcc\xc5\x94\x29\x9e\x44\x45\x1d" "\xc6\x0c\x6c\x5c\x9e\xdd\x0d\x7b\x77\x79\x12\xb3\xdc\x40\xc5\x7e\x0e" "\xa5\xf4\x42\x5c\xd7\x04\x7e\x68\x6c\x73\x04\xf0\x4b\xa9\xf7\xb5\xde" "\x6a\xd2\xbd\x52\x4f\x1d\x29\xf8\x80\x2a\x52\x44\x41\xfa\x28\x60\x15" "\xad\xf4\x58\x94\x31\x71\x0a\xa4\xd7\x6d\xe8\xa9\x56\xdc\x1d\x39\xc0" "\xa1\x3a\xbb\x7f\xc3\x09\xd2\x42\x22\xd0\x36\xe2\x04\xab\x6b\xb4\x6e" "\xf8\xa7\x59\x5d\x9e\x45\x12\xe0\xb9\xd5\xf8\xfd\x71\x9a\x4e\x30\x72" "\xe1\xd8\x06\x96\x70\x45\x78\x9c\x67\xa1\x68\x1f\x2a\x9f\x1f\x4b\x19" "\xf4\xf5\xe1\xaf\xda\xfc\x17\xdb\x7a\x6d\x51\x96\x16\x14\x99\xe6\x2a" "\xb4\xb0\xec\x27\x64\x8f\x3e\xeb\x1f\xb2\xb7\x8f\x8e\xcf\x9b\x05\xcf" "\x95\x09\xa3\xb9\xe2\xa3\x61\x23\x8d\xeb\x1c\x91\xbd\xbc\x8b\x1d\x11" "\xbb\xeb\x93\x9f\xd9\xda\x81\x1c\xd4\x39\x06\x9d\xa0\xec\xc0\x06\x65" "\xd7\x23\x57\xaa\xc0\x1f\x25\x9a\x03\x25\x40\x9b\x20\x18\x59\xcc\x05" "\x69\xe0\xeb\xa6\x7a\x7a\x9c\xa7\xe8\xb7\x80\x78\xd9\x37\x0b\xd3\xe3" "\x7f\x05\x71\x68\x0e\xde\x60\xcb\x6b\xbf\xe6\x94\x35\xd6\xab\x5e\xfd" "\x80\xcf\x05\x1d\x11\x9a\x70\x04\xfc\x0b\x60\x08\x44\xd4\x92\x18\xd8" "\x44\xde\x8f\x52\x15\x24\xa4\x7e\xe5\x02\x29\xc7\xda\x25\xe4\x2a\x86" "\x39\xb5\xdb\x22\x5e\x7f\x23\x96\x7f\x5d\x4f\x8a\x29\x7a\xff\x04\xa3" "\xcb\xed\xc2\x98\x5b\x63\x93\xa5\xba\x0b\x26\xb6\xc7\xb4\xca\x22\xd3" "\x69\xb3\x5b\x41\x07\x99\xd1\xad\x02\x82\x51\x04\xd3\x4f\x73\x40\x8d" "\xb1\x94\x84\x38\x59\x79\x31\xed\x1c\x1c\x26\x0e\x78\x34\x05\x17\xbf" "\xa2\xf7\x34\x53\x7d\xbd\xf5\xec\x30\x35\x18\xff\x46\x40\xef\xe7\xf7" "\xb1\xc2\xf4\x6b\xab\xdb\x92\x47\xce\x8e\xab\xad\x97\x18\xa8\xb9\xdd" "\xb7\xa1\x8d\x5e\x87\xce\xd5\x54\xc9\xd6\xde\x78\xf8\x5d\x29\x33\x49" "\x59\x0c\x6c\x32\x48\x35\x34\xbc\x96\x8b\x24\xa2\x8e\xb5\x4b\x95\x15" "\x58\x9d\x6d\xd8\xeb\x51\xa5\xad\x0b\x4d\x89\x6c\xe9\x22\x50\x39\x7c" "\xbc\x40\x43\x23\xfc\xdf\x0e\xe4\x7e\xd6\x34\xe0\xc5\x82\x13\xbc\x5b" "\x35\xa7\x2b\x21\xa0\x98\xe1\x1b\x79\xc0\x61\x43\x0d\xc8\x17\xc1\xe0" "\xc7\x9a\x5b\x6e\xd3\xb0\x02\x97\x99\x33\xf1\xb8\x3a\x17\xf2\x50\xb1" "\xbd\x5c\x49\x58\xdf\x4d\x75\x53\x1c\xa0\x3e\xfb\xda\x89\xf6\xa9\x2f" "\xe0\x8c\x23\xad\x90\x14\xff\x56\x2a\x7f\x3d\xcd\xe5\x78\xd6\x82\x5b" "\x98\x47\xb5\xdf\x04\xdb\xca\x4f\x2a\xa5\x2d\x8e\x0f\x4c\xf8\x18\x3c" "\xe1\x21\xe3\x9b\x50\x35\x8a\x97\x96\xac\xde\x03\x72\xa8\xff\x97\x76" "\x98\x74\xa8\x0a\xb9\x97\xcd\x88\x91\x45\xaa\xd4\x88\x8c\x06\x96\x3c" "\x2f\x5b\x82\xf5\x3a\x74\x8a\x67\x29\xfb\xc7\x9d\x35\xc0\x6d\x84\xe0" "\x5c\x62\xe4\x4f\xf7\x80\x40\xe5\x6e\xbf\xc6\xef\xcf\x0d\x8b\x49\x33" "\x7d\x5a\x17\xc4\x04\x1f\x0d\x5a\x8b\x61\x62\x44\xd5\x85\xa1\x62\xb6" "\x9d\xb0\x73\xac\xcd\x90\x71\xd1\x2d\xf5\xb3\x26\xa4\x3b\x83\x4b\xbf" "\xfc\x2f\x2a\x60\xde\xaf\xcb\xdd\xf1\xc6\x43\x8a\x17\x69\xd6\xfb\x09" "\xfb\xe1\x99\x0e\x89\xda\x12\x16\x4e\xf2\x37\xf3\x26\xed\xb5\xbe\x64" "\xbb\x64\xb1\x43\xa0\x30\xde\x8a\x99\xb3\xc5\xe5\x43\xc8\x71\xcb\x58" "\x1e\x2b\xe0\x90\xa9\x21\x34\xaa\x58\x77\x01\xf8\x64\x90\x7c\xad\xd7" "\xc1\xce\x20\xfc\xf8\xf5\xdc\x7f\x7e\xcd\x06\xa6\xc1\x9d\x89\xa9\x2c" "\xa0\xad\x43\x93\xc2\x08\xb8\x0b\xba\x99\x0c\x7a\x37\x02\xa9\xc7\x9b" "\xdd\xde\x75\xd5\xdb\x24\x47\x19\xac\x32\x19\x1b\x6c\xeb\x04\x1a\xb5" "\x41\xfb\x47\x68\x0a\x97\xdc\x04\x22\xb8\xa5\x0d\x91\xe3\x2c\xb0\x8c" "\xd3\x41\xb0\xb0\x99\xac\xa5\xbd\x12\xb6\x9d\x4f\x89\xd1\x0b\x75\x5b" "\x35\x1a\x64\x89\x18\x0b\x78\x6a\x3b\xeb\xac\x92\x65\x32\xa4\xa2\xd8" "\x5b\x07\xbc\xe6\xc0\x90\xd1\xaa\xaf\xf0\x79\xe3\x6d\x53\x94\xa6\x12" "\xf1\x35\x1b\x90\xc1\x3a\x0f\xa6\xbf\x9d\x18\x8d\x54\x8d\xfe\x6f\xa5" "\x1a\x90\x26\xed\xb5\x20\x09\xc0\x3e\xd4\x5a\xc5\x1d\x05\xc5\x8a\x95" "\x7b\xcc\x67\xe0\x5a\x58\x89\x85\xba\x00\xd7\x9f\x33\xae\x9c\xdd\x5f" "\x57\x21\xd9\xfd\xc7\x2e\xe6\xe8\x80\x70\x8b\xe8\x7e\x8a\x60\xc3\xc0" "\x35\xc1\x46\xf2\x09\x1d\x1b\x9a\x4c\x2c\xfa\x56\xf2\x92\xfe\x1b\xa6" "\x22\x90\xd4\xe5\x6c\x05\x66\x92\x91\xbb\xe9\x17\xf3\xca\xc5\x18\x02" "\xa2\xcc\x8e\x9c\x90\xda\xdf\xe6\x66\xc2\x33\xc5\xa5\xbb\x71\xee\x17" "\xde\xec\x51\xce\x60\xc7\x3f\x57\xbf\x9e\xcb\x84\x87\x3a\xfc\xc4\x48" "\x15\x13\x18\x10\xc6\xc1\x21\x7b\xea\x48\x5e\xf9\xaa\x27\x85\xe8\x59" "\xb2\x53\x15\xef\x8a\xa3\xa2\x74\x98\x27\x86\xe4\x5d\x62\x2a\xe8\x31" "\xfb\x76\x01\x0d\x69\xa1\x81\xb0\x69\xe4\xcc\x55\xd4\x43\x6e\xdb\x10" "\xd1\x11\x9b\x0c\x60\x00\xc6\xd5\xcf\xf7\xc7\x2f\x74\x0a\x59\xdc\x05" "\x07\xe7\xa9\x52\xb6\x94\x03\xc6\x26\x73\xf1\x22\xc9\xd1\x26\x4f\xac" "\x6c\xe2\x26\x2e\x86\xcd\x8d\x6a\x40\x26\x72\xf8\x85\x30\xfc\x2d\x16" "\xf3\x17\x36\xdd\x49\x7a\x4e\x85\x32\x53\xac\x8d\x5a\xff\x8d\x13\x76" "\x89\x5e\x9f\x55\x19\xb2\x49\x0c\xc2\xa2\x41\x2b\xa0\xc9\x9c\xec\x85" "\x5f\x66\x88\x37\x31\x00\x35\xe9\x2f\xb6\x46\x48\x6d\xe1\xb0\xac\xff" "\xb9\x1a\xe7\x51\x6d\xf3\xee\xef\x38\x14\x56\xb5\x5e\x65\xba\xa5\x8e" "\x71\x46\x1c\x92\x86\x87\xe6\x99\xd2\xb2\x18\x14\x80\x55\x91\x38\x2e" "\x95\xe1\xb9\x70\xaa\xa5\x32\x59\x91\x7f\x07\x02\x81\xf2\x33\x6b\x7d" "\x57\x02\x49\xd8\x38\xb3\xf1\xa3\x27\x53\xc3\x36\x86\x4e\x15\xf4\x56" "\x1b\xad\xf8\xfe\xe0\x34\xa2\x9c\x52\xff\x3f\xca\x74\x56\xae\x14\x0f" "\x83\xe3\xb2\xfd\x5b\x57\xc9\xae\xf3\xf2\x0c\x66\x42\x00\xd2\x35\xf2" "\x36\xec\x47\xdd\x2f\xc2\x0b\x14\xdc\x60\x00\x81\x22\x37\xae\xa9\x92" "\xd9\x87\xe5\x46\x06\x79\xe8\xc5\xb7\x6d\x93\x1e\xf6\xd9\x51\xe6\xc7" "\x08\x7e\x31\x06\xb6\xce\x2d\xb9\xde\x6f\x22\x8f\xdf\x3f\xfc\x38\x71" "\x0c\x0e\x8d\x50\x00\xa1\x95\xa7\x9d\x1f\xa2\x30\x10\x38\xf5\xb2\x7c" "\x40\xb0\x9c\x34\xc0\x25\xe5\x09\x9d\x40\xc2\x20\x4e\xa0\xea\xe9\x85" "\x26\x3c\x91\x01\xca\xb8\x8d\x68\x57\xa3\x20\xc9\xe4\x97\xf2\x23\x48" "\xa2\x48\x61\xa5\xfb\x8d\x73\x4e\x08\xca\xd0\x9f\x99\x33\x74\x8f\xf0" "\x1e\xab\x22\xf1\x77\x56\xf5\x86\x88\xdc\x1b\x48\x6a\x39\x75\x63\xee" "\x9a\xd0\x78\x4b\x88\x33\xcd\xb5\xf7\xc6\xbc\xf7\x6d\x9c\x11\x05\xf7" "\x1c\x3c\x6a\xab\xef\xd7\x0d\xc6\xcd\x5c\x66\xd3\x1c\xaf\x91\x61\x45" "\xac\x5e\xd7\xfa\x07\x0b\x42\x77\xc0\x44\x8a\xb1\xeb\x78\xc9\x43\xbe" "\x9a\xea\xb0\x58\x7d\x32\x1a\x4b\xcb\x77\x54\xf0\x70\x88\x11\x78\xf8" "\xbe\x66\x8b\x68\x61\x24\x89\x9f\xac\x25\x25\x19\xf4\xb6\x0e\xc4\x2d" "\xb7\x66\xa9\x08\x75\x50\x40\x46\x31\x25\xc2\x68\x50\x17\x74\x02\xa9" "\x77\x24\x6d\x36\xd2\x3a\xfa\xc0\xa1\x18\x89\xd5\x46\x40\xbd\x8f\x6f" "\x67\x0d\x68\x6c\xfd\x33\xf6\xfc\x5d\x90\xcf\x6c\xbd\x63\xd9\xd0\xfd" "\x20\x1d\xd4\xc7\x4d\xbb\xab\x89\x9f\x3c\x23\xc0\xb7\xe3\x7e\xa0\xb2" "\xaf\xf4\x21\x32\x72\x00\xd0\xda\x58\xb5\x89\x3a\x41\x86\xae\x36\x52" "\xcc\x6e\x11\xc2\xc2\xa0\xe5\x21\x84\xa3\x87\x25\x32\xac\xce\x98\xc9" "\x4c\xeb\xf4\xf3\x13\x33\x66\x3a\x62\x0f\x0d\xba\x0f\xfd\x89\xc3\x12" "\x43\x80\x07\x5b\xd2\x8c\xaa\x6d\x44\x9a\x05\x0b\x36\x61\xb8\xfb\xaf" "\x47\x47\xb7\x7c\x49\x28\xb1\x37\x8f\xdc\x8c\x7a\x7b\x38\xad\xe1\xae" "\xec\x44\xbd\xfa\xcc\x82\x71\xd0\xb1\x32\xb2\x02\x9b\x0f\x35\x82\xf9" "\x91\x9f\x5c\x8c\xd5\x43\xab\xc9\xca\xf6\xb8\x2b\x19\x7c\xd4\x82\xc3" "\xef\x61\xa6\x47\x43\x50\x63\x42\xbf\x50\xa3\xc1\xff\x54\x45\x63\xbb" "\x8b\x20\x02\x91\x1e\xe1\xfa\xd6\x98\xf4\xac\x13\x3f\xfe\xd5\xbf\xe8" "\x12\x39\xc9\x18\x20\x7a\x03\xc7\xa8\xbd\x71\xa0\xa5\x02\xae\xa7\x8d" "\x38\xe9\x70\xe3\xab\x2a\xbf\x75\x4b\x59\x8a\xcb\x79\xcf\x27\x67\x92" "\xaa\x08\x72\x4d\x0b\xa2\x4f\x2a\x69\x49\x12\xab\x79\x5b\x3f\x45\xf5" "\x2d\xec\x50\xd9\xbf\xbc\x99\xae\x27\xe1\xd2\xc2\x21\x6a\xfe\xc6\x70" "\x9d\x65\x13\xa6\x4b\x29\xef\x58\x25\x5b\xbe\x18\x47\x8c\x5d\x4f\x15" "\xf7\x4e\xa6\x3a\x1e\x15\x48\x77\x52\xee\xc8\xfd\x01\x9f\x1d\x4a\x7a" "\xa2\x52\x77\x66\x47\x54\xbd\x2d\x7c\xd3\xa7\xa0\x18\xb9\x2c\x56\xd9" "\x65\xa1\x97\x48\x85\x36\x37\x57\x28\x6d\xa9\xe0\x55\xef\x7f\xac\x17" "\x87\x6f\x0a\x64\xc1\x02\x6a\x59\x77\x33\xb8\x97\xa9\x15\x5e\xcb\xf4" "\x20\x15\x9a\xe8\xe5\x20\x9a\xa8\x3a\x35\x44\xff\xf1\xfb\x45\x66\xf2" "\xd5\x4f\x95\xe3\xbb\xd3\x0d\xcc\xa5\xf2\x43\x97\xe4\xbd\x47\xff\x01" "\x29\x2f\x0d\x6f\xe9\xdd\x47\xa8\x10\xe0\xc2\x53\x82\xfa\x69\xb4\x98" "\x7d\x1a\xfd\x9b\x69\xef\x12\x51\x10\xad\x6b\x24\x0e\xaa\x9c\x85\x82" "\x9a\x26\x46\xf9\xab\x78\x74\xbc\x02\xbf\xa8\x34\x6c\xc9\x19\x09\x43" "\xe9\xd4\x6b\x44\x88\x06\x70\xb1\xe2\xaa\x3a\x29\xe8\x3b\xe5\x47\x2d" "\x74\x18\x88\x5a\x35\x3f\xaa\xde\x6e\x8b\x18\xf4\xb5\x88\x60\x7b\xbb" "\x75\x85\x88\xd1\xe2\xf1\x1a\x9d\xfa\x1c\x4d\x61\xbe\x50\x24\x9f\x1e" "\xe3\x2e\x6f\xf8\xc0\xc7\x72\x2a\xae\xc1\xbc\x79\x65\x4a\x47\x72\xef" "\xc5\x78\xbd\x6a\x14\xc7\x9a\xbc\xc7\x7a\x4e\x09\xc8\xb6\xc6\xea\x35" "\xcd\x3a\xb3\x1e\x35\x26\x8f\xb5\x5d\xb8\x43\x17\x6f\x80\x42\xf8\xce" "\x7b\xe0\xdd\xd4\xea\xd6\xdb\xda\xd0\xef\x9e\x7c\xb2\x32\x3d\xb5\xcc" "\x48\x11\x9a\x72\xb2\x73\x06\xb8\xff\x63\x66\xc0\xbc\x68\x2a\x85\xab" "\x9e\x2c\xf2\x23\x8b\x6d\x6e\xb2\xe3\x8a\x97\xd5\x57\x7e\x63\x34\xcb" "\x2a\xa6\xe7\xc8\x6e\x48\x9e\x87\x6f\x9d\x70\x53\x57\x7a\x5c\xb5\x7f" "\x52\x81\x2f\xab\x7c\x4b\xd7\xb1\x9a\x34\xc2\x28\xff\xb6\x7d\xca\xc9" "\x28\x16\x12\xf7\x78\xb5\x8c\x58\x0c\x14\x05\x42\x20\x0f\xd0\x0c\xb3" "\xad\x81\xd9\x34\x20\xdf\x93\xc5\xaf\x24\x93\xf6\x46\xd8\xde\x79\x71" "\x02\xfa\x0a\x65\x24\x73\x17\x88\x2f\xbf\x17\x15\x20\xf0\x0b\x2c\x76" "\x38\x62\x3b\x82\x3f\xf1\x14\x44\xfd\xde\x45\x35\x70\xf9\x9f\x90\x99" "\xb6\x00\x61\xa9\x08\xb8\x33\x83\xba\x8b\x82\xbb\x78\xed\xd0\x74\xdc" "\xcf\x93\x42\xaf\xdf\x8d\x11\xa6\x12\x9b\xa6\xea\x70\x30\xf3\x62\x90" "\x56\x26\x4f\x17\x36\xc2\xb9\x26\x17\x1b\x6d\xc7\xe1\xfa\x45\x5a\x47" "\x3d\xe6\x56\x39\x04\x95\xf3\xb6\xad\x2f\x9f\x46\xf3\x5e\xac\xb0\x75" "\x62\x8f\xf7\x39\xef\x78\xf2\x8b\xa6\x83\x44\x80\x68\xc7\xf1\x8f\xb6" "\x3f\x28\xba\x7d\xbb\xb7\x89\x99\x10\x0d\xde\x0a\x94\xe8\xb8\x57\x08" "\x17\xc7\x11\x4c\x13\xe1\x39\xce\xb3\x33\x78\x2b\x29\xa8\x4a\x5b\x19" "\x49\x7f\xa7\x85\x91\x5c\x76\x80\xdd\x7f\x97\x2c\xb5\x9b\xa2\x21\x61" "\xf6\x08\x86\xe5\xcb\x3c\x3e\x80\x87\x26\xcb\xf9\x6b\xc4\xda\x78\x91" "\x4e\xee\x56\x5c\x6d\x9d\x18\xe7\x0d\x22\xcf\x8c\x02\x44\xcf\x3c\xf4" "\x88\xc3\x55\x0e\xaa\x40\x0b\xc0\xf2\x6d\x64\xe0\xf1\xbc\x8d\x03\x01" "\xa8\x41\xd9\x54\x07\x3a\x64\x1f\x3e\xf8\x83\xd8\x1f\x4d\x5d\xb8\xe9" "\xdf\x70\x8e\x64\xe6\x40\xb3\x8d\xf7\x29\x5f\x7f\xe5\x73\x86\x36\x53" "\x08\x6b\xae\x55\x07\xc8\x80\xab\x7f\xdb\x7a\x6c\x5c\xe7\x70\x27\xff" "\xa7\x39\x52\x33\xd3\xce\x53\x6d\x77\xae\x6c\x2e\x9c\x8f\xfb\x6f\xee" "\x78\xa3\xbc\xb3\xb5\xf8\x88\xbd\x59\x5c\xaa\x3a\x55\x86\x94\x87\x76" "\xb9\x50\xa8\x9c\xde\x4d\xb8\x24\x7f\xff\xf2\x74\x91\xc8\x82\xb4\x30" "\xaf\xdd\x60\xe7\xa2\x23\x24\xf6\x63\x5a\x9a\xa7\x13\x9f\x3e\x62\x4c" "\x6d\x9e\xce\x60\xf7\xf8\x15\x3b\x20\x80\xcf\x05\x44\xfb\xf8\xe1\xc4" "\x36\x50\x37\x66\xe6\x70\xb9\x02\x60\x4a\xb5\x21\xe1\x1a\xa5\xa6\x5c" "\xed\xd6\x4c\xfa\xf8\x98\xac\x5f\x55\xc0\x8c\x87\x69\x3c\x32\x35\x17" "\xbc\xb0\xd9\x9c\x28\xf5\xe0\x72\xd4\xf6\x54\x0c\x7e\xad\x70\x13\x8d" "\x47\xc1\xa6\x7f\xd7\x2b\xd6\xef\x56\x13\xaf\x33\xa0\xaf\x31\x1c\x3d" "\x0a\x63\x1c\xa2\xa2\xdf\xbe\x35\xd1\x02\x1e\xb6\x10\xe4\x0b\x9b\xe1" "\x28\x68\x32\x35\xa7\x88\xb5\xa4\xca\xcf\x99\xba\xbe\xe3\x82\x45\x8d" "\x59\xe8\xaa\x1d\xd7\xbb\xa7\xe0\x9d\xd3\x0c\x05\x5a\x3d\xf8\xed\x72" "\x1a\x17\x78\xb2\xc6\xed\x58\x7a\x40\x35\x66\x32\x5c\xd1\x99\x62\xed" "\xd7\x83\x1c\xaa\x44\xa6\xb7\x16\x51\x7b\xad\x50\x21\x30\xe7\xcf\x6a" "\x5c\xe5\x28\x8d\xc8\x4c\x01\x70\xf6\x22\xae\x0b\x1e\x11\x66\xa9\xc2" "\xc0\x77\x1d\x91\xdf\x9f\x9d\xd8\x2a\xe2\x10\x46\x96\x02\xce\x38\x96" "\x47\x46\xc1\xc1\xd0\x43\x21\xaa\xe7\xd4\x64\xeb\x80\x1d\xbe\xa7\xec" "\x39\x50\x54\x57\xe7\x78\x20\x87\x74\xd7\x26\x73\x62\x6c\x99\x8b\x00" "\x2c\x46\xa9\xb4\xb1\xe3\x90\xd9\x34\x4f\x0c\xa6\x22\x12\xa1\xb6\xd4" "\x10\x43\xa2\x10\x0b\x35\x19\x6b\xce\x42\xd4\x0c\xaa\x0e\xa9\xa4\x86" "\xbf\x85\x26\xfd\x1f\x0f\x0d\x36\x2c\x2c\xac\x46\x3e\xa7\x37\x7a\x20" "\xb5\x4b\x94\x35\x44\x2c\xa5\x29\xfc\x00\xda\x4f\xd7\xe2\x7c\x4e\xaf" "\x14\x21\x5a\x06\x85\x7b\x54\x25\x4c\x26\x34\x69\x56\xfd\x7f\xe2\x15" "\xa5\xce\x57\xec\x38\xce\xdf\x50\xa3\xc7\x59\xe5\x63\xa4\xfd\x87\x49" "\x4f\x00\xe7\xbd\x9b\x44\xf3\xb7\xe9\x9c\x6e\xf6\x71\x87\x05\x6a\x21" "\xd2\xfe\x1a\xc9\xd2\x41\x25\xb1\x94\x7e\xb2\x93\x18\x9f\xdc\x44\x8b" "\x59\x1a\xf4\xd9\xb8\xeb\x09\x1d\x6b\xbb\x5e\x50\xfa\xe7\x9d\x00\x00" "\x44\xe2\x82\xbb\x2a\xb6\xc6\x3c\xc9\x56\x2b\x15\x1c\x21\x4e\x45\x01" "\x53\x54\xe6\x2b\xe6\x3e\x18\x81\x23\x8b\x90\x7f\x7b\xdb\x79\x1f\xf4" "\x4a\x4e\x03\xfa\x29\xdb\xd2\x6d\xb2\xf4\x9d\x0f\x47\x29\xb7\xcd\x9b" "\xa6\x9a\x65\xb0\xb4\x93\x46\x6d\x35\xd0\x9b\x3f\x59\x0c\x67\xc3\x16" "\x60\xd9\x5e\x2a\xb4\xaf\x2c\x9f\x1d\xf9\x1f\x04\xce\x5a\x57\xdd\xe2" "\xd7\x52\x06\xb4\x2e\x34\x23\x12\x67\x74\xd7\x65\x93\xc2\xf7\x13\xae" "\x27\x9d\x70\x92\x50\x6b\x51\x3f\xd5\xd1\x8f\x0f\x52\xd3\xfa\xfd\x71" "\x41\xdf\xd4\xa0\xde\x10\x63\x75\x4d\xba\x86\x5f\xaf\x8d\xc0\xf6\xbe" "\x9d\x90\xef\x21\xec\x86\xa2\x75\x53\x3f\x6a\xd4\xb4\xe3\x60\xdc\x77" "\x54\x13\xf2\x9e\xab\x8b\x3d\xaa\xc6\x27\x9b\x9a\xbf\xe1\x63\xea\x2f" "\x18\x3e\x09\xed\x91\xef\x67\xfb\xb0\x90\x87\x51\x09\x28\x8a\x18\x2c" "\xfd\xcc\x46\xd9\x06\x78\xef\xe5\xed\xce\xda\x65\x18\x33\x5e\x67\x84" "\x38\xca\xc4\xbb\x47\xd3\x76\xf3\xf0\xe1\x2a\xa5\x53\x01\x73\x5d\x7f" "\x42\x65\x3c\x07\x3d\x6a\x4a\x37\xb2\xe1\x7d\x33\x2d\xc1\xbe\x6b\x50" "\x91\x8c\x00\x7b\x14\x88\x63\x07\xcc\x39\x25\x0e\x81\xef\xec\xd6\x3d" "\x24\x06\x7a\x49\x99\x45\x72\x72\x5a\x9d\xf1\x76\x0c\xaa\xc1\x3a\x28" "\xf5\x25\x55\x56\xb2\x7e\xc2\x45\xe9\x39\x69\xb8\x5c\xde\xc7\xcd\x1c" "\x2d\x2a\x43\x3d\x3f\x95\x72\xb9\x30\x54\xa7\xce\x8a\xdf\xf8\x1b\xc1" "\xd3\x08\x84\xd5\xfc\x47\x91\xe2\x51\xbd\x90\x7e\x37\xaf\x5b\xec\x74" "\x23\x5c\x3e\x2f\x80\x4e\x4e\x04\x50\xb7\x15\x28\x99\x42\xb7\x85\x9a" "\xd2\x07\xba\xfc\xfe\xc1\xb5\x86\xdc\x15\xe7\x91\x1f\xe6\xd2\x0a\xa3" "\xd0\x2f\xcd\x47\xe9\x95\x67\x80\xe3\x00\xd7\xc5\x3c\x17\xdf\xa1\x57" "\x54\xde\xb4\xc2\x0e\xfe\xbc\x72\x70\xbd\xa0\xfa\x6b\x37\xfc\x88\xc6" "\xbe\x42\x50\xca\xc3\x8c\x1b\x81\x86\xb3\x64\x48\x20\x26\xab\x52\xd6" "\x5d\x3a\x69\x19\x03\xfc\xcc\x39\x77\x22\x77\x01\x1b\xfa\xa4\x21\xad" "\xba\x76\xbe\xd9\x73\x10\x77\xbe\xc8\x85\xce\x88\xd4\x0f\x36\xbb\xd2" "\xa8\x39\xc6\x7d\xc4\xb8\x62\xc9\x68\x49\x1b\x87\x7d\x4f\xd1\x3f\xc9" "\x0f\x8d\xa5\x7a\x29\x12\x1e\x12\xf7\x8e\x85\xaf\x76\x5c\xd6\x6e\x72" "\xba\x51\x35\x93\xfe\x1c\xdf\x20\x01\x99\x85\xb0\x65\xd8\x28\x70\x7d" "\x8e\x50\x9c\x68\x34\xea\xb1\x88\xde\xea\x5c\x9e\xe9\x79\x55\xf4\xb0" "\x7d\x37\xb6\xfc\x7b\xee\xd7\x3b\xe9\x48\x87\xd4\x23\xa3\x49\xf3\x5b" "\xb8\x78\x2b\xc6\x70\xce\xae\xc8\x70\xd9\x7f\x06\x1b\xda\x02\xae\x73" "\xf6\xd5\x75\xf8\x1e\x0b\x63\x26\xea\xe6\xc1\xb3\x08\x5c\xc5\x84\x68" "\x61\x20\xe1\x2d\xd9\xad\x8c\xe4\x40\x36\xbe\xc8\xa1\x89\xf9", 8192); *(uint64_t*)0x200000000340 = 0; *(uint64_t*)0x200000000348 = 0; *(uint64_t*)0x200000000350 = 0; *(uint64_t*)0x200000000358 = 0; *(uint64_t*)0x200000000360 = 0; *(uint64_t*)0x200000000368 = 0; *(uint64_t*)0x200000000370 = 0; *(uint64_t*)0x200000000378 = 0; *(uint64_t*)0x200000000380 = 0; *(uint64_t*)0x200000000388 = 0; *(uint64_t*)0x200000000390 = 0; *(uint64_t*)0x200000000398 = 0x200000000600; *(uint32_t*)0x200000000600 = 0x90; *(uint32_t*)0x200000000604 = 0; *(uint64_t*)0x200000000608 = 0x4000000000000; *(uint64_t*)0x200000000610 = 0; *(uint64_t*)0x200000000618 = 0x200000000; *(uint64_t*)0x200000000620 = 0x20000000; *(uint64_t*)0x200000000628 = 4; *(uint32_t*)0x200000000630 = 6; *(uint32_t*)0x200000000634 = 0; *(uint64_t*)0x200000000638 = 0; *(uint64_t*)0x200000000640 = 0x10001; *(uint64_t*)0x200000000648 = 0; *(uint64_t*)0x200000000650 = 0xd; *(uint64_t*)0x200000000658 = 0; *(uint64_t*)0x200000000660 = 0x100; *(uint32_t*)0x200000000668 = 0x10000; *(uint32_t*)0x20000000066c = 2; *(uint32_t*)0x200000000670 = 0; *(uint32_t*)0x200000000674 = 0; *(uint32_t*)0x200000000678 = 0xfffffffc; *(uint32_t*)0x20000000067c = r[2]; *(uint32_t*)0x200000000680 = 0; *(uint32_t*)0x200000000684 = 7; *(uint32_t*)0x200000000688 = 0; *(uint32_t*)0x20000000068c = 0; *(uint64_t*)0x2000000003a0 = 0; *(uint64_t*)0x2000000003a8 = 0; *(uint64_t*)0x2000000003b0 = 0; *(uint64_t*)0x2000000003b8 = 0; *(uint64_t*)0x2000000003c0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004380, /*len=*/0x2000, /*res=*/0x200000000340); break; case 5: // 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 = 0x26 (4 bytes) // max_readahead: int32 = 0x8 (4 bytes) // flags: fuse_init_flags = 0xfffffffff323ca46 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0xfffc (2 bytes) // max_write: int32 = 0x6 (4 bytes) // time_gran: int32 = 0x5d3186cc (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x1 (4 bytes) // max_stack_depth: int32 = 0x10001 (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*)0x200000004300 = 0x50; *(uint32_t*)0x200000004304 = 0; *(uint64_t*)0x200000004308 = r[1]; *(uint32_t*)0x200000004310 = 7; *(uint32_t*)0x200000004314 = 0x26; *(uint32_t*)0x200000004318 = 8; *(uint32_t*)0x20000000431c = 0xf323ca46; *(uint16_t*)0x200000004320 = 0; *(uint16_t*)0x200000004322 = 0xfffc; *(uint32_t*)0x200000004324 = 6; *(uint32_t*)0x200000004328 = 0x5d3186cc; *(uint16_t*)0x20000000432c = 0; *(uint16_t*)0x20000000432e = 0; *(uint32_t*)0x200000004330 = 1; *(uint32_t*)0x200000004334 = 0x10001; memset((void*)0x200000004338, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000004300ul, /*len=*/0x50ul); break; case 6: // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x200000000180, "./file0/file0\000", 14); inject_fault(15); syscall(__NR_creat, /*file=*/0x200000000180ul, /*mode=*/0ul); break; case 7: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {44 ea 07 86 2a 07 ee fa 4d e3 70 92 cf 43 56 f5 44 54 db 90 // 30 1c 4d 37 3d 57 16 6f 79 4f 16 9d 63 34 48 40 a3 70 48 63 8f fd 5e // 30 be ad e3 fd 76 8b 18 19 10 01 eb 89 02 77 fa d8 bd fe 37 42 68 6d // ee b3 43 95 96 3b cf 7a 87 0a dd d7 6c 80 ab a9 f7 71 eb df 41 0c 7d // 75 42 fc 2b 6a e9 a4 58 d7 94 57 75 5d 94 ba 8a 32 48 b0 1a 22 93 d8 // a7 0e 60 81 5b 90 29 70 02 65 29 66 a6 b8 36 06 5b ca e0 b4 4f 4b 26 // be 93 de c3 cd 4c dc bb c8 4c 5b 91 6a 1b 0d 83 13 34 06 75 d6 7f b0 // c7 85 d0 30 7f 95 e4 26 54 6c 9a 4d 01 61 a8 f5 2b 02 b9 5f 4d a5 3c // ed 70 5a 65 87 22 09 18 64 d7 4a c0 a3 a5 f3 85 3a 0a d7 1d db 29 83 // 56 80 ca 9f f3 05 31 f8 df 0f 0a c6 6f 7f 14 33 c3 3d 75 fa 8f 0f 02 // 2b 17 5d f0 93 64 8a 81 af 5e d7 01 b2 e7 a1 41 99 c8 3b 53 9e 76 3d // be 72 28 f2 e1 84 a0 2b ec d4 1b ae 30 5d 3f 34 c7 2e 8d b9 3d d2 14 // ec 20 3e ee 6e 6d ab 26 b4 18 48 c9 5f e1 ec e8 ca 15 7a 90 bb 7a 99 // 0d ac 5f 3c 64 cf 49 c5 c5 aa 84 14 b9 15 3f 82 ec a9 df 88 d9 0a 8d // 6c 0e 72 ea cd 52 f8 29 39 d4 6d 41 e0 f5 cc f7 08 c0 3f cc ec ea 46 // 7f 33 f5 a4 98 88 51 47 87 e4 2c 0a 12 25 5b ca 89 e8 23 44 ab 01 ac // 3b 6c 61 58 e3 c1 b3 4a d9 53 ea f5 5f 3a 2c 48 7e fd 94 23 a5 42 e4 // 1d bd 00 58 aa 02 1c b6 fd c5 df 88 f8 07 03 3e dd 31 ab af 5f f7 e6 // a9 57 8d 2b e6 a2 d9 25 d9 81 08 fd a2 a7 e5 6a 0b bc dc e0 68 9f a9 // e2 11 1b 0b e8 f3 e2 80 7f 7f 37 28 48 99 17 a0 31 f2 18 7a d9 8a 74 // 4f 19 85 16 87 ad f5 9a 4b 4c 32 8a d5 c4 f2 ea a0 d1 12 04 13 69 31 // 9f 6d 3f 92 8c 22 d0 5f 9f d6 8b 5c 26 8d a5 e2 f4 33 d6 51 bc 60 2a // 65 ee 83 75 2c 0c 92 f7 e2 90 02 fa f9 47 5f bb 57 78 8d 72 5f 6f 8f // d4 95 a5 8d 88 d5 5a b8 46 7a 85 d1 f4 1d b5 96 4a 19 bd d4 53 77 c7 // c8 c7 92 de 5e 76 e8 7d a9 29 6f f9 0e 7f a9 e5 7f 09 35 8d 99 8c 87 // 79 bb 23 48 d6 51 80 8e 96 9e 96 07 63 c5 23 1c 65 a0 6e e1 69 79 f4 // d9 90 db e7 e1 0b 3a 23 92 df d6 48 3b f2 c7 c5 f6 f3 d9 41 cc 17 66 // 36 68 cc a8 3d cc 38 08 9b 43 42 a8 01 c7 40 39 b3 25 50 c2 d9 cf 95 // a0 23 65 23 93 3c e3 e7 53 8f f9 da 2b 7b 74 1f 3c bf 53 e6 08 47 02 // d0 a5 da da b4 35 08 48 f6 e7 ba 46 d4 73 6c 7a 2a e7 02 c4 80 c3 0d // d7 8f 99 4a 10 b9 c3 15 7a 17 e9 e2 95 76 a6 81 39 40 33 00 58 6e b0 // c6 73 25 2a 31 9a a1 cb 01 ef a7 77 22 8d 82 42 eb db ef 9d b5 c0 3e // 4c 8e 09 bf 7a 00 9b 7e b1 93 57 d1 ad 6d 1d ef c0 db b5 8c 31 d8 5b // 9f 10 35 05 66 15 ad 0b 0d ed 12 75 12 73 c8 bb 78 10 cc c5 b2 ef e5 // 1d 22 38 94 b1 41 dd a8 37 e6 b7 ba 21 de 9a 97 8a c4 47 d9 95 39 4b // 80 0e 10 65 90 64 55 af 54 4b 9d 7f 35 3d 1e ef cd 33 87 d1 8e 36 11 // f3 91 39 26 f3 a4 b8 7e fb 3a 97 07 d6 13 6d c0 0e 49 ea 5e 7a 6d 0b // ea 17 eb 49 ca e9 3c 0c 44 22 37 4b 0f 46 38 0e 0d 55 4e 10 87 c1 39 // 27 16 d3 68 b0 4b 1d a8 5d 27 12 06 b4 65 60 84 68 80 2f ae 00 c7 ad // 94 25 97 4d 82 2c ff bc 42 0e 73 9f 76 17 f5 9a 87 9f 79 1a b5 dd 7a // 62 15 29 8c c7 dc 69 04 67 98 89 e6 0a 09 11 4b 0f 42 1b 6f 12 86 d0 // a6 ab 3d c8 87 c2 d3 a4 8d 53 a7 61 1e c2 70 53 0b 07 a8 3a e1 a2 bf // a6 da 42 ab 38 be c3 eb 8e d1 e2 07 d9 1c 02 e7 4a 31 c2 9a bb d2 5f // 57 79 18 9f 5f 24 94 ea 5c 3f 4b 82 9b 96 de 0c 54 b3 85 1d d5 86 10 // c2 b9 dd cc 29 60 f3 4f b8 57 c5 ab 1a a6 7e 8e b1 0a 59 63 9d b2 dd // eb d0 20 6a e7 ee 56 b2 1e f4 84 e3 c6 60 03 af 46 32 6f 1c 45 6a d2 // ab 52 73 d0 c0 b2 bf 41 2f 71 f8 20 ae 12 72 3c 74 e1 85 7e 0a e3 d5 // 58 7a 04 27 c1 59 5e 06 b1 d5 ab 5e 81 5a 55 58 30 2e 0d 9c 50 b8 c6 // cb d5 99 eb 55 4d f6 f7 32 3b 01 f1 35 3b 55 7c 56 5d fe 0d e5 10 32 // a8 85 41 b4 9a b6 82 a7 db e4 dc cb 9b 95 2b a9 c9 ce 3b bf f8 0a f0 // 1e 47 95 36 66 32 7b 8a cd 7d 2c f3 63 c6 f7 17 2c aa f0 1d 8e 34 17 // f7 68 ab 08 f2 cf a7 ff 26 ef d2 19 e2 5e f0 f9 a8 4c 7b 11 69 78 ee // af e3 41 09 72 49 02 03 db e4 9a ec 33 f1 4d 55 92 a4 66 a6 ef e6 30 // 90 4d b9 c7 7e ce 20 be c7 55 2b 3d fb 48 d4 e0 42 7c e5 02 4f dc 0a // ec 72 71 e9 3c 51 aa b1 9d 7a 40 67 0a dd 6e a5 82 0f 62 58 31 a5 93 // 13 7f 60 54 3e 42 48 92 85 6b 3b b9 e6 08 e8 8e 65 cc 6d ca 09 8d 51 // 39 a3 8a da 51 7c d7 88 b9 f1 36 18 d9 c2 c3 1d 79 18 ca c6 cd 66 97 // 10 69 27 97 e6 1f 4d f3 93 8d d4 29 d9 77 cc 11 e7 46 5a 7a 23 74 00 // 52 03 9d 9b 31 cd 26 b9 5e fb a1 7b fc ef e1 21 fc bb 76 2d 29 28 71 // 45 b1 1a 3a bb 3e 06 83 b9 21 6a 8b 5d 97 44 ba a7 5d a5 d8 40 e7 0c // b3 10 c5 07 c4 f7 ee f1 d6 53 5d 8e 11 07 9e dc b5 1d f7 ea 63 a7 20 // 4e 31 41 47 ee b5 79 16 17 1c a3 3c 0f 59 32 91 6e 4d 56 8d 9e 7d d3 // 55 55 00 ae 11 9f 0c 63 04 56 58 30 3e 1f 4e a9 9c 89 6e ae ff 3e bf // 76 b2 de f0 ea 85 6a 3f 24 cd 76 dc 43 72 36 b7 1d ad 9a 26 fb f3 88 // 2e 81 56 58 51 eb 6c 5b 26 5a 07 21 be 43 f0 84 4f 4d 0e 42 96 01 1e // 28 02 36 a0 ed 76 56 f2 eb 90 6e 6b 2e c4 a8 e5 bf 91 eb 7e 8b e8 89 // de d6 d8 49 2b b7 2f 1d e2 6c f3 97 32 49 eb cb 5c 99 3d 1d fa 89 6a // 65 8a 52 8a ad f5 7d c2 8a 8d b3 26 56 ed 8e 41 6f 96 e1 f8 9a c2 4d // 4b a5 87 df 31 f3 d2 d8 d7 80 9d 06 c8 b2 d6 8e b1 5b 37 79 18 42 44 // 99 cd 6a 7f b6 2e 49 a7 88 31 f0 e4 b1 47 6b ef 65 7f b3 4b d5 9e 34 // 79 3d 21 da 3f 7b d0 27 8b be a8 be ed 26 1c 69 7c e1 7f 36 f1 cb c1 // b9 4a ef 11 dd 1d bf 1c 68 49 67 65 25 8f 4c fc 8b 5f dc 91 97 d7 26 // 0b 73 3d 20 61 f3 99 c8 61 bc 59 12 ac 76 cf b6 2b 92 18 19 6f e0 54 // b9 2a 29 5a 9b 95 26 87 11 67 d4 36 b8 30 a7 b4 94 4f 52 7f b4 d7 5a // 03 6a cf 3a 71 a1 a7 10 f6 09 f4 e7 94 f1 d7 64 a5 31 7a c0 67 e8 19 // 46 66 db c7 3e 32 b2 87 0e ec f8 77 6b b7 64 1d cd d6 d7 64 f9 1d ec // 83 fb b5 3a 97 e6 53 12 11 dd 8b 86 bb b5 7f 8a cd 63 7f 4b 1b 66 fd // 97 05 a2 00 e3 08 1e a3 82 26 2d 54 ed b1 61 92 7e b1 d8 5c f7 b9 37 // 3a 24 60 7c 99 f3 d6 6b 85 e2 2d 2c d5 cf e2 40 20 d5 6e 05 52 bd 43 // d8 03 88 21 28 31 7d 9a 56 e6 3a 48 08 ed 64 01 b6 62 18 78 88 a0 d0 // b3 11 36 4f bd da d0 79 11 b5 24 48 77 ee ac e2 2a b5 bd 85 01 d7 48 // ed 5c b0 58 09 e1 63 96 78 c4 c6 cc 43 a3 c2 fc dd 5b 09 70 33 24 29 // c3 cd e0 9d 95 56 c8 36 0f 26 ca a7 44 ce 5e 57 bf aa bc f7 d1 24 b2 // d4 fa 97 d7 e7 2f 16 cd fc 35 f8 74 93 71 7e 2a 85 2b 64 fa 34 4d b5 // ec 72 db df 22 db df cd 12 ff 79 6d 51 5d 5f 3f d3 cd db f5 34 26 18 // 3b bd 92 e2 fd 3e 91 fc a8 fe e1 c1 ef 4f 8d 59 03 6d f9 c4 8f c7 67 // 7f 2c 49 05 b6 cf 4a dc f4 48 02 9c 6c 6a 29 68 b1 3e 3b 77 d5 78 e2 // 66 1a e7 d0 7e f8 4f a0 98 ba e9 a5 64 bc 8c 50 7a 10 39 90 c0 0a 0e // 6d 28 54 a1 68 9f 7b 09 5a 10 0b 7f 38 df 02 8b af 20 bd 56 c8 43 c2 // 4f 8c a4 a8 11 30 25 6b 13 63 64 40 83 68 37 42 9c 1c 86 ae 16 68 d3 // b2 50 10 84 06 ac dd 21 b4 04 50 39 98 72 c1 da 61 78 18 4b f9 c2 cc // 11 ad 80 ca a9 99 7d 3c 66 31 f0 9b a2 a4 d9 6e 6b 74 31 3f 1e 40 fb // f8 a2 99 62 64 8f 40 0d d2 56 c4 85 2c 55 6d ec a2 e3 44 3b 85 8e fa // 43 d5 3e fc d4 96 bf 50 37 a8 2e 14 86 8b 50 86 32 bd b2 dd e9 24 ce // 2c d6 c6 5f 17 08 c1 8c f4 90 73 e5 36 f0 9e 8f cf a9 a4 4f db c3 49 // ae 75 e1 72 05 75 4d 3b b8 2d 3e e8 a9 3c 59 ae a1 bd 7e a6 d1 24 22 // 4b 11 40 5f 81 5e d5 18 a1 cb 9a 80 19 12 49 ac 1c c0 e5 c1 f9 aa b8 // fe 67 bb 73 7c df ef ac 82 a8 9a 7d 6a e0 8b b9 e1 f7 10 ce e4 51 d8 // 51 b3 5b a9 b8 86 df d9 c2 77 dd 67 89 13 31 d4 3f 36 35 3c 78 c6 5e // 9f 35 24 e1 b9 b2 29 c9 f9 1d e7 b5 ab 16 a6 60 17 d1 71 e2 a4 e1 85 // 48 1d 33 cb 5b d9 c5 e3 d9 3c 49 d2 c6 20 c1 64 67 bf 4d b7 36 21 95 // 7f 76 d6 56 e6 d4 cb 4d 59 ca cf 12 09 da 4e 39 35 25 54 cc 2a bc c8 // e8 23 79 b4 f8 19 fd 6d 26 1c 6d 76 15 f8 5f 6c 5d 0b 9f 57 97 68 36 // 49 33 67 e1 bb b1 4c 57 98 3a a9 7c 6e 4e 7c 4f e2 a1 66 28 4c 90 4a // c4 f7 0e f2 e5 2e 4e 7d bd 67 7a ce 68 3c d6 1a a6 0b 70 27 70 aa 0d // df 14 b6 94 bf 3c fa eb 58 5f 8f d8 a8 5b ee 2f 78 40 0a 08 74 df b4 // c3 19 be 24 a4 6d 19 14 b6 e9 02 d5 de 8d 83 75 c9 ec 78 6e f6 ec cf // 1e e7 a0 03 f8 3d 2e 16 30 97 98 0a 06 ab 9f e2 3c 4a e8 e9 17 55 e4 // 21 7d 3c 30 21 11 fe bf a9 dc e0 2a 49 b2 17 ae f7 09 d1 83 a5 ab 8a // d1 d3 9e 9a 69 7a 79 be 30 3f db 22 90 c8 27 27 9c e1 87 d1 c6 47 cc // 28 e2 0c 0b 3e bc ab 2b 1c 75 85 0d b4 62 11 15 0a 8b c5 d8 0d 86 81 // 41 f8 85 f7 a5 ef 52 0e ce e6 d3 38 42 14 10 03 df 4c e0 66 09 0c 83 // 59 b5 dc 32 dd 9e cb 10 39 45 4d 0b 69 1d 8f 97 93 2b 69 98 1b e2 40 // 80 4e 86 0a 88 d1 a0 47 f4 6f f4 36 09 b4 1e a3 6d c2 76 b2 8e 87 36 // 40 49 94 0e a7 b6 dc 78 84 82 21 b3 0d c6 aa 1b 60 f1 79 42 c9 6c 46 // e3 47 60 6d 14 ef 02 ed 3e bd db 20 f7 f4 d2 8b 94 60 f4 af 04 7b 77 // 29 27 ca 6a 04 6b 7d e2 a2 1b 8c e7 9e ad b7 4e 48 25 af 5e 19 ac 29 // 55 99 9d 73 04 a3 58 51 a4 b9 08 6f f9 22 da 88 45 da 10 a5 5f bb 62 // fd 13 d9 8d 45 f6 08 42 d0 d6 30 1c d7 2e 7c b9 7b c8 43 93 a4 14 f6 // 71 e5 e0 11 5a 6c 1c 26 05 4a 80 dd de 10 e0 a8 3a 4f fd 12 35 04 c8 // 81 a8 44 bb 71 87 c6 04 f8 75 88 dd 0d 0f 11 93 0f 9a 3c fe b7 09 8f // 38 f8 49 23 63 7f 1a 9f 6b 3e 3d 08 99 a1 56 d5 0d 7e 74 0b 11 8c 48 // 65 ec 5e 69 aa c2 47 a9 30 00 74 52 74 8b ea 9a f0 af 51 1c c1 12 97 // 40 51 0b 13 f4 8f e0 7e f1 41 7c cc 76 5b 2c d0 13 8c b5 1d d7 1f bd // be 96 7f c3 21 08 2a 9e e4 bb d1 ea 40 4c b2 49 71 de 5a 1e e7 d7 99 // 3b 5d 11 d6 7d 30 e8 ba 94 a9 e9 43 85 26 75 a0 7b 88 a5 1d f6 f4 ab // b5 07 cd ae e9 67 26 02 38 55 e4 de e6 bc cb 3e 26 a2 a8 8f b6 0d 81 // 2e 78 56 c1 3a f5 f4 fc b6 77 6b a8 e2 7a 35 bf fc 5e 46 47 3b 31 a4 // b8 3e a1 a3 37 6f 45 49 af 87 d0 31 02 41 3f ac cc 3f c8 97 cc ae 95 // d2 70 01 63 f1 fc 51 70 a6 43 55 41 69 01 8c 5c fc f8 f5 0c 79 81 27 // 09 95 d8 aa a9 f9 23 c0 67 9b 25 8a ab 60 f7 91 11 62 7b 71 40 4e 1c // e8 75 12 28 97 2c bb 2b eb be 25 97 3c f9 8b f8 fe 8e 63 57 59 50 a0 // aa a1 ff 06 0f 01 e9 67 91 d1 28 d0 b7 b4 08 55 12 6e f3 91 0e d7 d7 // a6 d9 49 06 18 da 35 2a d7 b8 89 f7 d9 05 bc a2 21 42 24 e1 70 f3 0a // 08 8c ff 91 92 19 17 c9 37 95 09 26 cb 11 c0 4f dc 6b ee 77 6b 9a bd // 2a a2 86 ea 50 74 e7 27 56 48 2f cb 6a 7d 07 2e dc 07 5f 99 e0 27 47 // ea 49 a4 0b 26 b5 81 18 b6 69 2f be 55 b0 9b 05 4a 04 4d 1f 48 11 73 // e8 92 3a 74 80 6c b7 70 c4 c6 1f fa 98 20 77 f8 2b c4 db 7f ee 4a e2 // be ed 46 73 e3 9f 5f f0 61 40 72 a7 71 03 41 74 a0 f0 52 ce 39 e2 74 // 50 d1 89 20 66 4e 92 4e e9 63 c9 bb c9 85 2f e6 8f 30 a1 99 ee 48 56 // c1 da dc 08 c0 61 16 58 67 43 8b d3 bb 73 f5 a5 0f 51 31 b7 86 7d c8 // 0e 0c 5d 43 ea e8 0c c2 87 4d 48 ed c9 10 e7 f8 f9 b7 3e 03 2a 8c cd // 7c 34 8e 84 b4 17 9f a1 01 d4 88 c2 fc 16 cd f9 53 e2 69 a9 cf 13 c0 // df e5 75 e0 da 49 d7 d2 c0 92 93 29 6c 02 32 bc a9 fe 0a a8 19 9b 21 // e1 97 46 c4 78 36 30 e4 32 b5 c7 e1 e2 58 64 fc d4 de ae 07 c2 b0 77 // 82 d1 55 fe 6e 6b 5d 9e ed 4b eb 9d b4 7b ae 40 07 75 3d 8b e5 6b 10 // 72 3b 54 67 c6 4a cb 0e ee 4c b9 05 0b 4e f2 b5 7b 63 0f 46 08 af 96 // fb e4 84 81 64 54 ff 38 5a a3 76 50 51 40 87 79 38 4c 65 85 f2 e2 46 // 62 fc c3 00 8d c1 7a bb 07 ba 9c f9 6f f4 c7 95 c9 78 11 e7 3b 06 c6 // 5e 1b 5c 66 c2 e1 87 31 91 d9 72 83 0b 1f 53 bb fe df 8b 5e 8a 64 a2 // 9f b3 b3 ec a6 7f 17 91 65 2f 9a c0 37 c2 f8 7c 6d 1d 9d 45 3b 12 d5 // d2 b0 c0 70 a8 08 4a a1 55 05 e2 40 bd 0c 61 89 53 83 f2 3f 04 60 02 // 7d 60 dd 9e fd 85 39 80 7f 71 7b c3 53 f9 b8 58 b9 bf d2 ac ec f2 19 // 0e 28 0f af 6a 16 03 56 6f f8 89 3d ba 33 ad 33 00 e1 04 38 24 17 09 // ba 74 13 fd e8 48 10 b9 66 b4 55 6f 9c 8a 51 ae f2 7f 9b 90 10 e7 b6 // 20 87 15 16 9a 58 5e 42 bf 3f 73 33 20 9a fb 5b 19 c0 de 77 22 00 48 // 50 d5 33 29 d9 3e 2e 49 09 ec ed 3d a6 7d d7 d2 c8 2a 4c 9d 0d 7c b6 // f5 ff 7d bf 19 5e 8b 39 ba 9c f0 c1 69 9e a1 f8 b6 d1 29 35 09 77 4e // f3 bf 48 59 71 46 a6 0a a5 b6 ef f2 bc 8a 64 f9 ae 9a 81 be cb 9c 39 // 8a b9 67 6d 2c ec b1 4d 28 f8 19 d0 80 50 26 9b b0 ca 9b cf 59 d5 c9 // bd 2f e2 bc df e8 2a 8f 03 77 81 c6 27 5c 92 29 b0 72 9c d0 85 e6 6e // 27 12 bd f2 20 09 44 0c 41 36 c2 da a5 4e 54 73 86 e1 ac d1 6a 1d 30 // f3 d5 5c 1e f0 fe 10 c1 08 21 0b 9d 88 94 d3 1e 5e f1 7b 04 91 06 70 // 0b ae 52 4e ef 74 4e f4 b3 a6 9e 9c fe d4 ef a9 b0 c9 26 21 77 f9 fe // 16 f5 b1 fe 5b fe 5f c6 a6 11 e6 ff cb 9c 5f 32 9d 4e 32 8c b6 99 12 // f0 df b7 f4 a8 3d 32 6c b2 0b 05 36 53 66 30 96 87 0e 7a d2 75 3e 99 // 2d ce d7 40 5a 00 a3 9d c5 5e 65 2e b6 b2 e1 b1 e9 78 2b 42 f4 43 89 // 0c 40 67 b0 73 76 c6 f0 fb 2e a6 58 9e 04 a8 eb 39 a9 4d 91 3d 9f 44 // 10 d2 38 e6 88 0c 16 7a 0a 23 b2 66 57 7c 41 ec 3e 0f 51 3e b7 fc 94 // 8c 12 b2 6e a2 64 6c 04 81 48 84 17 d9 91 1a 01 07 ca 0a e1 1c 2c 4b // 8c 2e ef a5 14 4e cf 8b 14 9d 22 ab bd 26 d1 b2 a3 fe 51 01 6b 9b bf // d2 29 c0 90 fc 2f bb ca 48 03 21 7c 99 1e 36 f8 6d 47 20 b4 5a e4 5e // 6b 20 f0 9f cd 8e 5d ec d7 99 97 e7 91 77 bd 67 de 74 33 28 2c 1d 0b // e5 d5 85 a7 1c 87 3e 71 71 a1 33 d9 f5 ea 35 ac 0a c5 c1 a6 43 27 9c // a6 6a 36 5d 27 8d 14 ee e3 ea 90 96 1e eb b3 f6 c0 98 c0 0d 05 1d 47 // 16 85 3e c7 06 9b e2 a4 62 5c ef 4c 0f 72 ab ae 53 09 d2 70 99 01 d0 // 52 17 fc 3e 52 04 9c 4a a1 6b 50 12 1e 43 ce 49 1d 1b c9 ad b0 16 79 // ec 25 ab 50 09 f7 46 17 0c 25 17 f0 07 2f 16 c5 74 cb 44 7c 6d 8c e4 // a2 e4 54 26 90 04 63 c5 30 34 13 bf 4f e7 fd 64 c2 73 b4 04 cf 93 60 // 68 cb 30 85 c3 a8 1b 98 72 ad 2c b7 9a a4 c0 51 e7 ad 97 cd 4e 8c 6b // 94 bb 0d f8 7e 43 47 ca 6f 11 f1 55 ea 26 57 62 f8 1e b0 e9 fb af 3d // c0 51 57 eb 9f 12 59 6c cd f9 19 30 18 a2 22 68 24 db 6b be bf 4e 89 // a0 70 68 8f 69 8b bf 23 f3 0d fb 04 db 7c 3d 80 4a 75 87 ad 0f d0 3e // 68 cf f7 e5 16 e5 10 9e 32 8e 1e b3 b8 87 a6 ac ed 15 80 4f 2c 89 8f // 41 c5 45 2e 16 0c a3 0e 35 84 37 05 c1 50 ba d9 32 d2 d3 fb d7 91 10 // 0b 15 35 d9 f3 30 6d cf 12 7f a4 9c 1a 36 b1 72 f4 6b 1f b6 76 ea 87 // 83 c2 3e df 89 b2 44 65 60 dc 1b 95 b3 9f 80 eb 9d 09 94 c8 dc ac 9a // 5a 30 4c 55 41 33 e1 d6 ba 36 84 68 a1 73 12 16 7c da 37 93 2c bd 4b // 93 c5 8b 7e f7 72 d5 6d 43 11 18 2a 68 0e 19 da 6f b9 38 84 8a ad 40 // 24 28 56 37 93 10 b6 1d 61 13 de 68 14 64 40 92 71 21 33 82 3e e2 28 // 16 39 b5 2c ec 52 ab 0d bd 65 dd ae 63 1e 71 13 ca 75 a5 47 67 97 cd // e5 f5 45 6a cb fe 63 c6 ca 8b 83 77 46 90 ea ca 3a 01 97 71 ca 0e 74 // 28 15 ca 56 45 41 87 30 ee 17 f5 2f a2 53 1e 54 87 c1 0d a3 ee 08 0a // cd 50 fb d1 97 10 ed 5c b9 24 e2 8a 18 98 51 32 af bb 7d 2f f9 0f 6c // 38 55 c5 69 70 85 4b 9a 48 ec 4f 75 66 d2 82 9e 27 1a f3 f0 ce 26 74 // 26 02 24 1f ef 70 46 1a 48 44 99 59 1a 90 79 ed 53 ae d1 13 58 9f d7 // 49 18 14 6e 19 17 a0 63 51 4d 7e aa 7f 47 20 a3 86 eb 2f 32 b6 d3 5b // aa a5 d3 6c 20 13 eb 40 5c ec 60 72 02 f1 9b da 80 bf ed a8 00 5c 5d // 15 82 20 8b 86 14 37 ff f4 1e c0 70 8a 6a 98 f2 b4 b4 46 31 41 c1 c3 // 12 a8 11 55 09 e3 63 a2 74 86 48 98 be 99 61 76 04 9d 5f 7e 6c ba 76 // b3 a3 7c 9b 2e e9 55 3f c7 0f 79 50 37 97 46 4d 73 6d 97 d0 bb 47 41 // ea 8a d1 4f de 6f 18 fb b0 2a e9 7e 5a 77 bc 15 27 a1 3f 18 62 49 27 // d7 9a a5 b4 df 2d ff de 7f b5 35 6e 52 1c 7a 41 92 09 03 1d f8 13 88 // 38 15 1c 7e 90 78 3c 9a f1 33 b6 96 1b 44 f8 de 89 d6 34 8b 19 1c fa // 6c 0a b6 52 74 6b 85 82 13 45 37 72 7b 18 c6 70 69 1f 3c 1e 8c a0 e3 // ce fc d2 61 11 be f4 76 eb 81 64 82 b7 72 63 99 c8 6c bc 98 f0 f0 69 // 29 c2 6c f8 31 16 3b db e1 fa 8d 8f 96 a6 5d 3b bb 3d 37 65 7c ec 4b // 77 51 68 64 cb 32 40 49 96 da e1 d0 d9 f3 c1 2b 7f 26 98 f0 79 30 b7 // 91 81 3b 7c cf 0f 0d cd 33 20 b7 88 33 f0 77 ee 55 aa e1 56 af 80 4f // a9 a1 5e 60 c7 09 fb 30 b0 6a c0 92 bf 97 a4 fe 47 32 ea 7b c9 3a a7 // 32 32 02 4c 80 43 4b 49 00 cc 30 de 20 cb c1 ea 40 77 46 fb 18 6a 61 // 0f e3 16 35 76 6f 5e da a8 c9 ae 97 4f f8 ce cc 4e 7e 39 1a 50 bd b3 // 4c a1 de c1 56 7e 86 64 97 bb 59 85 2c fc 1f db 36 1b 23 5c 80 3d 70 // cf c9 0c 22 90 78 07 96 19 b4 a8 08 6a 68 d4 20 ee 1d 7f ac 40 3b 18 // c7 f6 aa d9 16 12 e2 f2 b9 e5 e2 06 bf 89 7b d9 8a 3b 24 a0 63 7e 2b // 98 6a e7 f5 d3 76 bd 63 d6 3f 6c 4f 15 1c e7 ea a9 7a 30 d9 d5 1f 1a // 92 07 dc a6 b5 96 83 1a 9b 92 51 7b 9d 55 71 e7 2b 4a 06 c0 7d 5f f0 // d3 25 89 6a 1b 32 e9 fb 4f 9d 67 a9 03 94 6b 20 5f ba 7b ed a1 08 fd // e3 fc 50 3c 73 52 c5 9c 03 be bc 28 91 00 7f be 96 6a 04 41 a7 f4 bc // 83 20 b9 01 56 3a c8 ea db a6 43 bd fc 16 36 86 4d 33 54 9a 1b 9a d3 // ce 01 be c9 4b 63 1a c6 f4 6c 45 3c 57 c6 2f 2c f0 f7 6d 9f 1e 07 31 // e2 66 31 16 24 a1 38 e6 07 e6 99 c9 1e 37 a3 30 96 11 7f 41 8b 4c 92 // c6 6d 96 fa 1b 13 24 cf b5 69 e3 d5 58 59 8e e6 5e 69 b8 e0 b9 62 5d // 55 1a f5 4a 09 db 80 82 f2 fa 9d a1 38 6f 92 24 5a ad aa 13 bf a3 cf // 5c 39 fe 45 51 80 bb b5 e2 42 7e 40 67 bd 2f 5a 5c 75 5c 31 40 54 77 // ba 83 2d bb dd 4a f6 6a cc 7c 11 e5 76 f7 00 e2 4f b4 c2 61 60 b4 44 // 3b 8c 17 80 52 38 51 9c 7c 73 2d f7 74 b9 25 79 e0 2a 8d a5 e9 a1 7e // 3c 20 e9 2a fb a7 fa b4 90 00 a7 b8 39 87 ea 48 d5 85 4a 04 11 61 54 // 62 ca bd 24 5a b3 f4 9b a3 75 ef 17 9c 0a 78 05 9f fc 14 26 41 77 a6 // e4 5d c5 f2 fe 6c 95 7a 31 3b a9 88 9f ef 33 b7 88 93 3b b3 7a 17 94 // 35 51 db 9c d0 8f d8 d8 23 fd 0b 35 11 0a d5 89 c3 bb 3a f4 f6 9b d1 // c7 c7 a3 e7 26 f9 33 e4 a0 cb 12 09 e7 5f f1 49 10 06 1c 37 50 b9 31 // 2d e4 2c 86 83 8d 5c 35 a6 81 89 9c 25 22 0e a8 7a ff 02 bf 72 fd d8 // 74 5f 5d 75 1e 6d 62 86 14 96 89 0c 95 61 43 c0 8a 22 27 74 97 47 89 // bb 46 92 4b 68 a6 e3 13 8c e9 db ca 62 2e 78 c5 ae ed 82 15 de 4e e5 // c1 f8 31 2b 63 49 a9 1e f1 e2 10 f1 85 22 b7 a6 44 70 0e 90 ef f9 95 // e9 50 c8 ed a0 5d 0b b8 e7 99 ef 32 a7 dd b8 a8 7b 41 20 a7 98 a3 f8 // 7c c7 8b 6d b0 c7 94 7b 47 86 db 16 18 c5 23 20 3c 09 7e f3 d3 dc 0f // 4e 1e 87 d0 d5 97 c4 ea aa c0 5a 03 3a 3f a9 13 09 c0 5c d8 c1 4d e6 // 49 d7 dd 16 d8 ed 81 e5 29 09 50 f6 6b 66 fd 51 9a 2a 16 fc 6b 35 26 // f9 7a a1 12 1b 4f b5 2b 30 64 01 22 df b5 0f f6 19 fb 5c 88 eb 1c 4e // 6e d7 f6 d0 9f d2 9e 27 b3 37 5a 1a ad 5b 09 f8 17 51 57 01 84 67 f8 // 83 ba 38 52 08 fc d3 2a 50 a3 11 b2 2f 79 51 bd 0e 91 2d 23 43 64 f8 // 59 0e 24 7d ea 60 48 72 f9 bb 84 7b b3 2b 39 06 33 9f 56 98 d6 e7 c0 // f2 a3 ed 17 b1 94 23 92 99 09 1f 5e e4 ed 51 c7 5b 76 bc 94 9c f0 5d // f5 dd 03 cd 8a 55 3e 7e c8 18 81 fd c1 e1 5c ef 5e 72 ee cd 78 43 a9 // 81 ef f4 17 68 26 04 76 9e 30 2f 37 8f f9 51 9c db d3 ba 2b fe 50 f8 // 5a 90 3a a0 8b 90 01 18 22 68 89 e9 bc 68 12 47 77 f6 e0 2f b2 6f ff // 91 d1 f3 1d 38 28 24 3c c4 6d 4b 4f a2 96 54 45 77 4e 0d dc 52 1f e5 // fc 96 26 fe 34 28 40 3e 74 6d e0 19 6a 45 d6 ac ef 57 f6 62 fa f2 72 // 94 be 80 fe d3 97 78 a7 58 5b 41 17 8e a3 8f 64 89 3f 9a 46 33 4a f6 // 42 5a 4a a4 6e 25 e9 2b 0d 77 75 0c 67 37 b2 37 df f1 99 13 fd 9e 69 // ed 92 c4 b6 67 1b 42 26 77 6b 34 ae 24 68 90 7c 65 4b b0 f6 19 b2 c9 // b5 59 20 fb 99 e9 7b f3 22 12 f8 52 b6 15 68 9f 3c f4 c0 3d 51 d1 58 // 74 55 b5 72 06 92 43 0f e2 68 45 22 bf e6 da e8 71 aa 2f f5 f0 00 45 // 86 1f fc fc 21 98 88 fe f8 32 0b ec 13 07 23 6a 7a 42 dd 4a 69 1c b6 // cd 4d 84 36 f3 1a 3f 2d 64 2b 05 94 6d bf ee 69 2a ee 0d a3 14 19 f9 // b8 bc 0e 1d cf 89 a8 ff d7 85 6b 21 b1 18 0e bc 8a d7 53 08 b1 37 0b // 93 d6 80 e9 68 bc de 7d 23 5f 60 17 60 a5 d1 81 f7 b5 5d af 33 0a 00 // 1a e1 da 86 c1 30 c7 6f bd 95 64 42 b6 c7 05 88 9d 66 55 60 f8 b3 46 // 63 39 05 92 d8 5d dd e7 90 e0 f4 f1 f0 df 09 c1 c6 f9 54 77 f9 d7 2d // c0 89 4b 2e fe 2c 3d 16 2a d8 0f 80 ca e0 3a 06 54 80 14 29 3a 02 f0 // 0d 63 86 72 3d 42 ab 09 05 2f 01 9a 1d 71 d8 8a 78 db 27 af ea d5 8b // c5 16 be 8d 23 89 3f 00 7a 17 ff 47 b3 27 77 75 2a 15 64 8d 0e ce cd // 34 5a ee 1f 36 c5 8a bb 7e fa ff 55 67 10 0c 0b fa 54 f1 72 c8 62 e1 // 58 72 ab c9 d9 6c ea d6 68 8f 02 ea 84 66 fe 11 34 bd 37 56 c6 f0 df // 89 03 fe 79 35 db e3 e6 35 da 36 8f 13 a1 0e 30 18 cf b5 55 7d 38 f8 // 59 a9 83 a5 4d 66 0a 02 bd b3 da c2 92 2e 7a 37 65 16 77 bf c6 64 d5 // 8d f5 9e a6 25 e8 e6 3e e7 76 bc c2 93 7b 92 1f 55 44 92 4b 75 cb a0 // 4b f3 cd 0d f8 31 93 8f 9e 9c 79 57 2e 84 92 d8 84 64 62 44 99 09 20 // 40 01 92 c6 3e 15 02 4e 2e 12 39 f4 13 90 bf 7c 0e 18 f8 52 e2 3d 51 // 42 56 cc b8 cc b2 72 67 10 40 1c 43 06 65 7f d7 5e ba 94 a3 53 98 77 // 80 a6 d6 21 90 12 cf e8 08 58 06 0e 37 65 2a 84 ae 89 d0 7f 5d 65 1f // e8 2a 2a 8d 0e 85 68 49 21 56 71 3b 1f 76 e8 9e 12 f7 6a 02 54 da 7d // 52 6d f5 1a 08 96 00 f5 b7 55 9a fd c6 3d 48 72 fe 8d 6c e0 0a 8d 0c // 9b 00 db 5e e6 76 ae 25 45 e7 4f b7 b3 9f 83 45 a6 79 13 b2 34 cf b4 // f6 e3 b4 e2 b1 e1 f4 f1 c7 fc ce 8c 09 cd eb 6a 1a 21 bd 23 70 00 4e // 58 3e f6 29 71 ae c2 4c e0 c6 c0 49 b6 a2 e2 20 81 d3 68 54 95 6a 36 // 2b 6c ba d4 80 49 d7 d5 f9 01 34 d3 e7 7f eb f8 7b f4 a3 2c 07 cd eb // 36 c9 cc 56 b2 b3 cc 8c 8b 47 87 9a 32 ff 00 f3 b2 e9 77 ce e0 ac b3 // 0f c4 24 db fe 24 c8 8d 1a 08 d0 47 92 5c d7 d6 5a 58 34 e5 6d b2 b3 // e7 e0 a2 3d bf 94 8c 79 9d b5 a4 8f d4 a5 fd ea 43 91 3b 2b 2c 14 9a // e9 a9 8f 45 2b 79 7b 55 ab e1 dd 44 b3 02 32 38 7f 46 68 56 d6 c3 8c // a7 35 dd 61 75 b4 55 36 3d bf 22 8e f5 2e 44 3d a2 2a 1e e3 a1 58 ee // 30 4d 9c a6 3c 11 0a 3d 19 ca 3b ab 6d 17 45 af fd 81 c4 80 ff 8b cf // 5f 8f 7c 1e a6 d0 8a 7b 3c 39 58 c3 24 d4 27 32 71 11 70 e1 95 23 bd // 20 91 34 67 4b 18 4d 4d 44 2a 77 4e 04 d6 eb 4a c8 9a 6d 01 8c f0 bb // 68 a7 3d a8 7a bc e1 27 e5 74 28 cf 73 a5 a5 51 c8 5e a8 c3 76 ae 95 // 1c b8 35 75 06 f0 37 d1 7d 16 31 72 dc 57 64 68 2c 75 30 50 f3 5c 68 // 02 fb 26 9d 74 90 b1 96 d5 7b b8 a1 ad a5 5d a7 55 0f 82 35 73 20 e1 // 4c f5 73 ed 39 86 0f 02 a1 1b da d9 17 b2 ba 2d e8 85 c7 ea 8b 30 dd // 62 bd ad 20 7d fe 10 e9 7c 8b 71 ab bc 8c 56 61 a4 48 3b b6 f9 48 8a // da 0f 58 85 c4 71 cf c1 27 1b 60 d5 4f 90 33 17 cc a2 8c e9 77 f4 44 // 4c ef ac 5c 2f f2 33 dc 87 2d 4e 80 90 91 f8 45 2d e9 c7 74 ab 3b be // bf 62 de 92 cd 6a a7 42 1a 41 f7 d1 de a4 2e 4f 94 bd 3a 48 69 c9 58 // f3 94 0a 99 c8 88 35 ed 2f 40 21 11 4b 9a 5b b1 72 40 f4 68 88 7b 21 // 38 14 95 6f 9f 5e 63 44 cb ae 19 d8 75 3b 97 c7 ce 2e 9d 09 54 a3 0d // de 23 de a2 74 8e 1c 95 14 67 2b f4 ea 3e c3 e3 48 a5 63 d9 64 98 99 // e7 22 77 08 e2 e7 7d 0f c5 84 7d c1 6b 59 ac 3d ea 94 49 c1 76 de a2 // d2 ff 6b 6a f7 64 d2 8d ee 5c cf d0 df d6 e3 10 0d 97 04 06 57 d7 ac // 5d a4 03 2e 3b 7f 6b 0c ef 2e c5 5a 83 35 0c 30 45 ab b1 02 00 c2 64 // e6 e6 8e 3e 03 b6 85 46 ae 48 a5 38 06 3b 86 31 5b b8 07 31 03 a8 12 // 71 7f 2d 88 16 53 4f a9 8d 0e 95 6e 0f 9a 67 bc dc 52 2c ac ef c7 7b // 0b e7 18 32 a6 9f fb 72 fa 15 ca 4d 8b 15 f7 fe 03 da 0f 4b 24 c5 fb // 68 e5 f3 a2 29 7b b0 cb 0b 7b fd ee ec 4d eb 64 bf 71 f5 78 20 d6 2c // 47 27 6e 27 80 b4 34 1b 6b c6 5a c4 9b e0 9c 94 01 37 83 45 5a 95 de // 92 c1 1d 91 b9 e9 21 a4 84 ed 69 53 2b 92 e2 02 d6 84 d2 29 3a 26 66 // 70 9e e3 8d 21 14 ad d4 c5 33 7b fe ef 31 d4 81 e1 25 30 c5 c7 e8 3a // 6c 8a a2 f5 80 f6 da 2d 73 5e e5 26 0c f9 a7 18 5e ff 84 eb 22 d6 e0 // d5 ac 0e 63 fe 6a 3d ef 81 92 74 a1 44 be 5a b9 0f a1 57 bb 75 17 a5 // 4c 20 8a a8 2d a9 26 d5 b0 9b a6 49 e3 26 a6 54 fe 8f a9 dd 7e 6d 83 // b0 a6 62 53 52 6e 5b 5a a0 3e 66 5f 2e b4 67 8e 82 93 11 04 20 c9 d7 // 55 6d f0 7c 7d d1 c3 e8 17 a4 c7 40 98 90 c4 ff 50 44 ec db 34 eb 65 // 2a 4d 7e 20 b4 b0 d5 96 f4 6e e3 c3 da d6 75 e9 58 e9 1c 3b 40 f2 d2 // 2e 67 1b ae 51 51 84 43 04 2c 52 9c 31 e3 43 64 7d 6d de ac 7e c3 70 // 97 0f cc 71 a2 4a 08 26 b5 8d 11 1e 9b 77 6a c0 e2 fa 40 b3 09 92 98 // ff d0 d1 c0 4d 41 ee 1d d0 39 42 5f 52 f9 f8 05 7a c1 f2 06 20 3f 20 // e1 ae 9c ba e3 56 51 8b a2 fe 9e 49 b4 7e 36 94 2e d7 20 4f 3d 7d a9 // e7 1b 8d 69 df 3a e7 b2 de 05 a1 3a 87 9a f6 a1 ea 62 41 c6 45 ed 73 // c1 39 e1 50 60 ae ab 6f 42 3c 21 80 dd 10 18 63 a2 4f 16 88 ec 1a 33 // ed c6 24 c3 f5 e8 0a 20 e4 cc 5c 86 ab 2c 69 2c 2d 3d 17 d8 a6 8b b3 // 92 4e ff fb 29 c9 fc 3d f9 37 52 64 52 d8 2a 8c a9 a5 58 c7 5d 6b 25 // 04 df 1b 66 c9 18 23 21 6a 1c 3b 3b c3 9d ee 0d 22 49 1b 9c 89 1b 9e // ea 19 3c 8a f8 a9 92 09 6d 0c d7 46 30 f7 22 2e 9a 35 30 03 4a 58 2f // 40 60 1a 69 4c f1 08 5f da 7f b3 3b 07 33 2c 6a eb fa 70 e2 eb b8 d7 // cc f1 9a 69 df b5 e4 c1 66 ad d5 e1 53 50 4e ee c9 2f 4e a2 fe 47 f2 // 91 62 5e 1c 47 0b 83 2a 48 8f 88 46 92 b8 ec 49 b9 6d f2 35 f1 93 02 // 7e d3 8f b4 d8 b8 8e d3 82 82 5d f8 ff e5 b0 c6 fa b8 db 3e 38 d6 0d // 46 7f 9d a7 25 02 3d eb 72 c3 78 25 8e 91 14 42 af ae 4d b6 50 be 36 // 21 a0 33 a3 b8 4e ee 65 c4 c0 66 4e c6 d5 77 1c c1 38 93 74 34 a6 a3 // 61 de 3d c1 c1 2a 2a 67 35 f0 80 e9 43 14 dd f2 91 51 69 71 af 25 2e // 3c c5 6e 1c 65 ba 5c f8 ac 25 38 87 8b 22 03 4b a4 58 e0 8d b2 62 05 // 60 8a e9 41 a4 2a 27 f2 64 3d ed 87 bd e6 26 38 7c 2b 79 1c e5 79 91 // dd 2b a0 80 10 23 72 79 ca c2 76 0e 19 ca b9 05 9b 22 9e a0 02 ce 4d // 3b 4a fa 49 52 30 e4 24 75 2f 28 90 03 a2 40 f5 ca fc 7a 83 11 26 36 // 32 11 07 91 8d 58 2f ad 26 06 a4 31 91 99 a0 6e f2 cb ea a3 e1 a4 d8 // c3 05 01 aa b7 96 f5 cb e1 54 53 b6 12 18 a3 96 b7 9c 54 7d 15 d5 c1 // 10 33 b3 74 6b 43 2b 42 64 04 f7 b0 42 1b 9d aa fd 9e 85 58 f1 90 12 // 83 d5 8e 17 3c 4d b0 51 1e e8 26 dd c6 36 3e b5 1e 08 37 c9 be 6b 20 // 78 d8 08 d2 c0 5d b7 49 5d 29 32 2e e6 af 68 b0 d5 2c 45 f0 0a 59 73 // 1c 0e 5b 26 08 ae 04 6a f8 bc f8 30 f0 01 ff d2 f9 55 ea 89 be d2 16 // e7 1c cb 5b 44 71 3e 2a bf 5e e5 43 8d 63 82 9c 9a ea 34 b5 7f 7a b5 // 2b 82 0c 24 a7 e9 fa 13 82 43 e4 af b2 df 93 58 8e 80 5e 71 9c 17 67 // 14 6a 35 1d eb b3 46 78 a8 6d d1 9f 05 87 af 31 19 54 60 a3 aa 3e 68 // 77 38 59 fe 13 b4 7b 6b 31 a5 01 b4 a2 5c 66 60 cf c4 7f 33 18 b3 3b // 77 b1 0e d4 ba 91 08 64 82 db 03 9a 56 fb d1 49 0f 44 0a 6f bb 28 0b // 62 b6 d2 33 3a fe 1c 42 c3 f1 68 65 b9 c0 e4 84 a4 f6 f3 93 b8 bc 34 // fb ba 85 6c c5 ff ad 2f e4 23 e7 9f 69 1b 95 e7 e0 db db 2b 27 57 d9 // d4 44 3f 9a 23 a8 b1 bf db 16 f8 bf fd 81 b4 78 9f 80 f1 fc 4b f7 51 // 62 79 65 75 5d 00 8d 13 4e 2c 35 da 34 f5 47 18 61 5e 9d ea ca 06 85 // 39 6a e7 e5 81 21 32 7e 0c 06 96 59 1f 6a f9 3f 29 99 eb d3 b4 e0 3c // fe 2a 48 b2 b9 40 15 eb 06 b2 a9 03 1a b5 e1 29 b2 70 06 48 fd 62 ab // 75 f7 77 34 b8 9a bb 40 22 82 63 5e ee 41 60 6e b3 06 61 9e 2d ae 84 // 48 8e 2a ac 1d f5 4f 78 46 0b 36 11 50 72 a2 c2 88 01 fc 12 24 82 f1 // d4 6d e4 b2 ee c0 7b bb bc f8 5f 30 ff b3 82 9c 5d 0f db df 3a f8 c6 // 32 2d 62 f4 c5 5e be 8f d5 27 28 e2 d5 d1 a2 4f 09 6f ff ce c6 ff 2e // 75 2f 75 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: nil // dirent: nil // direntplus: nil // create_open: ptr[in, fuse_out_t[int64, fuse_create_open_out]] { // fuse_out_t[int64, fuse_create_open_out] { // len: len = 0xa0 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x16 (8 bytes) // payload: fuse_create_open_out { // entry: fuse_entry_out { // nodeid: int64 = 0x3 (8 bytes) // generation: int64 = 0x0 (8 bytes) // entry_valid: int64 = 0x4 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0xfffffffb (4 bytes) // attr_valid_nsec: int32 = 0x3 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x7fff (8 bytes) // blocks: int64 = 0x6 (8 bytes) // atime: int64 = 0xffff (8 bytes) // mtime: int64 = 0x4 (8 bytes) // ctime: int64 = 0x1 (8 bytes) // atimensec: int32 = 0x1ff (4 bytes) // mtimensec: int32 = 0x9 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0x8000 (4 bytes) // nlink: int32 = 0x0 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0xfffffff9 (4 bytes) // blksize: int32 = 0x1 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // open: fuse_open_out { // fh: const = 0x0 (8 bytes) // open_flags: fuse_open_flags = 0x2 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000008400, "\x44\xea\x07\x86\x2a\x07\xee\xfa\x4d\xe3\x70\x92\xcf\x43\x56\xf5\x44" "\x54\xdb\x90\x30\x1c\x4d\x37\x3d\x57\x16\x6f\x79\x4f\x16\x9d\x63\x34" "\x48\x40\xa3\x70\x48\x63\x8f\xfd\x5e\x30\xbe\xad\xe3\xfd\x76\x8b\x18" "\x19\x10\x01\xeb\x89\x02\x77\xfa\xd8\xbd\xfe\x37\x42\x68\x6d\xee\xb3" "\x43\x95\x96\x3b\xcf\x7a\x87\x0a\xdd\xd7\x6c\x80\xab\xa9\xf7\x71\xeb" "\xdf\x41\x0c\x7d\x75\x42\xfc\x2b\x6a\xe9\xa4\x58\xd7\x94\x57\x75\x5d" "\x94\xba\x8a\x32\x48\xb0\x1a\x22\x93\xd8\xa7\x0e\x60\x81\x5b\x90\x29" "\x70\x02\x65\x29\x66\xa6\xb8\x36\x06\x5b\xca\xe0\xb4\x4f\x4b\x26\xbe" "\x93\xde\xc3\xcd\x4c\xdc\xbb\xc8\x4c\x5b\x91\x6a\x1b\x0d\x83\x13\x34" "\x06\x75\xd6\x7f\xb0\xc7\x85\xd0\x30\x7f\x95\xe4\x26\x54\x6c\x9a\x4d" "\x01\x61\xa8\xf5\x2b\x02\xb9\x5f\x4d\xa5\x3c\xed\x70\x5a\x65\x87\x22" "\x09\x18\x64\xd7\x4a\xc0\xa3\xa5\xf3\x85\x3a\x0a\xd7\x1d\xdb\x29\x83" "\x56\x80\xca\x9f\xf3\x05\x31\xf8\xdf\x0f\x0a\xc6\x6f\x7f\x14\x33\xc3" "\x3d\x75\xfa\x8f\x0f\x02\x2b\x17\x5d\xf0\x93\x64\x8a\x81\xaf\x5e\xd7" "\x01\xb2\xe7\xa1\x41\x99\xc8\x3b\x53\x9e\x76\x3d\xbe\x72\x28\xf2\xe1" "\x84\xa0\x2b\xec\xd4\x1b\xae\x30\x5d\x3f\x34\xc7\x2e\x8d\xb9\x3d\xd2" "\x14\xec\x20\x3e\xee\x6e\x6d\xab\x26\xb4\x18\x48\xc9\x5f\xe1\xec\xe8" "\xca\x15\x7a\x90\xbb\x7a\x99\x0d\xac\x5f\x3c\x64\xcf\x49\xc5\xc5\xaa" "\x84\x14\xb9\x15\x3f\x82\xec\xa9\xdf\x88\xd9\x0a\x8d\x6c\x0e\x72\xea" "\xcd\x52\xf8\x29\x39\xd4\x6d\x41\xe0\xf5\xcc\xf7\x08\xc0\x3f\xcc\xec" "\xea\x46\x7f\x33\xf5\xa4\x98\x88\x51\x47\x87\xe4\x2c\x0a\x12\x25\x5b" "\xca\x89\xe8\x23\x44\xab\x01\xac\x3b\x6c\x61\x58\xe3\xc1\xb3\x4a\xd9" "\x53\xea\xf5\x5f\x3a\x2c\x48\x7e\xfd\x94\x23\xa5\x42\xe4\x1d\xbd\x00" "\x58\xaa\x02\x1c\xb6\xfd\xc5\xdf\x88\xf8\x07\x03\x3e\xdd\x31\xab\xaf" "\x5f\xf7\xe6\xa9\x57\x8d\x2b\xe6\xa2\xd9\x25\xd9\x81\x08\xfd\xa2\xa7" "\xe5\x6a\x0b\xbc\xdc\xe0\x68\x9f\xa9\xe2\x11\x1b\x0b\xe8\xf3\xe2\x80" "\x7f\x7f\x37\x28\x48\x99\x17\xa0\x31\xf2\x18\x7a\xd9\x8a\x74\x4f\x19" "\x85\x16\x87\xad\xf5\x9a\x4b\x4c\x32\x8a\xd5\xc4\xf2\xea\xa0\xd1\x12" "\x04\x13\x69\x31\x9f\x6d\x3f\x92\x8c\x22\xd0\x5f\x9f\xd6\x8b\x5c\x26" "\x8d\xa5\xe2\xf4\x33\xd6\x51\xbc\x60\x2a\x65\xee\x83\x75\x2c\x0c\x92" "\xf7\xe2\x90\x02\xfa\xf9\x47\x5f\xbb\x57\x78\x8d\x72\x5f\x6f\x8f\xd4" "\x95\xa5\x8d\x88\xd5\x5a\xb8\x46\x7a\x85\xd1\xf4\x1d\xb5\x96\x4a\x19" "\xbd\xd4\x53\x77\xc7\xc8\xc7\x92\xde\x5e\x76\xe8\x7d\xa9\x29\x6f\xf9" "\x0e\x7f\xa9\xe5\x7f\x09\x35\x8d\x99\x8c\x87\x79\xbb\x23\x48\xd6\x51" "\x80\x8e\x96\x9e\x96\x07\x63\xc5\x23\x1c\x65\xa0\x6e\xe1\x69\x79\xf4" "\xd9\x90\xdb\xe7\xe1\x0b\x3a\x23\x92\xdf\xd6\x48\x3b\xf2\xc7\xc5\xf6" "\xf3\xd9\x41\xcc\x17\x66\x36\x68\xcc\xa8\x3d\xcc\x38\x08\x9b\x43\x42" "\xa8\x01\xc7\x40\x39\xb3\x25\x50\xc2\xd9\xcf\x95\xa0\x23\x65\x23\x93" "\x3c\xe3\xe7\x53\x8f\xf9\xda\x2b\x7b\x74\x1f\x3c\xbf\x53\xe6\x08\x47" "\x02\xd0\xa5\xda\xda\xb4\x35\x08\x48\xf6\xe7\xba\x46\xd4\x73\x6c\x7a" "\x2a\xe7\x02\xc4\x80\xc3\x0d\xd7\x8f\x99\x4a\x10\xb9\xc3\x15\x7a\x17" "\xe9\xe2\x95\x76\xa6\x81\x39\x40\x33\x00\x58\x6e\xb0\xc6\x73\x25\x2a" "\x31\x9a\xa1\xcb\x01\xef\xa7\x77\x22\x8d\x82\x42\xeb\xdb\xef\x9d\xb5" "\xc0\x3e\x4c\x8e\x09\xbf\x7a\x00\x9b\x7e\xb1\x93\x57\xd1\xad\x6d\x1d" "\xef\xc0\xdb\xb5\x8c\x31\xd8\x5b\x9f\x10\x35\x05\x66\x15\xad\x0b\x0d" "\xed\x12\x75\x12\x73\xc8\xbb\x78\x10\xcc\xc5\xb2\xef\xe5\x1d\x22\x38" "\x94\xb1\x41\xdd\xa8\x37\xe6\xb7\xba\x21\xde\x9a\x97\x8a\xc4\x47\xd9" "\x95\x39\x4b\x80\x0e\x10\x65\x90\x64\x55\xaf\x54\x4b\x9d\x7f\x35\x3d" "\x1e\xef\xcd\x33\x87\xd1\x8e\x36\x11\xf3\x91\x39\x26\xf3\xa4\xb8\x7e" "\xfb\x3a\x97\x07\xd6\x13\x6d\xc0\x0e\x49\xea\x5e\x7a\x6d\x0b\xea\x17" "\xeb\x49\xca\xe9\x3c\x0c\x44\x22\x37\x4b\x0f\x46\x38\x0e\x0d\x55\x4e" "\x10\x87\xc1\x39\x27\x16\xd3\x68\xb0\x4b\x1d\xa8\x5d\x27\x12\x06\xb4" "\x65\x60\x84\x68\x80\x2f\xae\x00\xc7\xad\x94\x25\x97\x4d\x82\x2c\xff" "\xbc\x42\x0e\x73\x9f\x76\x17\xf5\x9a\x87\x9f\x79\x1a\xb5\xdd\x7a\x62" "\x15\x29\x8c\xc7\xdc\x69\x04\x67\x98\x89\xe6\x0a\x09\x11\x4b\x0f\x42" "\x1b\x6f\x12\x86\xd0\xa6\xab\x3d\xc8\x87\xc2\xd3\xa4\x8d\x53\xa7\x61" "\x1e\xc2\x70\x53\x0b\x07\xa8\x3a\xe1\xa2\xbf\xa6\xda\x42\xab\x38\xbe" "\xc3\xeb\x8e\xd1\xe2\x07\xd9\x1c\x02\xe7\x4a\x31\xc2\x9a\xbb\xd2\x5f" "\x57\x79\x18\x9f\x5f\x24\x94\xea\x5c\x3f\x4b\x82\x9b\x96\xde\x0c\x54" "\xb3\x85\x1d\xd5\x86\x10\xc2\xb9\xdd\xcc\x29\x60\xf3\x4f\xb8\x57\xc5" "\xab\x1a\xa6\x7e\x8e\xb1\x0a\x59\x63\x9d\xb2\xdd\xeb\xd0\x20\x6a\xe7" "\xee\x56\xb2\x1e\xf4\x84\xe3\xc6\x60\x03\xaf\x46\x32\x6f\x1c\x45\x6a" "\xd2\xab\x52\x73\xd0\xc0\xb2\xbf\x41\x2f\x71\xf8\x20\xae\x12\x72\x3c" "\x74\xe1\x85\x7e\x0a\xe3\xd5\x58\x7a\x04\x27\xc1\x59\x5e\x06\xb1\xd5" "\xab\x5e\x81\x5a\x55\x58\x30\x2e\x0d\x9c\x50\xb8\xc6\xcb\xd5\x99\xeb" "\x55\x4d\xf6\xf7\x32\x3b\x01\xf1\x35\x3b\x55\x7c\x56\x5d\xfe\x0d\xe5" "\x10\x32\xa8\x85\x41\xb4\x9a\xb6\x82\xa7\xdb\xe4\xdc\xcb\x9b\x95\x2b" "\xa9\xc9\xce\x3b\xbf\xf8\x0a\xf0\x1e\x47\x95\x36\x66\x32\x7b\x8a\xcd" "\x7d\x2c\xf3\x63\xc6\xf7\x17\x2c\xaa\xf0\x1d\x8e\x34\x17\xf7\x68\xab" "\x08\xf2\xcf\xa7\xff\x26\xef\xd2\x19\xe2\x5e\xf0\xf9\xa8\x4c\x7b\x11" "\x69\x78\xee\xaf\xe3\x41\x09\x72\x49\x02\x03\xdb\xe4\x9a\xec\x33\xf1" "\x4d\x55\x92\xa4\x66\xa6\xef\xe6\x30\x90\x4d\xb9\xc7\x7e\xce\x20\xbe" "\xc7\x55\x2b\x3d\xfb\x48\xd4\xe0\x42\x7c\xe5\x02\x4f\xdc\x0a\xec\x72" "\x71\xe9\x3c\x51\xaa\xb1\x9d\x7a\x40\x67\x0a\xdd\x6e\xa5\x82\x0f\x62" "\x58\x31\xa5\x93\x13\x7f\x60\x54\x3e\x42\x48\x92\x85\x6b\x3b\xb9\xe6" "\x08\xe8\x8e\x65\xcc\x6d\xca\x09\x8d\x51\x39\xa3\x8a\xda\x51\x7c\xd7" "\x88\xb9\xf1\x36\x18\xd9\xc2\xc3\x1d\x79\x18\xca\xc6\xcd\x66\x97\x10" "\x69\x27\x97\xe6\x1f\x4d\xf3\x93\x8d\xd4\x29\xd9\x77\xcc\x11\xe7\x46" "\x5a\x7a\x23\x74\x00\x52\x03\x9d\x9b\x31\xcd\x26\xb9\x5e\xfb\xa1\x7b" "\xfc\xef\xe1\x21\xfc\xbb\x76\x2d\x29\x28\x71\x45\xb1\x1a\x3a\xbb\x3e" "\x06\x83\xb9\x21\x6a\x8b\x5d\x97\x44\xba\xa7\x5d\xa5\xd8\x40\xe7\x0c" "\xb3\x10\xc5\x07\xc4\xf7\xee\xf1\xd6\x53\x5d\x8e\x11\x07\x9e\xdc\xb5" "\x1d\xf7\xea\x63\xa7\x20\x4e\x31\x41\x47\xee\xb5\x79\x16\x17\x1c\xa3" "\x3c\x0f\x59\x32\x91\x6e\x4d\x56\x8d\x9e\x7d\xd3\x55\x55\x00\xae\x11" "\x9f\x0c\x63\x04\x56\x58\x30\x3e\x1f\x4e\xa9\x9c\x89\x6e\xae\xff\x3e" "\xbf\x76\xb2\xde\xf0\xea\x85\x6a\x3f\x24\xcd\x76\xdc\x43\x72\x36\xb7" "\x1d\xad\x9a\x26\xfb\xf3\x88\x2e\x81\x56\x58\x51\xeb\x6c\x5b\x26\x5a" "\x07\x21\xbe\x43\xf0\x84\x4f\x4d\x0e\x42\x96\x01\x1e\x28\x02\x36\xa0" "\xed\x76\x56\xf2\xeb\x90\x6e\x6b\x2e\xc4\xa8\xe5\xbf\x91\xeb\x7e\x8b" "\xe8\x89\xde\xd6\xd8\x49\x2b\xb7\x2f\x1d\xe2\x6c\xf3\x97\x32\x49\xeb" "\xcb\x5c\x99\x3d\x1d\xfa\x89\x6a\x65\x8a\x52\x8a\xad\xf5\x7d\xc2\x8a" "\x8d\xb3\x26\x56\xed\x8e\x41\x6f\x96\xe1\xf8\x9a\xc2\x4d\x4b\xa5\x87" "\xdf\x31\xf3\xd2\xd8\xd7\x80\x9d\x06\xc8\xb2\xd6\x8e\xb1\x5b\x37\x79" "\x18\x42\x44\x99\xcd\x6a\x7f\xb6\x2e\x49\xa7\x88\x31\xf0\xe4\xb1\x47" "\x6b\xef\x65\x7f\xb3\x4b\xd5\x9e\x34\x79\x3d\x21\xda\x3f\x7b\xd0\x27" "\x8b\xbe\xa8\xbe\xed\x26\x1c\x69\x7c\xe1\x7f\x36\xf1\xcb\xc1\xb9\x4a" "\xef\x11\xdd\x1d\xbf\x1c\x68\x49\x67\x65\x25\x8f\x4c\xfc\x8b\x5f\xdc" "\x91\x97\xd7\x26\x0b\x73\x3d\x20\x61\xf3\x99\xc8\x61\xbc\x59\x12\xac" "\x76\xcf\xb6\x2b\x92\x18\x19\x6f\xe0\x54\xb9\x2a\x29\x5a\x9b\x95\x26" "\x87\x11\x67\xd4\x36\xb8\x30\xa7\xb4\x94\x4f\x52\x7f\xb4\xd7\x5a\x03" "\x6a\xcf\x3a\x71\xa1\xa7\x10\xf6\x09\xf4\xe7\x94\xf1\xd7\x64\xa5\x31" "\x7a\xc0\x67\xe8\x19\x46\x66\xdb\xc7\x3e\x32\xb2\x87\x0e\xec\xf8\x77" "\x6b\xb7\x64\x1d\xcd\xd6\xd7\x64\xf9\x1d\xec\x83\xfb\xb5\x3a\x97\xe6" "\x53\x12\x11\xdd\x8b\x86\xbb\xb5\x7f\x8a\xcd\x63\x7f\x4b\x1b\x66\xfd" "\x97\x05\xa2\x00\xe3\x08\x1e\xa3\x82\x26\x2d\x54\xed\xb1\x61\x92\x7e" "\xb1\xd8\x5c\xf7\xb9\x37\x3a\x24\x60\x7c\x99\xf3\xd6\x6b\x85\xe2\x2d" "\x2c\xd5\xcf\xe2\x40\x20\xd5\x6e\x05\x52\xbd\x43\xd8\x03\x88\x21\x28" "\x31\x7d\x9a\x56\xe6\x3a\x48\x08\xed\x64\x01\xb6\x62\x18\x78\x88\xa0" "\xd0\xb3\x11\x36\x4f\xbd\xda\xd0\x79\x11\xb5\x24\x48\x77\xee\xac\xe2" "\x2a\xb5\xbd\x85\x01\xd7\x48\xed\x5c\xb0\x58\x09\xe1\x63\x96\x78\xc4" "\xc6\xcc\x43\xa3\xc2\xfc\xdd\x5b\x09\x70\x33\x24\x29\xc3\xcd\xe0\x9d" "\x95\x56\xc8\x36\x0f\x26\xca\xa7\x44\xce\x5e\x57\xbf\xaa\xbc\xf7\xd1" "\x24\xb2\xd4\xfa\x97\xd7\xe7\x2f\x16\xcd\xfc\x35\xf8\x74\x93\x71\x7e" "\x2a\x85\x2b\x64\xfa\x34\x4d\xb5\xec\x72\xdb\xdf\x22\xdb\xdf\xcd\x12" "\xff\x79\x6d\x51\x5d\x5f\x3f\xd3\xcd\xdb\xf5\x34\x26\x18\x3b\xbd\x92" "\xe2\xfd\x3e\x91\xfc\xa8\xfe\xe1\xc1\xef\x4f\x8d\x59\x03\x6d\xf9\xc4" "\x8f\xc7\x67\x7f\x2c\x49\x05\xb6\xcf\x4a\xdc\xf4\x48\x02\x9c\x6c\x6a" "\x29\x68\xb1\x3e\x3b\x77\xd5\x78\xe2\x66\x1a\xe7\xd0\x7e\xf8\x4f\xa0" "\x98\xba\xe9\xa5\x64\xbc\x8c\x50\x7a\x10\x39\x90\xc0\x0a\x0e\x6d\x28" "\x54\xa1\x68\x9f\x7b\x09\x5a\x10\x0b\x7f\x38\xdf\x02\x8b\xaf\x20\xbd" "\x56\xc8\x43\xc2\x4f\x8c\xa4\xa8\x11\x30\x25\x6b\x13\x63\x64\x40\x83" "\x68\x37\x42\x9c\x1c\x86\xae\x16\x68\xd3\xb2\x50\x10\x84\x06\xac\xdd" "\x21\xb4\x04\x50\x39\x98\x72\xc1\xda\x61\x78\x18\x4b\xf9\xc2\xcc\x11" "\xad\x80\xca\xa9\x99\x7d\x3c\x66\x31\xf0\x9b\xa2\xa4\xd9\x6e\x6b\x74" "\x31\x3f\x1e\x40\xfb\xf8\xa2\x99\x62\x64\x8f\x40\x0d\xd2\x56\xc4\x85" "\x2c\x55\x6d\xec\xa2\xe3\x44\x3b\x85\x8e\xfa\x43\xd5\x3e\xfc\xd4\x96" "\xbf\x50\x37\xa8\x2e\x14\x86\x8b\x50\x86\x32\xbd\xb2\xdd\xe9\x24\xce" "\x2c\xd6\xc6\x5f\x17\x08\xc1\x8c\xf4\x90\x73\xe5\x36\xf0\x9e\x8f\xcf" "\xa9\xa4\x4f\xdb\xc3\x49\xae\x75\xe1\x72\x05\x75\x4d\x3b\xb8\x2d\x3e" "\xe8\xa9\x3c\x59\xae\xa1\xbd\x7e\xa6\xd1\x24\x22\x4b\x11\x40\x5f\x81" "\x5e\xd5\x18\xa1\xcb\x9a\x80\x19\x12\x49\xac\x1c\xc0\xe5\xc1\xf9\xaa" "\xb8\xfe\x67\xbb\x73\x7c\xdf\xef\xac\x82\xa8\x9a\x7d\x6a\xe0\x8b\xb9" "\xe1\xf7\x10\xce\xe4\x51\xd8\x51\xb3\x5b\xa9\xb8\x86\xdf\xd9\xc2\x77" "\xdd\x67\x89\x13\x31\xd4\x3f\x36\x35\x3c\x78\xc6\x5e\x9f\x35\x24\xe1" "\xb9\xb2\x29\xc9\xf9\x1d\xe7\xb5\xab\x16\xa6\x60\x17\xd1\x71\xe2\xa4" "\xe1\x85\x48\x1d\x33\xcb\x5b\xd9\xc5\xe3\xd9\x3c\x49\xd2\xc6\x20\xc1" "\x64\x67\xbf\x4d\xb7\x36\x21\x95\x7f\x76\xd6\x56\xe6\xd4\xcb\x4d\x59" "\xca\xcf\x12\x09\xda\x4e\x39\x35\x25\x54\xcc\x2a\xbc\xc8\xe8\x23\x79" "\xb4\xf8\x19\xfd\x6d\x26\x1c\x6d\x76\x15\xf8\x5f\x6c\x5d\x0b\x9f\x57" "\x97\x68\x36\x49\x33\x67\xe1\xbb\xb1\x4c\x57\x98\x3a\xa9\x7c\x6e\x4e" "\x7c\x4f\xe2\xa1\x66\x28\x4c\x90\x4a\xc4\xf7\x0e\xf2\xe5\x2e\x4e\x7d" "\xbd\x67\x7a\xce\x68\x3c\xd6\x1a\xa6\x0b\x70\x27\x70\xaa\x0d\xdf\x14" "\xb6\x94\xbf\x3c\xfa\xeb\x58\x5f\x8f\xd8\xa8\x5b\xee\x2f\x78\x40\x0a" "\x08\x74\xdf\xb4\xc3\x19\xbe\x24\xa4\x6d\x19\x14\xb6\xe9\x02\xd5\xde" "\x8d\x83\x75\xc9\xec\x78\x6e\xf6\xec\xcf\x1e\xe7\xa0\x03\xf8\x3d\x2e" "\x16\x30\x97\x98\x0a\x06\xab\x9f\xe2\x3c\x4a\xe8\xe9\x17\x55\xe4\x21" "\x7d\x3c\x30\x21\x11\xfe\xbf\xa9\xdc\xe0\x2a\x49\xb2\x17\xae\xf7\x09" "\xd1\x83\xa5\xab\x8a\xd1\xd3\x9e\x9a\x69\x7a\x79\xbe\x30\x3f\xdb\x22" "\x90\xc8\x27\x27\x9c\xe1\x87\xd1\xc6\x47\xcc\x28\xe2\x0c\x0b\x3e\xbc" "\xab\x2b\x1c\x75\x85\x0d\xb4\x62\x11\x15\x0a\x8b\xc5\xd8\x0d\x86\x81" "\x41\xf8\x85\xf7\xa5\xef\x52\x0e\xce\xe6\xd3\x38\x42\x14\x10\x03\xdf" "\x4c\xe0\x66\x09\x0c\x83\x59\xb5\xdc\x32\xdd\x9e\xcb\x10\x39\x45\x4d" "\x0b\x69\x1d\x8f\x97\x93\x2b\x69\x98\x1b\xe2\x40\x80\x4e\x86\x0a\x88" "\xd1\xa0\x47\xf4\x6f\xf4\x36\x09\xb4\x1e\xa3\x6d\xc2\x76\xb2\x8e\x87" "\x36\x40\x49\x94\x0e\xa7\xb6\xdc\x78\x84\x82\x21\xb3\x0d\xc6\xaa\x1b" "\x60\xf1\x79\x42\xc9\x6c\x46\xe3\x47\x60\x6d\x14\xef\x02\xed\x3e\xbd" "\xdb\x20\xf7\xf4\xd2\x8b\x94\x60\xf4\xaf\x04\x7b\x77\x29\x27\xca\x6a" "\x04\x6b\x7d\xe2\xa2\x1b\x8c\xe7\x9e\xad\xb7\x4e\x48\x25\xaf\x5e\x19" "\xac\x29\x55\x99\x9d\x73\x04\xa3\x58\x51\xa4\xb9\x08\x6f\xf9\x22\xda" "\x88\x45\xda\x10\xa5\x5f\xbb\x62\xfd\x13\xd9\x8d\x45\xf6\x08\x42\xd0" "\xd6\x30\x1c\xd7\x2e\x7c\xb9\x7b\xc8\x43\x93\xa4\x14\xf6\x71\xe5\xe0" "\x11\x5a\x6c\x1c\x26\x05\x4a\x80\xdd\xde\x10\xe0\xa8\x3a\x4f\xfd\x12" "\x35\x04\xc8\x81\xa8\x44\xbb\x71\x87\xc6\x04\xf8\x75\x88\xdd\x0d\x0f" "\x11\x93\x0f\x9a\x3c\xfe\xb7\x09\x8f\x38\xf8\x49\x23\x63\x7f\x1a\x9f" "\x6b\x3e\x3d\x08\x99\xa1\x56\xd5\x0d\x7e\x74\x0b\x11\x8c\x48\x65\xec" "\x5e\x69\xaa\xc2\x47\xa9\x30\x00\x74\x52\x74\x8b\xea\x9a\xf0\xaf\x51" "\x1c\xc1\x12\x97\x40\x51\x0b\x13\xf4\x8f\xe0\x7e\xf1\x41\x7c\xcc\x76" "\x5b\x2c\xd0\x13\x8c\xb5\x1d\xd7\x1f\xbd\xbe\x96\x7f\xc3\x21\x08\x2a" "\x9e\xe4\xbb\xd1\xea\x40\x4c\xb2\x49\x71\xde\x5a\x1e\xe7\xd7\x99\x3b" "\x5d\x11\xd6\x7d\x30\xe8\xba\x94\xa9\xe9\x43\x85\x26\x75\xa0\x7b\x88" "\xa5\x1d\xf6\xf4\xab\xb5\x07\xcd\xae\xe9\x67\x26\x02\x38\x55\xe4\xde" "\xe6\xbc\xcb\x3e\x26\xa2\xa8\x8f\xb6\x0d\x81\x2e\x78\x56\xc1\x3a\xf5" "\xf4\xfc\xb6\x77\x6b\xa8\xe2\x7a\x35\xbf\xfc\x5e\x46\x47\x3b\x31\xa4" "\xb8\x3e\xa1\xa3\x37\x6f\x45\x49\xaf\x87\xd0\x31\x02\x41\x3f\xac\xcc" "\x3f\xc8\x97\xcc\xae\x95\xd2\x70\x01\x63\xf1\xfc\x51\x70\xa6\x43\x55" "\x41\x69\x01\x8c\x5c\xfc\xf8\xf5\x0c\x79\x81\x27\x09\x95\xd8\xaa\xa9" "\xf9\x23\xc0\x67\x9b\x25\x8a\xab\x60\xf7\x91\x11\x62\x7b\x71\x40\x4e" "\x1c\xe8\x75\x12\x28\x97\x2c\xbb\x2b\xeb\xbe\x25\x97\x3c\xf9\x8b\xf8" "\xfe\x8e\x63\x57\x59\x50\xa0\xaa\xa1\xff\x06\x0f\x01\xe9\x67\x91\xd1" "\x28\xd0\xb7\xb4\x08\x55\x12\x6e\xf3\x91\x0e\xd7\xd7\xa6\xd9\x49\x06" "\x18\xda\x35\x2a\xd7\xb8\x89\xf7\xd9\x05\xbc\xa2\x21\x42\x24\xe1\x70" "\xf3\x0a\x08\x8c\xff\x91\x92\x19\x17\xc9\x37\x95\x09\x26\xcb\x11\xc0" "\x4f\xdc\x6b\xee\x77\x6b\x9a\xbd\x2a\xa2\x86\xea\x50\x74\xe7\x27\x56" "\x48\x2f\xcb\x6a\x7d\x07\x2e\xdc\x07\x5f\x99\xe0\x27\x47\xea\x49\xa4" "\x0b\x26\xb5\x81\x18\xb6\x69\x2f\xbe\x55\xb0\x9b\x05\x4a\x04\x4d\x1f" "\x48\x11\x73\xe8\x92\x3a\x74\x80\x6c\xb7\x70\xc4\xc6\x1f\xfa\x98\x20" "\x77\xf8\x2b\xc4\xdb\x7f\xee\x4a\xe2\xbe\xed\x46\x73\xe3\x9f\x5f\xf0" "\x61\x40\x72\xa7\x71\x03\x41\x74\xa0\xf0\x52\xce\x39\xe2\x74\x50\xd1" "\x89\x20\x66\x4e\x92\x4e\xe9\x63\xc9\xbb\xc9\x85\x2f\xe6\x8f\x30\xa1" "\x99\xee\x48\x56\xc1\xda\xdc\x08\xc0\x61\x16\x58\x67\x43\x8b\xd3\xbb" "\x73\xf5\xa5\x0f\x51\x31\xb7\x86\x7d\xc8\x0e\x0c\x5d\x43\xea\xe8\x0c" "\xc2\x87\x4d\x48\xed\xc9\x10\xe7\xf8\xf9\xb7\x3e\x03\x2a\x8c\xcd\x7c" "\x34\x8e\x84\xb4\x17\x9f\xa1\x01\xd4\x88\xc2\xfc\x16\xcd\xf9\x53\xe2" "\x69\xa9\xcf\x13\xc0\xdf\xe5\x75\xe0\xda\x49\xd7\xd2\xc0\x92\x93\x29" "\x6c\x02\x32\xbc\xa9\xfe\x0a\xa8\x19\x9b\x21\xe1\x97\x46\xc4\x78\x36" "\x30\xe4\x32\xb5\xc7\xe1\xe2\x58\x64\xfc\xd4\xde\xae\x07\xc2\xb0\x77" "\x82\xd1\x55\xfe\x6e\x6b\x5d\x9e\xed\x4b\xeb\x9d\xb4\x7b\xae\x40\x07" "\x75\x3d\x8b\xe5\x6b\x10\x72\x3b\x54\x67\xc6\x4a\xcb\x0e\xee\x4c\xb9" "\x05\x0b\x4e\xf2\xb5\x7b\x63\x0f\x46\x08\xaf\x96\xfb\xe4\x84\x81\x64" "\x54\xff\x38\x5a\xa3\x76\x50\x51\x40\x87\x79\x38\x4c\x65\x85\xf2\xe2" "\x46\x62\xfc\xc3\x00\x8d\xc1\x7a\xbb\x07\xba\x9c\xf9\x6f\xf4\xc7\x95" "\xc9\x78\x11\xe7\x3b\x06\xc6\x5e\x1b\x5c\x66\xc2\xe1\x87\x31\x91\xd9" "\x72\x83\x0b\x1f\x53\xbb\xfe\xdf\x8b\x5e\x8a\x64\xa2\x9f\xb3\xb3\xec" "\xa6\x7f\x17\x91\x65\x2f\x9a\xc0\x37\xc2\xf8\x7c\x6d\x1d\x9d\x45\x3b" "\x12\xd5\xd2\xb0\xc0\x70\xa8\x08\x4a\xa1\x55\x05\xe2\x40\xbd\x0c\x61" "\x89\x53\x83\xf2\x3f\x04\x60\x02\x7d\x60\xdd\x9e\xfd\x85\x39\x80\x7f" "\x71\x7b\xc3\x53\xf9\xb8\x58\xb9\xbf\xd2\xac\xec\xf2\x19\x0e\x28\x0f" "\xaf\x6a\x16\x03\x56\x6f\xf8\x89\x3d\xba\x33\xad\x33\x00\xe1\x04\x38" "\x24\x17\x09\xba\x74\x13\xfd\xe8\x48\x10\xb9\x66\xb4\x55\x6f\x9c\x8a" "\x51\xae\xf2\x7f\x9b\x90\x10\xe7\xb6\x20\x87\x15\x16\x9a\x58\x5e\x42" "\xbf\x3f\x73\x33\x20\x9a\xfb\x5b\x19\xc0\xde\x77\x22\x00\x48\x50\xd5" "\x33\x29\xd9\x3e\x2e\x49\x09\xec\xed\x3d\xa6\x7d\xd7\xd2\xc8\x2a\x4c" "\x9d\x0d\x7c\xb6\xf5\xff\x7d\xbf\x19\x5e\x8b\x39\xba\x9c\xf0\xc1\x69" "\x9e\xa1\xf8\xb6\xd1\x29\x35\x09\x77\x4e\xf3\xbf\x48\x59\x71\x46\xa6" "\x0a\xa5\xb6\xef\xf2\xbc\x8a\x64\xf9\xae\x9a\x81\xbe\xcb\x9c\x39\x8a" "\xb9\x67\x6d\x2c\xec\xb1\x4d\x28\xf8\x19\xd0\x80\x50\x26\x9b\xb0\xca" "\x9b\xcf\x59\xd5\xc9\xbd\x2f\xe2\xbc\xdf\xe8\x2a\x8f\x03\x77\x81\xc6" "\x27\x5c\x92\x29\xb0\x72\x9c\xd0\x85\xe6\x6e\x27\x12\xbd\xf2\x20\x09" "\x44\x0c\x41\x36\xc2\xda\xa5\x4e\x54\x73\x86\xe1\xac\xd1\x6a\x1d\x30" "\xf3\xd5\x5c\x1e\xf0\xfe\x10\xc1\x08\x21\x0b\x9d\x88\x94\xd3\x1e\x5e" "\xf1\x7b\x04\x91\x06\x70\x0b\xae\x52\x4e\xef\x74\x4e\xf4\xb3\xa6\x9e" "\x9c\xfe\xd4\xef\xa9\xb0\xc9\x26\x21\x77\xf9\xfe\x16\xf5\xb1\xfe\x5b" "\xfe\x5f\xc6\xa6\x11\xe6\xff\xcb\x9c\x5f\x32\x9d\x4e\x32\x8c\xb6\x99" "\x12\xf0\xdf\xb7\xf4\xa8\x3d\x32\x6c\xb2\x0b\x05\x36\x53\x66\x30\x96" "\x87\x0e\x7a\xd2\x75\x3e\x99\x2d\xce\xd7\x40\x5a\x00\xa3\x9d\xc5\x5e" "\x65\x2e\xb6\xb2\xe1\xb1\xe9\x78\x2b\x42\xf4\x43\x89\x0c\x40\x67\xb0" "\x73\x76\xc6\xf0\xfb\x2e\xa6\x58\x9e\x04\xa8\xeb\x39\xa9\x4d\x91\x3d" "\x9f\x44\x10\xd2\x38\xe6\x88\x0c\x16\x7a\x0a\x23\xb2\x66\x57\x7c\x41" "\xec\x3e\x0f\x51\x3e\xb7\xfc\x94\x8c\x12\xb2\x6e\xa2\x64\x6c\x04\x81" "\x48\x84\x17\xd9\x91\x1a\x01\x07\xca\x0a\xe1\x1c\x2c\x4b\x8c\x2e\xef" "\xa5\x14\x4e\xcf\x8b\x14\x9d\x22\xab\xbd\x26\xd1\xb2\xa3\xfe\x51\x01" "\x6b\x9b\xbf\xd2\x29\xc0\x90\xfc\x2f\xbb\xca\x48\x03\x21\x7c\x99\x1e" "\x36\xf8\x6d\x47\x20\xb4\x5a\xe4\x5e\x6b\x20\xf0\x9f\xcd\x8e\x5d\xec" "\xd7\x99\x97\xe7\x91\x77\xbd\x67\xde\x74\x33\x28\x2c\x1d\x0b\xe5\xd5" "\x85\xa7\x1c\x87\x3e\x71\x71\xa1\x33\xd9\xf5\xea\x35\xac\x0a\xc5\xc1" "\xa6\x43\x27\x9c\xa6\x6a\x36\x5d\x27\x8d\x14\xee\xe3\xea\x90\x96\x1e" "\xeb\xb3\xf6\xc0\x98\xc0\x0d\x05\x1d\x47\x16\x85\x3e\xc7\x06\x9b\xe2" "\xa4\x62\x5c\xef\x4c\x0f\x72\xab\xae\x53\x09\xd2\x70\x99\x01\xd0\x52" "\x17\xfc\x3e\x52\x04\x9c\x4a\xa1\x6b\x50\x12\x1e\x43\xce\x49\x1d\x1b" "\xc9\xad\xb0\x16\x79\xec\x25\xab\x50\x09\xf7\x46\x17\x0c\x25\x17\xf0" "\x07\x2f\x16\xc5\x74\xcb\x44\x7c\x6d\x8c\xe4\xa2\xe4\x54\x26\x90\x04" "\x63\xc5\x30\x34\x13\xbf\x4f\xe7\xfd\x64\xc2\x73\xb4\x04\xcf\x93\x60" "\x68\xcb\x30\x85\xc3\xa8\x1b\x98\x72\xad\x2c\xb7\x9a\xa4\xc0\x51\xe7" "\xad\x97\xcd\x4e\x8c\x6b\x94\xbb\x0d\xf8\x7e\x43\x47\xca\x6f\x11\xf1" "\x55\xea\x26\x57\x62\xf8\x1e\xb0\xe9\xfb\xaf\x3d\xc0\x51\x57\xeb\x9f" "\x12\x59\x6c\xcd\xf9\x19\x30\x18\xa2\x22\x68\x24\xdb\x6b\xbe\xbf\x4e" "\x89\xa0\x70\x68\x8f\x69\x8b\xbf\x23\xf3\x0d\xfb\x04\xdb\x7c\x3d\x80" "\x4a\x75\x87\xad\x0f\xd0\x3e\x68\xcf\xf7\xe5\x16\xe5\x10\x9e\x32\x8e" "\x1e\xb3\xb8\x87\xa6\xac\xed\x15\x80\x4f\x2c\x89\x8f\x41\xc5\x45\x2e" "\x16\x0c\xa3\x0e\x35\x84\x37\x05\xc1\x50\xba\xd9\x32\xd2\xd3\xfb\xd7" "\x91\x10\x0b\x15\x35\xd9\xf3\x30\x6d\xcf\x12\x7f\xa4\x9c\x1a\x36\xb1" "\x72\xf4\x6b\x1f\xb6\x76\xea\x87\x83\xc2\x3e\xdf\x89\xb2\x44\x65\x60" "\xdc\x1b\x95\xb3\x9f\x80\xeb\x9d\x09\x94\xc8\xdc\xac\x9a\x5a\x30\x4c" "\x55\x41\x33\xe1\xd6\xba\x36\x84\x68\xa1\x73\x12\x16\x7c\xda\x37\x93" "\x2c\xbd\x4b\x93\xc5\x8b\x7e\xf7\x72\xd5\x6d\x43\x11\x18\x2a\x68\x0e" "\x19\xda\x6f\xb9\x38\x84\x8a\xad\x40\x24\x28\x56\x37\x93\x10\xb6\x1d" "\x61\x13\xde\x68\x14\x64\x40\x92\x71\x21\x33\x82\x3e\xe2\x28\x16\x39" "\xb5\x2c\xec\x52\xab\x0d\xbd\x65\xdd\xae\x63\x1e\x71\x13\xca\x75\xa5" "\x47\x67\x97\xcd\xe5\xf5\x45\x6a\xcb\xfe\x63\xc6\xca\x8b\x83\x77\x46" "\x90\xea\xca\x3a\x01\x97\x71\xca\x0e\x74\x28\x15\xca\x56\x45\x41\x87" "\x30\xee\x17\xf5\x2f\xa2\x53\x1e\x54\x87\xc1\x0d\xa3\xee\x08\x0a\xcd" "\x50\xfb\xd1\x97\x10\xed\x5c\xb9\x24\xe2\x8a\x18\x98\x51\x32\xaf\xbb" "\x7d\x2f\xf9\x0f\x6c\x38\x55\xc5\x69\x70\x85\x4b\x9a\x48\xec\x4f\x75" "\x66\xd2\x82\x9e\x27\x1a\xf3\xf0\xce\x26\x74\x26\x02\x24\x1f\xef\x70" "\x46\x1a\x48\x44\x99\x59\x1a\x90\x79\xed\x53\xae\xd1\x13\x58\x9f\xd7" "\x49\x18\x14\x6e\x19\x17\xa0\x63\x51\x4d\x7e\xaa\x7f\x47\x20\xa3\x86" "\xeb\x2f\x32\xb6\xd3\x5b\xaa\xa5\xd3\x6c\x20\x13\xeb\x40\x5c\xec\x60" "\x72\x02\xf1\x9b\xda\x80\xbf\xed\xa8\x00\x5c\x5d\x15\x82\x20\x8b\x86" "\x14\x37\xff\xf4\x1e\xc0\x70\x8a\x6a\x98\xf2\xb4\xb4\x46\x31\x41\xc1" "\xc3\x12\xa8\x11\x55\x09\xe3\x63\xa2\x74\x86\x48\x98\xbe\x99\x61\x76" "\x04\x9d\x5f\x7e\x6c\xba\x76\xb3\xa3\x7c\x9b\x2e\xe9\x55\x3f\xc7\x0f" "\x79\x50\x37\x97\x46\x4d\x73\x6d\x97\xd0\xbb\x47\x41\xea\x8a\xd1\x4f" "\xde\x6f\x18\xfb\xb0\x2a\xe9\x7e\x5a\x77\xbc\x15\x27\xa1\x3f\x18\x62" "\x49\x27\xd7\x9a\xa5\xb4\xdf\x2d\xff\xde\x7f\xb5\x35\x6e\x52\x1c\x7a" "\x41\x92\x09\x03\x1d\xf8\x13\x88\x38\x15\x1c\x7e\x90\x78\x3c\x9a\xf1" "\x33\xb6\x96\x1b\x44\xf8\xde\x89\xd6\x34\x8b\x19\x1c\xfa\x6c\x0a\xb6" "\x52\x74\x6b\x85\x82\x13\x45\x37\x72\x7b\x18\xc6\x70\x69\x1f\x3c\x1e" "\x8c\xa0\xe3\xce\xfc\xd2\x61\x11\xbe\xf4\x76\xeb\x81\x64\x82\xb7\x72" "\x63\x99\xc8\x6c\xbc\x98\xf0\xf0\x69\x29\xc2\x6c\xf8\x31\x16\x3b\xdb" "\xe1\xfa\x8d\x8f\x96\xa6\x5d\x3b\xbb\x3d\x37\x65\x7c\xec\x4b\x77\x51" "\x68\x64\xcb\x32\x40\x49\x96\xda\xe1\xd0\xd9\xf3\xc1\x2b\x7f\x26\x98" "\xf0\x79\x30\xb7\x91\x81\x3b\x7c\xcf\x0f\x0d\xcd\x33\x20\xb7\x88\x33" "\xf0\x77\xee\x55\xaa\xe1\x56\xaf\x80\x4f\xa9\xa1\x5e\x60\xc7\x09\xfb" "\x30\xb0\x6a\xc0\x92\xbf\x97\xa4\xfe\x47\x32\xea\x7b\xc9\x3a\xa7\x32" "\x32\x02\x4c\x80\x43\x4b\x49\x00\xcc\x30\xde\x20\xcb\xc1\xea\x40\x77" "\x46\xfb\x18\x6a\x61\x0f\xe3\x16\x35\x76\x6f\x5e\xda\xa8\xc9\xae\x97" "\x4f\xf8\xce\xcc\x4e\x7e\x39\x1a\x50\xbd\xb3\x4c\xa1\xde\xc1\x56\x7e" "\x86\x64\x97\xbb\x59\x85\x2c\xfc\x1f\xdb\x36\x1b\x23\x5c\x80\x3d\x70" "\xcf\xc9\x0c\x22\x90\x78\x07\x96\x19\xb4\xa8\x08\x6a\x68\xd4\x20\xee" "\x1d\x7f\xac\x40\x3b\x18\xc7\xf6\xaa\xd9\x16\x12\xe2\xf2\xb9\xe5\xe2" "\x06\xbf\x89\x7b\xd9\x8a\x3b\x24\xa0\x63\x7e\x2b\x98\x6a\xe7\xf5\xd3" "\x76\xbd\x63\xd6\x3f\x6c\x4f\x15\x1c\xe7\xea\xa9\x7a\x30\xd9\xd5\x1f" "\x1a\x92\x07\xdc\xa6\xb5\x96\x83\x1a\x9b\x92\x51\x7b\x9d\x55\x71\xe7" "\x2b\x4a\x06\xc0\x7d\x5f\xf0\xd3\x25\x89\x6a\x1b\x32\xe9\xfb\x4f\x9d" "\x67\xa9\x03\x94\x6b\x20\x5f\xba\x7b\xed\xa1\x08\xfd\xe3\xfc\x50\x3c" "\x73\x52\xc5\x9c\x03\xbe\xbc\x28\x91\x00\x7f\xbe\x96\x6a\x04\x41\xa7" "\xf4\xbc\x83\x20\xb9\x01\x56\x3a\xc8\xea\xdb\xa6\x43\xbd\xfc\x16\x36" "\x86\x4d\x33\x54\x9a\x1b\x9a\xd3\xce\x01\xbe\xc9\x4b\x63\x1a\xc6\xf4" "\x6c\x45\x3c\x57\xc6\x2f\x2c\xf0\xf7\x6d\x9f\x1e\x07\x31\xe2\x66\x31" "\x16\x24\xa1\x38\xe6\x07\xe6\x99\xc9\x1e\x37\xa3\x30\x96\x11\x7f\x41" "\x8b\x4c\x92\xc6\x6d\x96\xfa\x1b\x13\x24\xcf\xb5\x69\xe3\xd5\x58\x59" "\x8e\xe6\x5e\x69\xb8\xe0\xb9\x62\x5d\x55\x1a\xf5\x4a\x09\xdb\x80\x82" "\xf2\xfa\x9d\xa1\x38\x6f\x92\x24\x5a\xad\xaa\x13\xbf\xa3\xcf\x5c\x39" "\xfe\x45\x51\x80\xbb\xb5\xe2\x42\x7e\x40\x67\xbd\x2f\x5a\x5c\x75\x5c" "\x31\x40\x54\x77\xba\x83\x2d\xbb\xdd\x4a\xf6\x6a\xcc\x7c\x11\xe5\x76" "\xf7\x00\xe2\x4f\xb4\xc2\x61\x60\xb4\x44\x3b\x8c\x17\x80\x52\x38\x51" "\x9c\x7c\x73\x2d\xf7\x74\xb9\x25\x79\xe0\x2a\x8d\xa5\xe9\xa1\x7e\x3c" "\x20\xe9\x2a\xfb\xa7\xfa\xb4\x90\x00\xa7\xb8\x39\x87\xea\x48\xd5\x85" "\x4a\x04\x11\x61\x54\x62\xca\xbd\x24\x5a\xb3\xf4\x9b\xa3\x75\xef\x17" "\x9c\x0a\x78\x05\x9f\xfc\x14\x26\x41\x77\xa6\xe4\x5d\xc5\xf2\xfe\x6c" "\x95\x7a\x31\x3b\xa9\x88\x9f\xef\x33\xb7\x88\x93\x3b\xb3\x7a\x17\x94" "\x35\x51\xdb\x9c\xd0\x8f\xd8\xd8\x23\xfd\x0b\x35\x11\x0a\xd5\x89\xc3" "\xbb\x3a\xf4\xf6\x9b\xd1\xc7\xc7\xa3\xe7\x26\xf9\x33\xe4\xa0\xcb\x12" "\x09\xe7\x5f\xf1\x49\x10\x06\x1c\x37\x50\xb9\x31\x2d\xe4\x2c\x86\x83" "\x8d\x5c\x35\xa6\x81\x89\x9c\x25\x22\x0e\xa8\x7a\xff\x02\xbf\x72\xfd" "\xd8\x74\x5f\x5d\x75\x1e\x6d\x62\x86\x14\x96\x89\x0c\x95\x61\x43\xc0" "\x8a\x22\x27\x74\x97\x47\x89\xbb\x46\x92\x4b\x68\xa6\xe3\x13\x8c\xe9" "\xdb\xca\x62\x2e\x78\xc5\xae\xed\x82\x15\xde\x4e\xe5\xc1\xf8\x31\x2b" "\x63\x49\xa9\x1e\xf1\xe2\x10\xf1\x85\x22\xb7\xa6\x44\x70\x0e\x90\xef" "\xf9\x95\xe9\x50\xc8\xed\xa0\x5d\x0b\xb8\xe7\x99\xef\x32\xa7\xdd\xb8" "\xa8\x7b\x41\x20\xa7\x98\xa3\xf8\x7c\xc7\x8b\x6d\xb0\xc7\x94\x7b\x47" "\x86\xdb\x16\x18\xc5\x23\x20\x3c\x09\x7e\xf3\xd3\xdc\x0f\x4e\x1e\x87" "\xd0\xd5\x97\xc4\xea\xaa\xc0\x5a\x03\x3a\x3f\xa9\x13\x09\xc0\x5c\xd8" "\xc1\x4d\xe6\x49\xd7\xdd\x16\xd8\xed\x81\xe5\x29\x09\x50\xf6\x6b\x66" "\xfd\x51\x9a\x2a\x16\xfc\x6b\x35\x26\xf9\x7a\xa1\x12\x1b\x4f\xb5\x2b" "\x30\x64\x01\x22\xdf\xb5\x0f\xf6\x19\xfb\x5c\x88\xeb\x1c\x4e\x6e\xd7" "\xf6\xd0\x9f\xd2\x9e\x27\xb3\x37\x5a\x1a\xad\x5b\x09\xf8\x17\x51\x57" "\x01\x84\x67\xf8\x83\xba\x38\x52\x08\xfc\xd3\x2a\x50\xa3\x11\xb2\x2f" "\x79\x51\xbd\x0e\x91\x2d\x23\x43\x64\xf8\x59\x0e\x24\x7d\xea\x60\x48" "\x72\xf9\xbb\x84\x7b\xb3\x2b\x39\x06\x33\x9f\x56\x98\xd6\xe7\xc0\xf2" "\xa3\xed\x17\xb1\x94\x23\x92\x99\x09\x1f\x5e\xe4\xed\x51\xc7\x5b\x76" "\xbc\x94\x9c\xf0\x5d\xf5\xdd\x03\xcd\x8a\x55\x3e\x7e\xc8\x18\x81\xfd" "\xc1\xe1\x5c\xef\x5e\x72\xee\xcd\x78\x43\xa9\x81\xef\xf4\x17\x68\x26" "\x04\x76\x9e\x30\x2f\x37\x8f\xf9\x51\x9c\xdb\xd3\xba\x2b\xfe\x50\xf8" "\x5a\x90\x3a\xa0\x8b\x90\x01\x18\x22\x68\x89\xe9\xbc\x68\x12\x47\x77" "\xf6\xe0\x2f\xb2\x6f\xff\x91\xd1\xf3\x1d\x38\x28\x24\x3c\xc4\x6d\x4b" "\x4f\xa2\x96\x54\x45\x77\x4e\x0d\xdc\x52\x1f\xe5\xfc\x96\x26\xfe\x34" "\x28\x40\x3e\x74\x6d\xe0\x19\x6a\x45\xd6\xac\xef\x57\xf6\x62\xfa\xf2" "\x72\x94\xbe\x80\xfe\xd3\x97\x78\xa7\x58\x5b\x41\x17\x8e\xa3\x8f\x64" "\x89\x3f\x9a\x46\x33\x4a\xf6\x42\x5a\x4a\xa4\x6e\x25\xe9\x2b\x0d\x77" "\x75\x0c\x67\x37\xb2\x37\xdf\xf1\x99\x13\xfd\x9e\x69\xed\x92\xc4\xb6" "\x67\x1b\x42\x26\x77\x6b\x34\xae\x24\x68\x90\x7c\x65\x4b\xb0\xf6\x19" "\xb2\xc9\xb5\x59\x20\xfb\x99\xe9\x7b\xf3\x22\x12\xf8\x52\xb6\x15\x68" "\x9f\x3c\xf4\xc0\x3d\x51\xd1\x58\x74\x55\xb5\x72\x06\x92\x43\x0f\xe2" "\x68\x45\x22\xbf\xe6\xda\xe8\x71\xaa\x2f\xf5\xf0\x00\x45\x86\x1f\xfc" "\xfc\x21\x98\x88\xfe\xf8\x32\x0b\xec\x13\x07\x23\x6a\x7a\x42\xdd\x4a" "\x69\x1c\xb6\xcd\x4d\x84\x36\xf3\x1a\x3f\x2d\x64\x2b\x05\x94\x6d\xbf" "\xee\x69\x2a\xee\x0d\xa3\x14\x19\xf9\xb8\xbc\x0e\x1d\xcf\x89\xa8\xff" "\xd7\x85\x6b\x21\xb1\x18\x0e\xbc\x8a\xd7\x53\x08\xb1\x37\x0b\x93\xd6" "\x80\xe9\x68\xbc\xde\x7d\x23\x5f\x60\x17\x60\xa5\xd1\x81\xf7\xb5\x5d" "\xaf\x33\x0a\x00\x1a\xe1\xda\x86\xc1\x30\xc7\x6f\xbd\x95\x64\x42\xb6" "\xc7\x05\x88\x9d\x66\x55\x60\xf8\xb3\x46\x63\x39\x05\x92\xd8\x5d\xdd" "\xe7\x90\xe0\xf4\xf1\xf0\xdf\x09\xc1\xc6\xf9\x54\x77\xf9\xd7\x2d\xc0" "\x89\x4b\x2e\xfe\x2c\x3d\x16\x2a\xd8\x0f\x80\xca\xe0\x3a\x06\x54\x80" "\x14\x29\x3a\x02\xf0\x0d\x63\x86\x72\x3d\x42\xab\x09\x05\x2f\x01\x9a" "\x1d\x71\xd8\x8a\x78\xdb\x27\xaf\xea\xd5\x8b\xc5\x16\xbe\x8d\x23\x89" "\x3f\x00\x7a\x17\xff\x47\xb3\x27\x77\x75\x2a\x15\x64\x8d\x0e\xce\xcd" "\x34\x5a\xee\x1f\x36\xc5\x8a\xbb\x7e\xfa\xff\x55\x67\x10\x0c\x0b\xfa" "\x54\xf1\x72\xc8\x62\xe1\x58\x72\xab\xc9\xd9\x6c\xea\xd6\x68\x8f\x02" "\xea\x84\x66\xfe\x11\x34\xbd\x37\x56\xc6\xf0\xdf\x89\x03\xfe\x79\x35" "\xdb\xe3\xe6\x35\xda\x36\x8f\x13\xa1\x0e\x30\x18\xcf\xb5\x55\x7d\x38" "\xf8\x59\xa9\x83\xa5\x4d\x66\x0a\x02\xbd\xb3\xda\xc2\x92\x2e\x7a\x37" "\x65\x16\x77\xbf\xc6\x64\xd5\x8d\xf5\x9e\xa6\x25\xe8\xe6\x3e\xe7\x76" "\xbc\xc2\x93\x7b\x92\x1f\x55\x44\x92\x4b\x75\xcb\xa0\x4b\xf3\xcd\x0d" "\xf8\x31\x93\x8f\x9e\x9c\x79\x57\x2e\x84\x92\xd8\x84\x64\x62\x44\x99" "\x09\x20\x40\x01\x92\xc6\x3e\x15\x02\x4e\x2e\x12\x39\xf4\x13\x90\xbf" "\x7c\x0e\x18\xf8\x52\xe2\x3d\x51\x42\x56\xcc\xb8\xcc\xb2\x72\x67\x10" "\x40\x1c\x43\x06\x65\x7f\xd7\x5e\xba\x94\xa3\x53\x98\x77\x80\xa6\xd6" "\x21\x90\x12\xcf\xe8\x08\x58\x06\x0e\x37\x65\x2a\x84\xae\x89\xd0\x7f" "\x5d\x65\x1f\xe8\x2a\x2a\x8d\x0e\x85\x68\x49\x21\x56\x71\x3b\x1f\x76" "\xe8\x9e\x12\xf7\x6a\x02\x54\xda\x7d\x52\x6d\xf5\x1a\x08\x96\x00\xf5" "\xb7\x55\x9a\xfd\xc6\x3d\x48\x72\xfe\x8d\x6c\xe0\x0a\x8d\x0c\x9b\x00" "\xdb\x5e\xe6\x76\xae\x25\x45\xe7\x4f\xb7\xb3\x9f\x83\x45\xa6\x79\x13" "\xb2\x34\xcf\xb4\xf6\xe3\xb4\xe2\xb1\xe1\xf4\xf1\xc7\xfc\xce\x8c\x09" "\xcd\xeb\x6a\x1a\x21\xbd\x23\x70\x00\x4e\x58\x3e\xf6\x29\x71\xae\xc2" "\x4c\xe0\xc6\xc0\x49\xb6\xa2\xe2\x20\x81\xd3\x68\x54\x95\x6a\x36\x2b" "\x6c\xba\xd4\x80\x49\xd7\xd5\xf9\x01\x34\xd3\xe7\x7f\xeb\xf8\x7b\xf4" "\xa3\x2c\x07\xcd\xeb\x36\xc9\xcc\x56\xb2\xb3\xcc\x8c\x8b\x47\x87\x9a" "\x32\xff\x00\xf3\xb2\xe9\x77\xce\xe0\xac\xb3\x0f\xc4\x24\xdb\xfe\x24" "\xc8\x8d\x1a\x08\xd0\x47\x92\x5c\xd7\xd6\x5a\x58\x34\xe5\x6d\xb2\xb3" "\xe7\xe0\xa2\x3d\xbf\x94\x8c\x79\x9d\xb5\xa4\x8f\xd4\xa5\xfd\xea\x43" "\x91\x3b\x2b\x2c\x14\x9a\xe9\xa9\x8f\x45\x2b\x79\x7b\x55\xab\xe1\xdd" "\x44\xb3\x02\x32\x38\x7f\x46\x68\x56\xd6\xc3\x8c\xa7\x35\xdd\x61\x75" "\xb4\x55\x36\x3d\xbf\x22\x8e\xf5\x2e\x44\x3d\xa2\x2a\x1e\xe3\xa1\x58" "\xee\x30\x4d\x9c\xa6\x3c\x11\x0a\x3d\x19\xca\x3b\xab\x6d\x17\x45\xaf" "\xfd\x81\xc4\x80\xff\x8b\xcf\x5f\x8f\x7c\x1e\xa6\xd0\x8a\x7b\x3c\x39" "\x58\xc3\x24\xd4\x27\x32\x71\x11\x70\xe1\x95\x23\xbd\x20\x91\x34\x67" "\x4b\x18\x4d\x4d\x44\x2a\x77\x4e\x04\xd6\xeb\x4a\xc8\x9a\x6d\x01\x8c" "\xf0\xbb\x68\xa7\x3d\xa8\x7a\xbc\xe1\x27\xe5\x74\x28\xcf\x73\xa5\xa5" "\x51\xc8\x5e\xa8\xc3\x76\xae\x95\x1c\xb8\x35\x75\x06\xf0\x37\xd1\x7d" "\x16\x31\x72\xdc\x57\x64\x68\x2c\x75\x30\x50\xf3\x5c\x68\x02\xfb\x26" "\x9d\x74\x90\xb1\x96\xd5\x7b\xb8\xa1\xad\xa5\x5d\xa7\x55\x0f\x82\x35" "\x73\x20\xe1\x4c\xf5\x73\xed\x39\x86\x0f\x02\xa1\x1b\xda\xd9\x17\xb2" "\xba\x2d\xe8\x85\xc7\xea\x8b\x30\xdd\x62\xbd\xad\x20\x7d\xfe\x10\xe9" "\x7c\x8b\x71\xab\xbc\x8c\x56\x61\xa4\x48\x3b\xb6\xf9\x48\x8a\xda\x0f" "\x58\x85\xc4\x71\xcf\xc1\x27\x1b\x60\xd5\x4f\x90\x33\x17\xcc\xa2\x8c" "\xe9\x77\xf4\x44\x4c\xef\xac\x5c\x2f\xf2\x33\xdc\x87\x2d\x4e\x80\x90" "\x91\xf8\x45\x2d\xe9\xc7\x74\xab\x3b\xbe\xbf\x62\xde\x92\xcd\x6a\xa7" "\x42\x1a\x41\xf7\xd1\xde\xa4\x2e\x4f\x94\xbd\x3a\x48\x69\xc9\x58\xf3" "\x94\x0a\x99\xc8\x88\x35\xed\x2f\x40\x21\x11\x4b\x9a\x5b\xb1\x72\x40" "\xf4\x68\x88\x7b\x21\x38\x14\x95\x6f\x9f\x5e\x63\x44\xcb\xae\x19\xd8" "\x75\x3b\x97\xc7\xce\x2e\x9d\x09\x54\xa3\x0d\xde\x23\xde\xa2\x74\x8e" "\x1c\x95\x14\x67\x2b\xf4\xea\x3e\xc3\xe3\x48\xa5\x63\xd9\x64\x98\x99" "\xe7\x22\x77\x08\xe2\xe7\x7d\x0f\xc5\x84\x7d\xc1\x6b\x59\xac\x3d\xea" "\x94\x49\xc1\x76\xde\xa2\xd2\xff\x6b\x6a\xf7\x64\xd2\x8d\xee\x5c\xcf" "\xd0\xdf\xd6\xe3\x10\x0d\x97\x04\x06\x57\xd7\xac\x5d\xa4\x03\x2e\x3b" "\x7f\x6b\x0c\xef\x2e\xc5\x5a\x83\x35\x0c\x30\x45\xab\xb1\x02\x00\xc2" "\x64\xe6\xe6\x8e\x3e\x03\xb6\x85\x46\xae\x48\xa5\x38\x06\x3b\x86\x31" "\x5b\xb8\x07\x31\x03\xa8\x12\x71\x7f\x2d\x88\x16\x53\x4f\xa9\x8d\x0e" "\x95\x6e\x0f\x9a\x67\xbc\xdc\x52\x2c\xac\xef\xc7\x7b\x0b\xe7\x18\x32" "\xa6\x9f\xfb\x72\xfa\x15\xca\x4d\x8b\x15\xf7\xfe\x03\xda\x0f\x4b\x24" "\xc5\xfb\x68\xe5\xf3\xa2\x29\x7b\xb0\xcb\x0b\x7b\xfd\xee\xec\x4d\xeb" "\x64\xbf\x71\xf5\x78\x20\xd6\x2c\x47\x27\x6e\x27\x80\xb4\x34\x1b\x6b" "\xc6\x5a\xc4\x9b\xe0\x9c\x94\x01\x37\x83\x45\x5a\x95\xde\x92\xc1\x1d" "\x91\xb9\xe9\x21\xa4\x84\xed\x69\x53\x2b\x92\xe2\x02\xd6\x84\xd2\x29" "\x3a\x26\x66\x70\x9e\xe3\x8d\x21\x14\xad\xd4\xc5\x33\x7b\xfe\xef\x31" "\xd4\x81\xe1\x25\x30\xc5\xc7\xe8\x3a\x6c\x8a\xa2\xf5\x80\xf6\xda\x2d" "\x73\x5e\xe5\x26\x0c\xf9\xa7\x18\x5e\xff\x84\xeb\x22\xd6\xe0\xd5\xac" "\x0e\x63\xfe\x6a\x3d\xef\x81\x92\x74\xa1\x44\xbe\x5a\xb9\x0f\xa1\x57" "\xbb\x75\x17\xa5\x4c\x20\x8a\xa8\x2d\xa9\x26\xd5\xb0\x9b\xa6\x49\xe3" "\x26\xa6\x54\xfe\x8f\xa9\xdd\x7e\x6d\x83\xb0\xa6\x62\x53\x52\x6e\x5b" "\x5a\xa0\x3e\x66\x5f\x2e\xb4\x67\x8e\x82\x93\x11\x04\x20\xc9\xd7\x55" "\x6d\xf0\x7c\x7d\xd1\xc3\xe8\x17\xa4\xc7\x40\x98\x90\xc4\xff\x50\x44" "\xec\xdb\x34\xeb\x65\x2a\x4d\x7e\x20\xb4\xb0\xd5\x96\xf4\x6e\xe3\xc3" "\xda\xd6\x75\xe9\x58\xe9\x1c\x3b\x40\xf2\xd2\x2e\x67\x1b\xae\x51\x51" "\x84\x43\x04\x2c\x52\x9c\x31\xe3\x43\x64\x7d\x6d\xde\xac\x7e\xc3\x70" "\x97\x0f\xcc\x71\xa2\x4a\x08\x26\xb5\x8d\x11\x1e\x9b\x77\x6a\xc0\xe2" "\xfa\x40\xb3\x09\x92\x98\xff\xd0\xd1\xc0\x4d\x41\xee\x1d\xd0\x39\x42" "\x5f\x52\xf9\xf8\x05\x7a\xc1\xf2\x06\x20\x3f\x20\xe1\xae\x9c\xba\xe3" "\x56\x51\x8b\xa2\xfe\x9e\x49\xb4\x7e\x36\x94\x2e\xd7\x20\x4f\x3d\x7d" "\xa9\xe7\x1b\x8d\x69\xdf\x3a\xe7\xb2\xde\x05\xa1\x3a\x87\x9a\xf6\xa1" "\xea\x62\x41\xc6\x45\xed\x73\xc1\x39\xe1\x50\x60\xae\xab\x6f\x42\x3c" "\x21\x80\xdd\x10\x18\x63\xa2\x4f\x16\x88\xec\x1a\x33\xed\xc6\x24\xc3" "\xf5\xe8\x0a\x20\xe4\xcc\x5c\x86\xab\x2c\x69\x2c\x2d\x3d\x17\xd8\xa6" "\x8b\xb3\x92\x4e\xff\xfb\x29\xc9\xfc\x3d\xf9\x37\x52\x64\x52\xd8\x2a" "\x8c\xa9\xa5\x58\xc7\x5d\x6b\x25\x04\xdf\x1b\x66\xc9\x18\x23\x21\x6a" "\x1c\x3b\x3b\xc3\x9d\xee\x0d\x22\x49\x1b\x9c\x89\x1b\x9e\xea\x19\x3c" "\x8a\xf8\xa9\x92\x09\x6d\x0c\xd7\x46\x30\xf7\x22\x2e\x9a\x35\x30\x03" "\x4a\x58\x2f\x40\x60\x1a\x69\x4c\xf1\x08\x5f\xda\x7f\xb3\x3b\x07\x33" "\x2c\x6a\xeb\xfa\x70\xe2\xeb\xb8\xd7\xcc\xf1\x9a\x69\xdf\xb5\xe4\xc1" "\x66\xad\xd5\xe1\x53\x50\x4e\xee\xc9\x2f\x4e\xa2\xfe\x47\xf2\x91\x62" "\x5e\x1c\x47\x0b\x83\x2a\x48\x8f\x88\x46\x92\xb8\xec\x49\xb9\x6d\xf2" "\x35\xf1\x93\x02\x7e\xd3\x8f\xb4\xd8\xb8\x8e\xd3\x82\x82\x5d\xf8\xff" "\xe5\xb0\xc6\xfa\xb8\xdb\x3e\x38\xd6\x0d\x46\x7f\x9d\xa7\x25\x02\x3d" "\xeb\x72\xc3\x78\x25\x8e\x91\x14\x42\xaf\xae\x4d\xb6\x50\xbe\x36\x21" "\xa0\x33\xa3\xb8\x4e\xee\x65\xc4\xc0\x66\x4e\xc6\xd5\x77\x1c\xc1\x38" "\x93\x74\x34\xa6\xa3\x61\xde\x3d\xc1\xc1\x2a\x2a\x67\x35\xf0\x80\xe9" "\x43\x14\xdd\xf2\x91\x51\x69\x71\xaf\x25\x2e\x3c\xc5\x6e\x1c\x65\xba" "\x5c\xf8\xac\x25\x38\x87\x8b\x22\x03\x4b\xa4\x58\xe0\x8d\xb2\x62\x05" "\x60\x8a\xe9\x41\xa4\x2a\x27\xf2\x64\x3d\xed\x87\xbd\xe6\x26\x38\x7c" "\x2b\x79\x1c\xe5\x79\x91\xdd\x2b\xa0\x80\x10\x23\x72\x79\xca\xc2\x76" "\x0e\x19\xca\xb9\x05\x9b\x22\x9e\xa0\x02\xce\x4d\x3b\x4a\xfa\x49\x52" "\x30\xe4\x24\x75\x2f\x28\x90\x03\xa2\x40\xf5\xca\xfc\x7a\x83\x11\x26" "\x36\x32\x11\x07\x91\x8d\x58\x2f\xad\x26\x06\xa4\x31\x91\x99\xa0\x6e" "\xf2\xcb\xea\xa3\xe1\xa4\xd8\xc3\x05\x01\xaa\xb7\x96\xf5\xcb\xe1\x54" "\x53\xb6\x12\x18\xa3\x96\xb7\x9c\x54\x7d\x15\xd5\xc1\x10\x33\xb3\x74" "\x6b\x43\x2b\x42\x64\x04\xf7\xb0\x42\x1b\x9d\xaa\xfd\x9e\x85\x58\xf1" "\x90\x12\x83\xd5\x8e\x17\x3c\x4d\xb0\x51\x1e\xe8\x26\xdd\xc6\x36\x3e" "\xb5\x1e\x08\x37\xc9\xbe\x6b\x20\x78\xd8\x08\xd2\xc0\x5d\xb7\x49\x5d" "\x29\x32\x2e\xe6\xaf\x68\xb0\xd5\x2c\x45\xf0\x0a\x59\x73\x1c\x0e\x5b" "\x26\x08\xae\x04\x6a\xf8\xbc\xf8\x30\xf0\x01\xff\xd2\xf9\x55\xea\x89" "\xbe\xd2\x16\xe7\x1c\xcb\x5b\x44\x71\x3e\x2a\xbf\x5e\xe5\x43\x8d\x63" "\x82\x9c\x9a\xea\x34\xb5\x7f\x7a\xb5\x2b\x82\x0c\x24\xa7\xe9\xfa\x13" "\x82\x43\xe4\xaf\xb2\xdf\x93\x58\x8e\x80\x5e\x71\x9c\x17\x67\x14\x6a" "\x35\x1d\xeb\xb3\x46\x78\xa8\x6d\xd1\x9f\x05\x87\xaf\x31\x19\x54\x60" "\xa3\xaa\x3e\x68\x77\x38\x59\xfe\x13\xb4\x7b\x6b\x31\xa5\x01\xb4\xa2" "\x5c\x66\x60\xcf\xc4\x7f\x33\x18\xb3\x3b\x77\xb1\x0e\xd4\xba\x91\x08" "\x64\x82\xdb\x03\x9a\x56\xfb\xd1\x49\x0f\x44\x0a\x6f\xbb\x28\x0b\x62" "\xb6\xd2\x33\x3a\xfe\x1c\x42\xc3\xf1\x68\x65\xb9\xc0\xe4\x84\xa4\xf6" "\xf3\x93\xb8\xbc\x34\xfb\xba\x85\x6c\xc5\xff\xad\x2f\xe4\x23\xe7\x9f" "\x69\x1b\x95\xe7\xe0\xdb\xdb\x2b\x27\x57\xd9\xd4\x44\x3f\x9a\x23\xa8" "\xb1\xbf\xdb\x16\xf8\xbf\xfd\x81\xb4\x78\x9f\x80\xf1\xfc\x4b\xf7\x51" "\x62\x79\x65\x75\x5d\x00\x8d\x13\x4e\x2c\x35\xda\x34\xf5\x47\x18\x61" "\x5e\x9d\xea\xca\x06\x85\x39\x6a\xe7\xe5\x81\x21\x32\x7e\x0c\x06\x96" "\x59\x1f\x6a\xf9\x3f\x29\x99\xeb\xd3\xb4\xe0\x3c\xfe\x2a\x48\xb2\xb9" "\x40\x15\xeb\x06\xb2\xa9\x03\x1a\xb5\xe1\x29\xb2\x70\x06\x48\xfd\x62" "\xab\x75\xf7\x77\x34\xb8\x9a\xbb\x40\x22\x82\x63\x5e\xee\x41\x60\x6e" "\xb3\x06\x61\x9e\x2d\xae\x84\x48\x8e\x2a\xac\x1d\xf5\x4f\x78\x46\x0b" "\x36\x11\x50\x72\xa2\xc2\x88\x01\xfc\x12\x24\x82\xf1\xd4\x6d\xe4\xb2" "\xee\xc0\x7b\xbb\xbc\xf8\x5f\x30\xff\xb3\x82\x9c\x5d\x0f\xdb\xdf\x3a" "\xf8\xc6\x32\x2d\x62\xf4\xc5\x5e\xbe\x8f\xd5\x27\x28\xe2\xd5\xd1\xa2" "\x4f\x09\x6f\xff\xce\xc6\xff\x2e\x75\x2f\x75\x00\x00\x00\x00", 8192); *(uint64_t*)0x200000000540 = 0; *(uint64_t*)0x200000000548 = 0; *(uint64_t*)0x200000000550 = 0; *(uint64_t*)0x200000000558 = 0; *(uint64_t*)0x200000000560 = 0; *(uint64_t*)0x200000000568 = 0; *(uint64_t*)0x200000000570 = 0; *(uint64_t*)0x200000000578 = 0; *(uint64_t*)0x200000000580 = 0; *(uint64_t*)0x200000000588 = 0; *(uint64_t*)0x200000000590 = 0; *(uint64_t*)0x200000000598 = 0; *(uint64_t*)0x2000000005a0 = 0; *(uint64_t*)0x2000000005a8 = 0; *(uint64_t*)0x2000000005b0 = 0x200000000e00; *(uint32_t*)0x200000000e00 = 0xa0; *(uint32_t*)0x200000000e04 = 0; *(uint64_t*)0x200000000e08 = 0x16; *(uint64_t*)0x200000000e10 = 3; *(uint64_t*)0x200000000e18 = 0; *(uint64_t*)0x200000000e20 = 4; *(uint64_t*)0x200000000e28 = 0; *(uint32_t*)0x200000000e30 = 0xfffffffb; *(uint32_t*)0x200000000e34 = 3; *(uint64_t*)0x200000000e38 = 0; *(uint64_t*)0x200000000e40 = 0x7fff; *(uint64_t*)0x200000000e48 = 6; *(uint64_t*)0x200000000e50 = 0xffff; *(uint64_t*)0x200000000e58 = 4; *(uint64_t*)0x200000000e60 = 1; *(uint32_t*)0x200000000e68 = 0x1ff; *(uint32_t*)0x200000000e6c = 9; *(uint32_t*)0x200000000e70 = 0; *(uint32_t*)0x200000000e74 = 0x8000; *(uint32_t*)0x200000000e78 = 0; *(uint32_t*)0x200000000e7c = r[2]; *(uint32_t*)0x200000000e80 = 0xee01; *(uint32_t*)0x200000000e84 = 0xfffffff9; *(uint32_t*)0x200000000e88 = 1; *(uint32_t*)0x200000000e8c = 0; *(uint64_t*)0x200000000e90 = 0; *(uint32_t*)0x200000000e98 = 2; *(uint32_t*)0x200000000e9c = 0; *(uint64_t*)0x2000000005b8 = 0; *(uint64_t*)0x2000000005c0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000008400, /*len=*/0x2000, /*res=*/0x200000000540); 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; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); loop(); return 0; }