// https://syzkaller.appspot.com/bug?id=9dec11b2c5e2e0ad5d008b7afa316c369ac863a4 // 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 #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[4] = {0xffffffffffffffff, 0x0, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000000040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000000040ul, /*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=*/0x200000002100ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000002108; r[2] = *(uint32_t*)0x200000002110; r[3] = *(uint32_t*)0x200000002114; } 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 00 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 1d b1 c5 63 76 08 ea 84 76 d9 00 b3 f8 36 a9 73 4b c5 // 86 2e f5 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 d7 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 ee bf 9a ba 56 bc 49 6b 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 00 00 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 92 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 46 dc 53 a2 // 6f d9 97 f3 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 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 bb 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 14 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 7c ba 5c a9 4e f1 c5 55 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 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 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 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 b3 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 00 00 00 00 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 54 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 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 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 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 = 0x1fffffffe (8 bytes) // entry_valid: int64 = 0x8 (8 bytes) // attr_valid: int64 = 0x6 (8 bytes) // entry_valid_nsec: int32 = 0x8 (4 bytes) // attr_valid_nsec: int32 = 0xa (4 bytes) // attr: fuse_attr { // ino: int64 = 0x1 (8 bytes) // size: int64 = 0x8010001 (8 bytes) // blocks: int64 = 0x4d0 (8 bytes) // atime: int64 = 0x40d (8 bytes) // mtime: int64 = 0x3 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x80ed1 (4 bytes) // mtimensec: int32 = 0x2 (4 bytes) // ctimensec: int32 = 0x5 (4 bytes) // mode: fuse_mode = 0xc000 (4 bytes) // nlink: int32 = 0x7ff (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x3d5 (4 bytes) // blksize: int32 = 0x20000002 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000006380, "\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\x00\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\x1d" "\xb1\xc5\x63\x76\x08\xea\x84\x76\xd9\x00\xb3\xf8\x36\xa9\x73\x4b\xc5" "\x86\x2e\xf5\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\xd7\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\xee\xbf\x9a\xba\x56\xbc\x49\x6b\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\x00\x00\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\x92\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\x46\xdc\x53\xa2\x6f\xd9\x97\xf3\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\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\xbb\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\x14\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\x7c\xba\x5c\xa9\x4e\xf1" "\xc5\x55\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\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\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\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\xb3\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\x00\x00\x00\x00\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\x54" "\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\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 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 = 0x1fffffffe; *(uint64_t*)0x200000000620 = 8; *(uint64_t*)0x200000000628 = 6; *(uint32_t*)0x200000000630 = 8; *(uint32_t*)0x200000000634 = 0xa; *(uint64_t*)0x200000000638 = 1; *(uint64_t*)0x200000000640 = 0x8010001; *(uint64_t*)0x200000000648 = 0x4d0; *(uint64_t*)0x200000000650 = 0x40d; *(uint64_t*)0x200000000658 = 3; *(uint64_t*)0x200000000660 = 0; *(uint32_t*)0x200000000668 = 0x80ed1; *(uint32_t*)0x20000000066c = 2; *(uint32_t*)0x200000000670 = 5; *(uint32_t*)0x200000000674 = 0xc000; *(uint32_t*)0x200000000678 = 0x7ff; *(uint32_t*)0x20000000067c = r[2]; *(uint32_t*)0x200000000680 = r[3]; *(uint32_t*)0x200000000684 = 0x3d5; *(uint32_t*)0x200000000688 = 0x20000002; *(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=*/0x200000006380, /*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 = 0x5 (4 bytes) // flags: fuse_init_flags = 0xffffffffa02600b4 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0xfffc (2 bytes) // max_write: int32 = 0x6 (4 bytes) // time_gran: int32 = 0x5d2186cc (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x10 (4 bytes) // max_stack_depth: int32 = 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*)0x2000000002c0 = 0x50; *(uint32_t*)0x2000000002c4 = 0; *(uint64_t*)0x2000000002c8 = r[1]; *(uint32_t*)0x2000000002d0 = 7; *(uint32_t*)0x2000000002d4 = 0x26; *(uint32_t*)0x2000000002d8 = 5; *(uint32_t*)0x2000000002dc = 0xa02600b4; *(uint16_t*)0x2000000002e0 = 0; *(uint16_t*)0x2000000002e2 = 0xfffc; *(uint32_t*)0x2000000002e4 = 6; *(uint32_t*)0x2000000002e8 = 0x5d2186cc; *(uint16_t*)0x2000000002ec = 0; *(uint16_t*)0x2000000002ee = 0; *(uint32_t*)0x2000000002f0 = 0x10; *(uint32_t*)0x2000000002f4 = 0x10001; memset((void*)0x2000000002f8, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x2000000002c0ul, /*len=*/0x50ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {a6 c5 74 dd 37 ad 5a 06 63 3d 06 f1 93 c5 b9 57 75 8b 45 f2 // f4 21 2a 3c e6 ab bf de d4 46 1d e9 8c 07 80 33 2e 9d 3b fa 72 a5 3a // 15 65 60 5c 55 1d 53 a1 a3 df 7a 15 70 4f 14 49 3a 10 22 fb cf 14 4f // e8 98 33 8e 9d 3e a1 51 01 d7 e1 79 a6 bf c0 93 e7 fb 9c e3 bb 08 54 // c6 42 64 cf 2b 2b ae ee 72 f5 26 58 94 9c 82 62 18 6a a1 58 2f 93 2c // 47 1e 68 d5 cf ab d5 7f 6a bc 46 aa 80 52 b9 42 ba c7 56 f0 3e 4a 14 // f3 ee 3c c5 5d 2a ee c2 1d 08 ae 0c d7 a6 7b a7 08 14 ce 16 1c 6b 77 // 18 e9 60 55 c1 49 4f 55 f1 06 73 31 61 79 e9 9c e4 09 c9 cc 18 b8 0a // 02 0e a9 9b e8 bd 34 15 d4 42 0a 9a 4c 74 c9 d1 6b 8c 6b 58 51 7f 13 // 80 c4 4b 8c ee 0d 16 4e ee 6b fa da da 76 4e ea c7 4f 4c 86 7b 5e 18 // 4d c0 91 8d 58 7b fc 57 78 36 e9 66 8f 0f d4 46 74 f1 31 0a 91 0d f2 // dc 6e 23 42 d4 7f be b8 90 b3 0d 71 83 59 59 96 da a2 e6 f2 1f c1 54 // 1c e0 ed 06 86 f2 ca 55 36 bf bc 85 1a 1a b1 57 55 02 a1 9c bd 99 0e // 95 4f 12 e9 b7 a0 98 5d 93 c1 ca 66 b2 68 d4 bd cd f7 c7 5c 17 fa a6 // d9 b0 3c 9f 88 fe 6d 31 aa ef 35 d2 dc 65 bc 74 27 99 83 b0 c6 64 64 // 75 b8 3c 1e 01 b6 c8 87 2d 11 5a a7 2a e0 6a 18 e6 d4 12 0f 55 1d 2c // 35 fa e1 18 d4 90 c5 08 67 bf 3f 6c d2 f9 50 f2 2d 6b 0c 75 77 e0 46 // 97 be e4 7b 85 c6 14 4e 2e cf 45 c4 fd 93 ac 1b 51 e4 4f 98 e3 8f 9e // 9b 93 c3 eb 91 60 40 4d 3a 60 f8 08 83 6a 86 68 60 4f fd 8b 31 7f 91 // fd 4d ae 38 43 86 c0 1f 5f de bf a6 43 90 7b 5a 07 ad 14 23 cb 0d 4a // 9a 68 aa e6 d2 b5 a9 12 ba 0b 07 89 73 5e 73 d9 a8 ed 8a e4 2c 92 f6 // 7f 5c 3a 40 e7 df 55 75 dd 5e 03 3f 3b bf c4 43 cf dd e1 68 5d 9d 5c // 05 e8 e9 46 9b f7 f5 46 39 8a 36 ca c0 08 bc 36 52 0d 0e 08 a4 ce e2 // a4 8a d2 ab 81 95 24 c9 e2 14 5f 0d 9d 47 4a cd b0 28 b9 cb 82 48 a4 // d9 df 5b f6 a1 bf ee a4 58 fe db c0 39 81 5f fe 37 5c ae 1f b9 be 98 // 89 16 c2 03 87 31 8c de 61 c3 6b 17 ee a1 3c 17 6b b1 06 d2 92 72 85 // 37 03 2c dd 79 d7 c8 d4 80 38 a6 b7 1a ec 0d 61 e7 74 be 6a d9 f6 42 // 10 95 7c 82 de a2 9c a0 99 1e 01 94 55 cd 7f d2 ee 2a 64 49 1e 87 e8 // 98 07 be 62 43 61 32 e5 a6 e7 5e b1 4f 83 88 5f 16 1b c0 c1 ad 2f 33 // 90 cf 01 25 71 2a 9f 5a 14 e6 2b e0 a9 ef 23 f1 ea e4 66 80 14 3a 83 // ab 24 48 3b e9 1e 1c 01 5d 4a ad eb 37 8c 7a ab 79 a4 74 b7 55 e1 4b // bb a5 9f 2a c1 b8 0d 53 d3 8b ae e4 2f d7 58 e9 a3 36 ca 90 44 e9 fc // a0 14 6f 71 68 aa 4a 51 9e 67 4d af 9e 06 17 78 a7 4a 9b a4 8c 34 e1 // bc 8e e8 69 43 f3 7b 6f b6 53 a8 25 98 90 26 30 bd 4f a3 cf 37 4a 62 // 2f 38 dc fe 10 06 a3 ee d5 c3 17 66 d1 3b cb 43 1d 79 11 ed 3f d7 47 // 75 53 00 b0 34 3b 65 de 20 1e 0b 95 59 9f 36 cf 19 71 b3 9f b3 ba d2 // 44 8b 86 3d f0 df 7a 3a d8 87 41 f0 8b 90 d7 ab 76 32 f4 81 f0 a6 d1 // d8 ce a5 7d 10 6b 54 79 0a cb 10 5f 5a 40 30 c4 8a 23 25 92 a8 87 86 // 37 10 b1 6a bb 73 57 67 0b 36 cc fa 67 6d 66 89 bf 10 b6 ff 95 af 96 // 33 36 f8 9f 41 36 dc 9b a2 ea 1c 92 bb a5 ca fc a6 b2 48 b2 ff ba 27 // 37 01 2f 29 ac 03 ff 59 57 28 33 c4 ff 9e 1a 2e f2 57 1e 69 62 ab 67 // e1 e5 51 38 dd c4 ac 90 44 1f a7 5f 0f eb 9b 2e 07 42 4b de 53 4f 28 // a5 02 05 f1 13 6d 9f ca 17 6d 87 5b c4 4e 34 39 c0 bd a0 8a 27 77 98 // 7b b4 e6 79 5f 48 03 8f 2a c7 96 3d 65 28 fd de df 73 b8 41 64 12 03 // 1e 84 fb 2e a1 37 4a dc 4e 39 99 db 63 39 aa db f1 c7 95 da c5 11 53 // f0 ac 54 ca 6d 41 84 27 b6 96 de d5 69 00 d6 63 ef 96 28 22 d6 7b 6c // 7a 6a 0d 50 02 f8 8e 24 b0 6c a4 75 29 f0 2e bb ff fa e3 4e fe c6 5f // 23 0d e3 53 68 05 4a 9d 8b d9 fc 71 0f 00 50 08 14 90 19 d6 83 c7 45 // 02 34 ae 57 1b 40 e5 de 4c 91 78 c1 f1 12 2a ea c8 29 30 08 a2 8e ad // 39 46 bd 62 87 12 6f df 42 fe cb 03 70 0c b9 49 5b 8a 9b e5 44 ae f8 // b4 89 23 80 20 d7 b9 14 9f 40 4d c1 7f 61 cf a4 a3 ee ae 72 f4 6f 79 // fe 3f 6d 38 4a c2 a4 db 2a 45 bc 8c 00 2e e4 d4 91 60 7e 92 4f ef d1 // 65 c4 6f b1 5f 2a bb a5 4a 36 a2 46 0b 6c 2e e6 3d e3 e3 0e 98 ff 3d // 45 3f ab 20 4e ae f8 9e a2 1f 81 17 b0 e5 e5 e8 7e ed 6e 2a 3a 58 d2 // 70 e6 5c c9 2f 61 8b 0e 44 5d 55 f2 9c 03 1f d3 6f ce 5f f6 2d 03 69 // 02 bf 5f 1e 4f eb 74 c5 71 f5 f8 fe 03 51 9d 57 9c 78 f8 2e fe 2d ea // 51 92 22 2f 42 ce 4e d3 5f 0f 5d f3 16 db e5 b1 db 22 5b 00 db e4 e0 // 45 18 bb 28 9c 6e ec bf 20 25 a6 75 8e b0 4f 36 75 a9 06 1b 5e 9a e5 // a9 ec 9b c5 ee 41 b0 8d 71 c9 05 9d 2c 68 a4 2d a0 9d 2e ac d3 ac e9 // 6b e1 ad 94 38 30 66 30 52 cb 8e 38 72 58 83 94 45 3a 1a ee 28 cc 3f // 7e 4c fe 34 82 1c c8 c3 23 20 4a 06 e9 d8 2f d4 f6 77 51 c4 9f 17 f9 // 2d cb 30 e8 f0 2f 3e a2 4b e5 5f ba fa 90 c5 01 c3 65 cc 03 49 e2 c3 // b6 f0 f0 2a c8 3f f4 07 93 c4 ed 56 e2 94 ce 28 ac cd f6 bb ef cb fd // 0f f5 38 d7 cf ab 35 63 5e d8 fc 89 51 a1 cc d3 0b 59 bb e2 c5 1e af // e2 23 b4 df cb dc de 2a cc 43 7d e0 51 f9 56 3b 76 a4 36 09 40 a7 19 // 86 d8 6e 08 54 a2 b5 30 ad e4 1b dd 87 c0 23 4a c5 dd 42 ee 03 a1 02 // 93 2b 08 3e 57 f6 5c 10 19 d4 05 4e fc 1c d2 5f 4f 85 2b 9c c6 be fd // 38 7d de cc e4 da 58 a4 66 e5 36 ee 8f 7a 3c a5 be 42 4c 92 b1 a2 0e // ca 71 d5 90 1f 3d 62 ac 1b bc de ea a2 ef 90 fb ca f3 51 68 a1 dc 0a // 5c d5 2e a9 60 ab 4c 1d 0e 0a 65 35 af d5 f2 09 aa 89 61 7b e6 51 c4 // c2 cd 21 24 45 b3 2e 17 a0 4a ec a0 5b 42 d4 78 89 21 e5 83 47 44 e6 // 3f 13 22 2d c5 2c 90 a0 8b 62 04 d8 5f b2 7c 9f 15 de 63 1d 53 b5 ff // 0a e5 0b 5f eb 46 f7 c6 73 63 42 3d 24 f9 70 e0 e9 50 83 9d a3 f4 20 // 16 ac 2f 38 85 9a e4 26 1a 1e 9d a9 55 2b 6a 17 a1 d5 bc bf 27 ff f1 // 7a d0 53 84 20 69 48 b4 9c e4 c8 7c 80 c8 0e db 9a 3b 5d 76 d1 e6 4b // 01 ba 73 5f 93 66 7b 8b 37 8b e7 89 35 93 6c 2a c1 07 1d 7a bb 97 7c // f0 1e df e7 66 48 58 cf d8 f8 46 a4 de 20 d9 8a 56 86 00 91 82 0f 9f // e7 ca 2d e7 be 20 2b 36 22 2b 88 bd 8e ac 23 f4 1f 62 e1 41 10 af af // e6 42 10 f4 a0 7f 89 4b fb cb 18 3b 87 74 7e 36 2c d5 b9 e8 c5 0d f1 // 45 30 53 c1 8f e1 21 bb 75 07 bc 50 1a 46 f7 36 bd 13 d5 ec c4 fa 54 // dd 77 e5 3a 60 4f 72 32 c8 33 1b 1b 7c 05 37 68 9f b1 94 51 28 f9 75 // d6 40 57 47 bc c0 d1 72 c1 9d 4f a6 10 cf 48 1a 8a ac d5 f7 a7 cb ef // 34 56 a6 54 43 32 2a fd 13 77 08 b3 fc 8b 3e e9 b8 a4 cb 38 c7 b1 4d // 4f dd 74 da a5 80 74 bc af 22 bc a1 cc 8e c2 dd 22 cd e6 0b a5 d8 92 // 34 2a 14 be 25 b4 d8 97 dd b2 3b 81 54 c6 f2 4a 93 c0 0c 17 ac d9 05 // 22 ef 7a cb 80 b3 43 ac 08 b4 af 83 ce 8a 0c 95 bb fe 14 0c 0f 1c 57 // 26 39 f4 07 96 07 a3 4b 8f 67 5c f3 dd fc 2b ff 83 63 5f 9d 13 b2 37 // 5c 1d 31 79 20 53 0f c7 2f c7 74 ed f8 dc 4f 65 3d 72 87 6c 1a e6 1e // dc 6e db 1c bc 2e db da 72 07 cc a6 81 11 75 cb 8f 92 05 d8 be 99 d8 // 1d 21 7e 04 33 ac 7d 29 89 62 b8 7d b0 01 28 ff f1 f3 d2 64 c5 0d ed // d3 ca 4b cc c8 db 1c 11 91 c3 ea 22 6d 35 15 60 02 4b e6 5f 4e 85 f5 // 77 bf 8f 06 d6 52 8f 7c 73 64 0c d5 79 ac 16 77 ee 58 25 5c 1b ce dc // 96 70 68 47 37 17 30 37 ed dc 55 bc 94 3b 78 52 4f 61 76 53 a3 24 31 // 9f 60 26 b6 a9 b0 2c c9 e3 b5 8e 8b 66 1d 5d 78 05 72 3c c5 c4 76 e3 // b7 f0 4e e7 db fe 1a f7 44 f7 56 31 3a 21 46 a8 42 24 87 7c f9 3d 1f // 27 c2 8e 7e 21 e4 d2 91 93 d6 38 4c 3e 9e b3 37 cf 67 a5 b4 59 70 c7 // ec 3d 55 23 84 7d 0e 7d 56 cc 4f 13 2f 16 08 51 fe ec ed 28 4f b5 a7 // 5c 20 3f a6 b1 e0 13 62 ff 6d a0 eb f8 d8 52 c9 0b 1a 02 63 86 25 3a // fe 5c 7a 07 8e cd 8c 56 63 be e5 7b 83 20 06 53 bd 2a 5e 66 95 a3 cc // 5d 46 6d 2e 65 d8 1d a0 58 10 7d 24 22 fc 99 87 5e 95 b7 72 60 8e 45 // 64 71 cb bf a2 ee 87 95 b4 5c ac b1 29 05 63 eb 23 bf 53 4c 7d b5 e4 // 7f be e4 08 10 13 97 4c e9 da c3 30 1d 6c d9 66 25 5e 22 24 3c 90 fc // 55 f4 b4 21 94 0c 7e 81 9e 5d 54 f4 48 69 94 3e 2f 26 7e 3b 1b 9e af // df 61 a9 15 7c 04 e7 1b 75 60 76 44 5e ad 78 51 92 3e fa 64 54 ff 15 // 6b 2c 37 93 19 2f ec 04 6b 7b 7e 89 47 ef e0 00 9e 9e f0 49 da e8 9b // 34 df dc 01 83 cc 7a 9c 7c ac 4e b1 39 94 53 5e 80 3a 7d 9f 07 0b 95 // df 12 bb 2e cc 30 bb 51 85 17 98 2b e2 a2 74 fa ae c1 71 3a 42 3f 02 // 00 89 84 83 26 e5 fe 32 c1 15 de 0b 7f 8c 28 76 27 1a 0d 17 92 4d 24 // 6c 9e 08 bb 53 4d 74 1b 03 64 6d ae a5 41 1f 18 25 63 2c af 10 1c ca // e4 9a 99 b8 2e 37 35 51 39 47 b6 c6 a4 b0 9b 76 20 35 47 f7 9f 28 09 // c9 6b ef 59 3c 6e 64 bd 0e b8 4b 1b 11 e3 f1 36 fe 72 56 07 df 9b 34 // 20 af 6c de ad 70 bc 57 2a 44 ec 14 53 de 49 fa 1f 68 43 f5 e7 40 55 // cc 37 aa 86 a9 c0 6c c8 09 4f 3f 58 f3 ba c7 f7 98 0c 1d 41 72 9c e1 // 33 10 96 fb ab 86 ee 75 68 79 8a 0b e0 45 b1 32 ec 6c 58 71 43 ed 90 // 71 f9 49 f0 09 0b 78 3a 13 24 d7 6f 5a ec 55 59 16 8d a6 7c 85 e3 bb // 8a 48 93 7a 21 4d 1f 10 1d 7c cf f6 55 c5 eb 77 8d dd 61 cd e8 dc 39 // bb 19 20 e0 d7 cf 41 8b 76 1a b9 2b cc 67 7a 0c 5b 6c ab 85 57 4c 12 // 16 e3 ce c6 82 db fa d3 a7 b0 53 e3 65 57 8c 0c 1c 7a 70 a1 b4 8b 67 // 44 44 1f 14 76 e1 33 66 08 79 13 dd 41 e6 d9 a2 72 30 1b e9 72 1d c0 // fc 78 35 5f a9 14 b8 03 3c 1e ec 4f 2c d0 cb 39 e1 76 03 b2 f7 05 26 // 19 cb 52 e6 58 c9 28 e3 92 5c 32 6d 00 01 61 46 a7 54 14 21 15 d4 ba // fe d7 7a 5a d8 b5 41 f4 e5 cb 73 2a f4 41 1a 1a 88 33 ff 42 15 aa 8e // 0d 74 3e cc 63 c3 11 bb e3 fd 21 33 5a 82 f0 64 85 35 68 84 34 df 83 // e6 fe 6e a8 45 52 94 a2 bc af ff 88 a0 d0 48 56 57 e7 ad f5 b7 30 83 // d8 73 cc 87 ca 6c d5 65 93 f1 16 42 fe 27 d9 a9 98 d5 5a c7 af 93 b7 // 02 fe 44 18 d3 ce 0f 2d d7 3d 8c 1f 60 52 45 75 11 9b fe 0d 96 1c 46 // 8a 90 6a 0d f2 86 84 65 b5 bf 5d 20 18 b9 7c 2e 11 39 3f 67 3b 71 99 // dd 0c 71 df 64 69 f9 84 db d4 84 cf 80 9e f1 f9 19 d1 b7 fc ec 36 8c // b9 3e f4 9f ae 9b 56 4a 28 22 5c 2e 2e ef 78 2a 07 f6 aa 66 0b 2c 38 // 5a c0 0a 21 51 e3 cc f2 93 44 b9 36 21 98 7f 57 bd 29 ec de 89 a2 cc // 8d c8 74 71 60 6c ce 12 f2 ac 12 10 35 8b 5f 08 ed dd 98 3e 86 c0 24 // 40 a9 b3 57 f3 86 f8 d4 ea 61 b0 a7 3b 64 42 7e 4e 73 b1 74 ca 05 e6 // 3a b7 49 62 61 32 64 3d 02 df 14 1c 75 74 85 cf 72 9b ec 52 29 b9 1d // ce d3 64 03 66 20 0e b3 be aa cb 9e 9d af 19 fe 74 d7 c0 6c 18 f3 ca // f4 d9 ea 2c c8 fa 90 6f 58 c6 20 f9 1f d8 83 dc 9f 37 43 f0 94 a4 b0 // c8 5d 78 f7 ce 6c c0 1c 53 85 6b e1 0e 86 1f e3 47 f0 77 39 9e 18 7d // 22 41 8c 0a ad 8a 91 3f 4c c8 92 c9 03 d5 44 be 85 be 4b 03 1d 10 28 // f7 0a cd 81 84 de 1c 28 53 80 01 b1 53 bf 0b bb 65 c1 60 33 9f e3 48 // 56 ec a5 ed a8 aa a7 9d 76 e4 f1 26 b4 bb fa ac 2f 44 c0 d9 36 00 2b // a7 5b 02 05 a2 1c 47 20 b0 b3 ae 87 f5 c4 58 a5 72 54 b0 17 c5 1e 3a // 51 e0 87 c3 a2 9a 65 4a be 9f e9 c2 1a 10 01 22 a1 1f 50 0f ca 1b f6 // 76 aa f9 59 98 0f ca 9c f1 ac e0 13 d1 de 77 0c ee a6 1e 9c 83 1d 3a // 5d d8 fa ab 74 bf 95 ee 49 f1 a5 80 e8 c4 ad d9 ca fd da de 6c 76 1b // d1 00 e1 65 80 70 b8 fd ba 52 48 11 44 d1 4f ab 47 71 b6 3a 1e 1c a1 // ef 6d 4e de ad a4 94 a0 84 ba b8 a5 e4 e9 7d 1f b9 31 33 30 ab 14 4a // dc 08 93 3f cf a7 1c e9 5e 9a 27 4e 5d 1d eb 79 70 55 12 b7 43 06 bb // f7 02 db 06 72 0a bd 25 1f 38 a4 d6 c3 f8 00 6c d4 27 01 e2 35 5e 7a // 58 15 13 15 30 74 9a 40 9c 0d 5d 99 3d 20 a6 b8 2d 84 e4 f1 4c 36 ce // 24 c7 13 c5 3e 8e dd 3d 57 10 49 83 8a e8 81 5c be 00 0e 49 2b 64 50 // 72 e8 63 52 90 d7 b4 e1 34 39 bd 79 64 aa 14 f5 d5 5b 93 47 df 8d 76 // 35 ff 02 8f 4b 6c 9c 21 a9 8d 2f c7 33 fa b1 95 3e c9 f1 42 e9 5a 29 // df 4c b4 1d 7b 78 63 42 3f f7 c3 9c be 46 23 bf 44 9d 5b c7 70 40 d9 // 08 17 ac 00 48 cc 36 05 09 a5 a1 6c 30 94 a6 d5 75 80 db 54 97 c3 b3 // d5 c6 21 04 dc 58 e8 51 ac af eb e9 eb 53 10 18 21 5f f2 bf 2d 58 99 // 9d 6e d9 66 a6 46 dd db 0c a2 03 a2 79 78 98 31 28 94 98 78 00 2e d1 // dd aa 77 ae a7 21 5e 74 49 9f 91 59 cc 99 55 82 2d b1 61 5a 25 8f e6 // 5e 05 61 be 8c 62 43 5b 72 71 b1 f2 91 1a 9e 01 43 9e c1 5c ec 3e 1f // 9f d7 95 fa 82 9c 20 e8 72 9e c7 9f d0 64 db 0a 8c 2e 67 6b 9f 3e 3f // 49 f0 59 31 d7 93 03 a9 bd fe b0 4a cf 35 59 65 20 38 3d 8e 75 8a 88 // 9a 00 e7 36 2c ee 37 17 b7 0c f3 0a bb 93 a5 f2 a4 0a e0 99 c2 65 c2 // df 3c 02 b4 fd c4 29 3d 4e 7f c2 6c 88 87 fb 9e b9 83 2b 71 6b 08 3c // d5 6d 77 ec 25 25 ce 62 2a 2c 08 8c ed a4 c7 53 64 32 12 e2 17 0e 89 // ae 2e b4 8d 99 e2 2c 48 44 55 3b 3e a0 eb 53 83 81 35 22 bc a8 50 89 // 62 39 fd 22 8d 42 15 d4 c5 b5 50 f0 41 c8 7b 78 ef c4 c1 db b9 6a 6b // 0c 03 ab 83 c7 ad 44 84 b4 87 80 4b c2 1d 2b 82 f1 0d a8 a4 fc 7b dd // fe 88 88 2d 12 85 e5 eb 15 92 ae 12 1d c3 7b 39 e0 de 0c 48 25 63 9e // bf 4c b8 32 8c 23 67 21 dd cb 58 20 f4 ca 2e fd c2 bf ce ba a0 c5 88 // b0 ca c2 7d c5 58 6a ad 50 43 43 4e dc c6 c0 2b f7 17 3c c7 71 d7 3f // 36 99 51 e9 7a 0e f5 cf 2d ef f2 99 ad b7 5e 56 4b 36 30 c4 1f c0 59 // a7 5c 66 1d c2 51 0a 3d ba a2 65 bd 70 0c 9e 20 68 59 91 87 5a 35 2a // 80 83 db 75 60 f8 1c cc ec bf a3 a7 44 ce dc d2 2e fa 44 41 40 e4 d1 // b4 4c a8 69 4a e7 b8 08 54 98 9c 39 31 73 b2 fd 83 20 ff ea 2d 9a 20 // a0 76 35 7e 50 05 c3 c8 27 80 8a d6 a5 2b 8d e9 96 8a 41 e0 ac 31 70 // ed 92 f9 f5 63 0c 62 66 07 46 ba db 68 94 a6 ad 22 b3 1b e6 48 6c d4 // 33 52 0f b1 2c 35 a2 72 0c c4 b2 67 49 c0 c4 ff f9 00 60 d3 e5 c4 e5 // a3 ea 01 16 e2 0f e0 b5 40 b3 b1 df ca 80 9b 76 bd ed a4 28 86 67 dc // 0b 5b 12 a0 17 fc 66 0e c2 f8 1d 2e 12 3c 7a 44 c5 a5 08 0c c6 bb 82 // de a8 c4 af dc 57 7c 08 3b fc 10 30 57 5b 56 6f 8a 64 5b 62 5b 0a fe // 55 4c 68 04 7c a4 3b 99 f9 fc e1 da fe 0b 8c 04 c0 a9 6b 29 1c fb 57 // 23 9a cd ea 88 a4 da 07 02 b2 8d e1 2f d3 6f 24 19 1e 87 2a 1f 84 a4 // f9 92 2f 54 c1 ec 1c 4b 33 4a 26 37 bd f1 7c 0e a0 2c 62 5d 49 d5 df // b6 f3 79 9f d5 33 a2 94 8f 4e b7 15 ce 10 7b ef fc a4 d4 bc da 4f 74 // ca e2 25 cd 2d 47 e5 32 8e a2 d4 3e 90 bb 5d 88 9c b2 55 82 a6 de c2 // 07 4c 2a 56 c9 b0 85 da 58 d0 4b 47 f7 05 bd 20 d2 a0 38 e7 40 47 99 // 5a 5a 91 f1 30 93 1f c9 16 ee 1c e7 1a 6e 1e 44 8a 69 2f 20 38 61 2e // 4e c9 2d 9a a4 96 bb 45 63 03 94 8e e3 4f a2 52 fd ff 78 c7 3d 0e a3 // 56 1e da ad 53 a6 87 17 29 28 fc c6 b4 f7 c4 89 11 34 44 a7 10 73 89 // 11 81 c8 63 e1 b1 1f b9 1b a0 ed 13 62 e3 13 73 8b b0 94 e5 98 48 b6 // 68 6b 60 98 20 a4 0f 2b b7 c0 6b 2e d2 5f 88 34 55 0a 11 be 1d 48 af // 02 60 d8 b2 2a f8 a5 60 b9 b9 95 53 91 18 a7 70 36 21 bf 4f 45 8d 31 // 7f f5 94 ff 5a d5 b5 4c 46 0b 0f be fb 26 e6 af ae d1 83 d7 6f 5d eb // 15 0a 96 e8 af a6 ae 08 bf 2e 5c f7 51 2b a4 6d 15 34 17 53 0b b0 f3 // d0 fb cc fa 57 7b 6f 89 d6 7c 3d 35 40 2c 50 ca 7e 26 a0 37 d6 e7 43 // ce d3 f5 62 62 4a ee 7c 9e 7e db 3e 6d c1 fc 3e 69 2b 93 b8 19 bf ec // 8e 59 3e fc 6e 56 14 ab 7d c7 54 ae 71 16 c1 4b 52 d3 cd b5 a1 fa e2 // b4 20 fc bb 0a 1d f0 0b a1 9f 61 24 3e 94 f1 43 24 fb e9 ff 18 cb 9e // 90 50 fc 79 5a 9e 49 51 11 9b f1 fa b9 ea 61 4c ec 24 21 d1 f6 0d fb // 77 76 c5 b6 89 a4 43 78 5f 97 9c 4a bc 48 e7 30 d0 91 a6 3f 8f 50 4e // 60 50 29 a8 17 13 55 97 e7 55 6d fa 08 61 39 07 70 37 f3 13 e8 27 f4 // f1 ca 48 aa fa fc 4c 1f 83 50 75 0c 68 ee bd f6 4b 9f 8e 70 43 d3 f5 // 3f cd c7 c3 47 9d 09 d7 03 05 b1 97 e6 81 40 b4 30 29 0d 61 69 a9 98 // 76 2a f1 a6 c1 8d 9f 5a 38 35 03 a9 86 19 30 a0 05 86 41 e3 5e bf 14 // 9b d0 92 a3 f1 6e 91 77 9b 07 82 f8 50 c6 ce ea e5 32 56 09 43 1c d3 // 63 f4 6c 54 11 cc f4 18 7a 30 d3 68 1c f2 8b 94 5b 47 ac 03 00 52 27 // 50 c7 06 d4 e4 38 d8 48 33 95 78 b8 ce fb cb dc d0 d0 e3 25 a9 d2 01 // ee 67 0a 98 e7 c7 9b d6 95 91 5b ca 29 f1 d0 6e c0 1b 71 79 70 88 12 // 6b 93 6f 32 33 a7 e6 d9 53 6a a9 f0 9f 13 bf ea 01 d4 45 08 ec dd ed // 38 19 bd 1c 6e fe e9 37 03 f4 88 6b e2 fa 2e 8c 93 a7 19 55 a6 1f 0c // f4 4a 9a ed 26 cd 75 41 6e 83 cd 87 19 1a 6c 06 04 84 b0 cf b5 07 80 // 13 11 41 f6 ce e2 3e 7a 0d c3 95 11 86 99 42 2b 1a e8 21 99 a7 48 2e // 66 37 e5 f6 d0 cf 95 b5 94 63 bc cb f9 a1 cb 13 dd ff 15 10 d9 e4 b6 // c8 3f 87 b5 4e a3 88 d7 3b b7 b8 ea 91 ef 35 4a b5 a7 d7 89 ce b1 16 // 65 9a 9b 09 4f ca 42 bf 3b 3c a0 1a 61 83 d0 94 79 93 d1 95 3d df e8 // 6b 4b 9e d3 9e e0 45 76 32 98 9b f8 04 e6 38 60 9c 7a 5f 02 ae 33 75 // b6 64 f9 42 0b 80 9f ca af b8 31 2f 83 06 d7 66 35 fa dd 3e 92 c6 cb // dc 46 21 ff 29 38 4d 1c 17 1f 52 64 46 86 3f 52 64 ba 0b bd a4 59 1f // 7c 55 6e f9 08 83 db 06 ea 4d f0 5f dc 2b a5 99 72 ef dd 10 ac 63 31 // 7e 97 75 6c 59 6c 01 b9 b6 3e fc 66 57 6f c2 20 82 2f b6 6e 63 e4 9b // d6 a0 bd 1a f1 a6 76 59 e3 6f 0f 8c e4 59 4f b5 92 c2 59 2b 6d 59 ea // 6c 38 7c 10 d8 3b cb 6f af b0 ce 23 ee f6 f1 08 d1 44 9e e7 32 b7 5b // ea 65 36 a1 d4 27 9d 8c 73 a8 73 ab 02 73 db c4 7b 33 ce d5 c1 83 58 // b7 19 34 11 48 c3 65 8f f4 3b b9 3e e7 24 05 11 a5 49 e7 90 8a 76 7a // e7 13 f3 90 9f 93 7b 87 69 89 f2 c7 8d 37 9d 5f 62 ea 7f a8 c2 f8 72 // 17 9b 90 ad f8 0c ae c5 e6 09 65 fa 00 3f 4c 1b 02 2d 49 b2 b0 56 e3 // f0 80 9a d4 66 7a cc f0 69 c2 d4 f9 3d 90 a6 27 2c 24 34 56 65 53 ff // 0d a6 50 7d 6a 46 80 c2 ec f6 b0 81 0a 97 77 ab 21 32 83 eb c2 cd e8 // 00 01 cb 3e 59 1f fc 05 24 c2 d4 9e 29 7c 98 e7 15 95 cc 7d 74 2c a2 // 3f de 69 76 29 79 88 fc fd bd b1 31 f8 25 47 aa 17 dc 8f 22 25 db 88 // 29 a8 88 61 47 cd ac af 74 78 fb 38 3c 64 5d 6f 87 48 6a b3 77 e8 3b // 3b 43 52 33 0f bf 82 19 3a ba 64 2e 74 94 fb aa 86 dd 14 6f 3f bc af // a6 85 02 be 06 e7 6f 62 b4 35 20 56 89 77 fa 32 74 a1 ee 63 25 07 78 // db b5 0c 9b 53 d5 59 a0 25 dd 5d fc a0 b9 0c 39 be c7 48 b7 b4 8f 27 // 71 42 e7 b8 fe ed 18 fc bd 6d 06 4a f6 ae db b4 af 14 ed 01 a8 b9 47 // d1 32 c4 39 d5 fc 28 97 2b 1f 3d c3 2d 13 47 d0 c7 8d 6b 02 53 f5 ee // be 2c 26 23 a0 be 2f 11 d4 82 81 38 4c 89 b8 f5 e9 31 7c 3f 9e b5 ab // 19 fe 11 33 76 b5 be 6d 7b 13 51 8e 11 d1 0f 88 2d bd 1a 78 02 06 34 // 16 92 94 b5 12 02 69 1c 28 a3 c7 8c 1d fc f4 c9 0c f9 b6 bc d8 9f f2 // 48 7e 23 7f d8 fd cf 94 38 d3 d7 fe 61 70 d5 0b c2 fe 85 a0 ea 92 bb // 74 a4 d5 a4 dc ae 91 86 b4 8f 17 33 f1 65 60 0e 3d af 69 42 5a 40 ed // 47 bd f2 1c ce 93 fa 90 1a 63 70 e6 7e b5 bd d5 98 57 74 23 22 ad 6e // 9a a8 6a 26 0f 76 26 2f ae f3 c9 57 b2 93 c8 0a 7e 26 a0 6d 6a c6 59 // 0a 75 f4 7d f7 78 4c 2b fa 51 da 1c a9 b0 16 62 8b 56 db 02 0b cb 88 // fd 58 4b 2a 6e 71 d9 7a 75 05 cc 69 2b 7c 24 ca 69 0f 54 68 3b 91 37 // 41 ed 48 48 7e 35 8a c1 2d 1f 50 82 a6 18 34 4a 71 6b ce 24 d8 99 57 // 7a 1f 6f 48 b2 2b d0 eb e6 cd 4f 98 cf a0 bb 64 5a 8c 28 57 5d 17 1d // 89 8a 8f ea f0 57 8d 97 ad 9a 4c c4 e0 a0 c8 36 72 02 a5 bc e2 1a 1c // 14 a9 90 73 af bc b5 39 93 36 ef ee 97 bd 58 19 cc 12 5d 1f c4 01 84 // 0e 3a 31 f2 3b 51 d5 d4 e6 c9 ea 44 99 75 81 7f 08 f7 42 ee 54 79 b9 // ba 24 a7 b2 03 b8 2d 3e 06 05 10 e8 5a ab 8c 32 43 42 29 e4 10 0b 5b // 1c 37 60 b9 14 e0 95 d0 71 79 0b 65 b9 bb 0a 34 66 d1 9b 20 6f a4 15 // f0 f8 b0 be d0 67 3f 6e 17 e2 e5 fa e3 a4 2a 36 33 c3 02 c1 40 fb 82 // c2 f5 c0 1f c4 70 c9 c3 e6 8b 5c 0d 52 03 9e f4 e5 0f a3 1e 1b b2 01 // 9e bb 98 58 b2 99 b6 97 40 b2 94 94 49 d8 46 9d 72 8f 89 2d a8 9e 71 // 15 de 8e e1 f7 77 c5 07 bf e9 8e 80 d9 b4 d0 64 fe 08 89 39 2e 51 70 // 71 19 88 b6 09 97 2a a8 f1 55 25 ad 2b b1 dc 01 17 af 09 33 79 2a ac // a6 ee bd d2 2c e1 96 39 be e2 5c 87 7d 80 2a 50 3d 13 54 bb a9 94 03 // 43 5d b2 ae ff 55 0c 0b 47 76 25 bd 22 61 73 98 b9 12 4d 3e df 13 06 // e5 22 cb 2f 86 10 bf 53 3c bc 55 d4 d1 c5 d7 ff 5d 07 f8 7a 11 49 49 // 80 e9 7a 7c 82 4b eb 7e 16 09 00 40 d2 cb ff 76 1b 82 6e 8b 58 31 df // cd f0 00 ea c2 e7 71 a4 8c 6b a8 46 b9 dd f3 6a 85 80 99 f7 7d 51 bb // fa d4 80 bb a9 09 59 05 d6 18 d7 b3 55 e4 01 59 f5 e4 8d dd 55 83 ea // 72 0a c9 c7 4c b1 18 c0 11 d3 ba 1c 67 dc 86 5a 8e ea b8 66 7e 0a 81 // ce 58 94 fd 88 8f e4 ec 2f f9 36 bf eb 45 c6 6c de 68 9e 4a 4f 13 bd // 13 8e 7d c2 7a a2 63 fb 00 9b 81 c2 74 bd 0d 73 b3 53 85 d9 9d 1d 08 // 2e be 5c b4 1d e0 9d 27 4f bd 7c 1c 41 4f 3d 1a b4 5d 2e 89 49 cf f3 // 41 06 b5 74 71 01 44 cf 6d 20 72 c3 80 cc 9c 83 ca 48 b5 e0 57 97 3e // 73 df 30 82 1c 14 78 d2 1b c5 5a 46 27 27 26 30 62 27 1d 76 fe a1 50 // 9b 36 5f bd d9 2b 4c 23 e0 88 f6 1f ce 34 8b a0 e7 a3 e5 de 60 07 62 // c4 62 e0 63 e7 49 81 f1 45 20 ba bf c3 27 83 26 b9 54 19 d2 4f 4e 48 // 53 50 7a ce a8 a5 f7 e7 0c 13 b3 1f 47 dc 3d 82 3b 3f 69 9a 02 90 93 // b1 cc bc 56 4c 3b e2 9a 97 4c ea 6f be cd ae 3f 76 3f ff 2e 65 bf a1 // a5 27 42 fd cd e3 c9 c0 64 42 67 82 55 76 d7 26 8e 2b ec 08 bf b5 20 // 83 df 7b 5b ab 93 fb f2 cf 6a 8d 91 cd a5 a0 42 16 e8 b9 d9 61 a2 87 // 20 66 7d 2a 1d 30 98 bb a1 75 17 b7 4c c9 3b 8e 3b 65 d3 6c 12 f1 0a // 7e 08 98 db 2e 1e 4d af 78 a6 69 6e 1e e2 21 cb 88 55 19 cd fb e9 28 // 4f ac e6 a5 25 e4 ac 8d 1d 91 f4 6d 2d c8 33 1b a9 0e 96 13 94 77 18 // bf 51 47 6e c3 70 2c 21 31 32 48 ed d9 84 c4 6d f7 60 b2 d8 3c e9 59 // 9f a7 35 08 d1 2f 60 6d 46 43 c2 5c a3 8f b9 7f a4 3d 22 9a 81 31 33 // 20 11 fa 87 76 3a e1 0d 48 c5 e2 be 89 14 c1 d4 0d 3e 53 e5 2f 80 38 // 04 76 9e db ac 0e 30 95 90 e4 13 19 82 de 1b aa e6 1f f0 f1 44 3b 95 // 34 4c 48 8a 7a 7f 4e 0b 30 34 40 0b dd c2 ec 44 7a 40 a3 6d 01 7b 2c // ab a9 bd a7 f0 3f 8c dd cc ee ca fa 55 68 20 ff d3 c0 72 ef 39 4a 3d // 80 9d 78 f5 ef 53 f5 7f 72 01 2b 60 ee 76 94 0b 3a ad 36 c7 62 49 a3 // 71 66 9d db 0d a3 22 7b 89 3b 99 a3 55 14 3c ab 5c fc 71 76 58 b1 41 // 33 aa f0 02 ea 49 7b d7 db 4d 8f 1b bf 99 34 a5 57 77 ab 88 60 38 49 // 2a 93 4b 1a 2a 2c ce 48 97 1a b9 3c 78 fe 4d 45 10 9e 5d b3 c5 c2 76 // cf 99 a3 cd 49 70 23 bb 2a 19 b6 a1 86 32 5f 72 d2 d2 02 ff 02 01 ca // a6 7e d9 90 1a fa e6 78 57 9f d3 fc e2 f5 bf ae d4 a5 4b d2 db b8 24 // f5 1d fe 17 d9 98 b0 52 6f a8 dc 59 6a 80 f0 97 c4 6c e3 8f 5e 92 7a // ce 3d 0d c9 0b 90 92 d6 19 b7 1e 36 42 1f e0 86 96 81 cd b5 e3 85 b7 // 94 e9 ed 34 93 21 63 ff c6 b8 d2 1e 88 2b 1f f0 0c 7f 3d b4 20 b8 ee // 19 c7 c3 8e c3 19 2d e3 0d c3 e5 d0 1f 57 21 34 c1 b2 5b 08 f7 cd 15 // 26 fe 4a 97 c1 10 8c d8 49 50 a1 1d c6 97 55 1b 40 1c 41 86 f2 d1 e4 // cd 21 a2 b4 fa 43 ec 6c 4a f0 9f 80 bd ad eb bf 12 1a d2 33 9f 6b ac // 80 8f 3a 99 64 51 61 32 c3 b3 d8 75 6f 22 f7 b7 b8 a8 69 5d 30 29 c4 // 5e 33 5c 77 94 5b 8a e7 ec a9 64 b7 7a 04 a1 69 5d 65 c4 f4 53 f1 cd // 3f 6d 85 ba 40 76 4f 02 00 71 65 f1 fb a3 b2 8d 23 f8 85 34 99 51 19 // c8 69 a2 0d 48 c6 7f 79 dd 1d 25 90 42 dd 82 26 73 29 05 de 52 ee 1a // a5 70 ff 4f a7 32 d8 6c c2 0a 11 da ce 7d 65 fd f1 d2 6b 58 38 4b 7f // 31 5d 11 cf 32 31 00 75 84 02 5c 3d d9 f2 d5 e3 8d 7c 2e 3b ad 6a c8 // 52 67 d3 16 25 db bb ce 63 e9 89 88 72 f3 8a 30 3f d6 38 e4 3c 5c ef // eb d7 19 e8 ef e6 b2 07 5f 91 cb c6 2c bb 65 79 42 00 16 ac 02 16 b6 // 67 ae cb 71 95 da 4c 4a 36 47 7c 66 5f cf ef 6a d5 51 ea 36 06 a1 47 // 52 30 11 8d 95 e6 00 cf 2a be ff 56 3d 92 e1 bc 75 3d 10 d7 82 a1 d9 // 51 40 b5 ca fa e4 d2 d3 50 e7 a8 4f a3 b6 57 23 94 3a 97 c6 8c ab b7 // 76 ce 50 2a bf 2f 1f 1f b8 c1 24 8a 9b bf 29 03 c9 30 4f bf 9a 12 19 // b4 0f 37 81 23 b5 f8 13 0b a3 6f 3f 42 33 27 b8 69 60 5d 05 6a 10 1f // 64 d8 d6 ca 8b 59 aa e0 e3 25 ae 5e 11 4e a5 50 d1 1f df 98 3a c2 ee // db 40 4a 10 92 9e ab af 2f 7c 40 2b 82 12 4c 7b b3 0b 53 44 29 58 18 // a2 53 01 2d af a4 7f 6f 34 b4 43 1f 01 80 cc 28 59 db 29 b3 49 c6 13 // 8b 53 8f d4 de 38 63 c2 1c 01 28 56 00 dc 1c e7 30 13 99 0e 4c 1d aa // 03 d7 88 78 20 0c 63 95 86 03 86 20 fd b7 a9 fc 84 44 85 81 8e df d2 // 63 6a ec 5a 2b 16 af 4b ff 42 8d 2d fe 89 47 5c a0 67 76 a6 8d 5e 4b // 47 61 b9 85 09 5e 94 cd 91 d3 3a 3f 0a 5d fb fc 25 5a b5 89 64 91 c0 // 30 44 af f1 95 08 23 35 8b 54 ed ee 81 af ea 9b 88 76 4a 24 ac 9b 91 // 7e 2c ab 6c b2 ba 1c 91 d1 0b d0 ef 86 81 ce a3 ad 9c 59 f7 88 82 d4 // aa 80 7a 53 a1 06 ca 2d 07 38 a0 44 57 27 5c fa c6 53 63 8a 94 57 7c // 4a b0 3c 9e 5d 6d e1 dc 78 b4 87 ec 91 8c 4a 7c a2 a8 d6 ff 85 2e 8f // a2 57 76 aa 6f 13 9a 3c 54 69 32 71 50 2b 71 ea dd b4 61 c1 81 9f 6d // 20 a7 9a c7 22 6a 17 7f 42 df 6f 47 05 cc 62 cc 04 84 b2 8e 5c fd f7 // fc 52 b0 c5 82 62 1b ac d7 03 a2 87 14 17 5d b5 76 ec 0b f0 17 c3 24 // 24 67 5d 28 d9 92 e4 6d e4 60 b3 28 9f ee 37 b4 9b 35 6f 78 42 cd 94 // 76 47 95 c8 87 11 54 19 23 40 49 a2 a2 70 8a e8 2e fb 8f 10 f5 d2 2c // 2b ae 2f 5c 1a bb 9c d8 39 c6 21 4b 0a cc 0b 04 fb 6c fd f7 f3 ad ca // dc 51 89 d8 50 dd 95 7c 47 a4 f9 46 ac 47 9a 4e 12 4f 69 5d 22 2f 37 // ea 07 50 66 38 e9 0b 86 bf 3b bb 0c cb 57 8b b6 fe e8 94 1d 6e 1d a1 // c7 79 96 a0 64 c6 01 57 b6 d4 17 be b1 ad 52 05 f2 10 85 1a 07 9f 9e // f6 e3 fa f3 ca b5 48 2c df 71 59 e7 8b 9d 82 0c fe e7 14 a0 70 ad 35 // b9 1b 49 cb 43 b4 3b b7 fb bf d5 27 6b 5c 2e b0 d4 ca 9f f9 b1 0f 0b // 8e c7 42 33 c7 ae bb 29 33 e4 bd 5b 0a 38 8e d6 ce af ed 8e f9 95 09 // 8c 2b 88 d7 4d 2c eb d4 4b a2 6c 27 b5 d8 98 33 94 d2 86 15 6f 4b 50 // 1e 45 fe 52 17 09 6b 1b fe 7b 9b b3 f6 c3 b4 d2 ad 15 bf 1c 86 ed 70 // ee 85 2c 4c fb 97 9e b4 a0 c8 26 95 37 99 a2 03 03 22 66 93 64 aa 90 // 50 92 fb 45 cb ea ca c4 47 03 c7 0d 7e 27 8f 1a 59 26 f2 42 d4 59 e3 // 6d d8 e3 74 f9 bb 7a 0c 90 7d b1 d4 f8 c1 99 3a c0 24 4f 6d 56 30 41 // a8 95 6e a8 2b 7e ef 7a 63 ac 20 0d 32 ab 10 7d 67 28 61 0e fc 53 0a // a5 78 37 71 a5 fb ed bf 5a 37 9b 29 23 f0 88 cd 20 3e 31 5f 41 07 2d // 83 20 1a 1f 1f ce 87 d8 b7 cf 2f 14 2e 1f f5 f8 b2 f5 20 28 e8 76 4e // 49 60 4b 46 dc 37 63 f7 90 15 18 3f 60 1e 26 34 66 06 e2 2c 24 e1 83 // 3b 27 55 af a2 85 fe b8 33 d3 ff 3b 91 08 46 a9 6e 02 80 70 f9 25 a6 // c6 40 d9 95 6c 85 23 67 e8 9c a0 dd a2 6a d3 c2 2f 3c 63 f8 7c 49 f2 // 1e 62 36 32 73 57 90 59 ec 88 64 39 43 81 6a 0a 20 ca a0 d9 7b b1 0a // a5 f1 da 88 2d 42 2b ee fc 5f 59 12 86 36 d8 51 42 77 83 f1 63 9d 25 // af 11 d0 bf 7e 88 10 f2 30 40 74 f0 71 0b 82 a1 f8 fe a2 f7 da 16 b8 // 96 78 3a 46 8a a0 4e 55 24 d9 f1 18 ae 73 35 01 cf b9 13 c3 c2 e3 27 // b7 b5 c8 7e 25 08 84 66 7a 9f cf 29 e2 7c 90 09 c2 17 38 53 b5 dd af // d7 c6 bf ff be 1e da ae cb f5 13 4a ff 42 87 6a 19 2e 34 e3 2f aa 86 // 05 e1 f5 dc 85 53 c3 e4 31 56 12 6d a5 40 ba 46 7b e0 b3 be ce 18 26 // a8 5a 96 23 2f d3 7a 68 bd 9a 38 1e 96 a7 4f 85 79 65 47 77 25 c2 8a // a9 08 fc 83 67 c7 c4 02 40 59 cd 24 54 cd b0 bd 00 21 3d 70 94 6b 17 // 51 e1 33 cf f4 88 09 c6 09 3c 6f b0 0d b7 e4 77 a8 6c 85 7c 81 d3 9d // 49 f1 97 4d 21 91 f5 2f 73 7c 0f 97 10 a6 eb 8b f6 b8 61 61 93 0b 31 // 21 23 84 0c fc 06 0a bd 7f 69 e3 6a 63 93 03 65 50 32 1d 09 dc 13 e4 // 84 79 4a a0 de 07 8f 03 d8 39 64 64 fe eb 7f e8 05 5b 23 63 8d 7d 78 // 0a 39 40 13 03 9d d0 06 48 40 51 21 1c 86 2b bf a8 5e 5c fb d7 7d 2c // ed 2f 5d db 92 29 f1 83 fc ff d2 c5 d5 bf ac 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: nil // entry: 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 = 0x0 (8 bytes) // payload: fuse_create_open_out { // entry: fuse_entry_out { // nodeid: int64 = 0x1000000000000002 (8 bytes) // generation: int64 = 0x4 (8 bytes) // entry_valid: int64 = 0xfffffffffffffffe (8 bytes) // attr_valid: int64 = 0xfffffffffffffffe (8 bytes) // entry_valid_nsec: int32 = 0xfffffffb (4 bytes) // attr_valid_nsec: int32 = 0x2 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x1000000002 (8 bytes) // size: int64 = 0xb (8 bytes) // blocks: int64 = 0x2 (8 bytes) // atime: int64 = 0x40000003 (8 bytes) // mtime: int64 = 0xfffffffffffffff7 (8 bytes) // ctime: int64 = 0x5 (8 bytes) // atimensec: int32 = 0xfffffffb (4 bytes) // mtimensec: int32 = 0x4 (4 bytes) // ctimensec: int32 = 0xfd55 (4 bytes) // mode: fuse_mode = 0x8000 (4 bytes) // nlink: int32 = 0x5 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x3 (4 bytes) // blksize: int32 = 0xfffffdff (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // open: fuse_open_out { // fh: const = 0x0 (8 bytes) // open_flags: fuse_open_flags = 0xe (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000004380, "\xa6\xc5\x74\xdd\x37\xad\x5a\x06\x63\x3d\x06\xf1\x93\xc5\xb9\x57\x75" "\x8b\x45\xf2\xf4\x21\x2a\x3c\xe6\xab\xbf\xde\xd4\x46\x1d\xe9\x8c\x07" "\x80\x33\x2e\x9d\x3b\xfa\x72\xa5\x3a\x15\x65\x60\x5c\x55\x1d\x53\xa1" "\xa3\xdf\x7a\x15\x70\x4f\x14\x49\x3a\x10\x22\xfb\xcf\x14\x4f\xe8\x98" "\x33\x8e\x9d\x3e\xa1\x51\x01\xd7\xe1\x79\xa6\xbf\xc0\x93\xe7\xfb\x9c" "\xe3\xbb\x08\x54\xc6\x42\x64\xcf\x2b\x2b\xae\xee\x72\xf5\x26\x58\x94" "\x9c\x82\x62\x18\x6a\xa1\x58\x2f\x93\x2c\x47\x1e\x68\xd5\xcf\xab\xd5" "\x7f\x6a\xbc\x46\xaa\x80\x52\xb9\x42\xba\xc7\x56\xf0\x3e\x4a\x14\xf3" "\xee\x3c\xc5\x5d\x2a\xee\xc2\x1d\x08\xae\x0c\xd7\xa6\x7b\xa7\x08\x14" "\xce\x16\x1c\x6b\x77\x18\xe9\x60\x55\xc1\x49\x4f\x55\xf1\x06\x73\x31" "\x61\x79\xe9\x9c\xe4\x09\xc9\xcc\x18\xb8\x0a\x02\x0e\xa9\x9b\xe8\xbd" "\x34\x15\xd4\x42\x0a\x9a\x4c\x74\xc9\xd1\x6b\x8c\x6b\x58\x51\x7f\x13" "\x80\xc4\x4b\x8c\xee\x0d\x16\x4e\xee\x6b\xfa\xda\xda\x76\x4e\xea\xc7" "\x4f\x4c\x86\x7b\x5e\x18\x4d\xc0\x91\x8d\x58\x7b\xfc\x57\x78\x36\xe9" "\x66\x8f\x0f\xd4\x46\x74\xf1\x31\x0a\x91\x0d\xf2\xdc\x6e\x23\x42\xd4" "\x7f\xbe\xb8\x90\xb3\x0d\x71\x83\x59\x59\x96\xda\xa2\xe6\xf2\x1f\xc1" "\x54\x1c\xe0\xed\x06\x86\xf2\xca\x55\x36\xbf\xbc\x85\x1a\x1a\xb1\x57" "\x55\x02\xa1\x9c\xbd\x99\x0e\x95\x4f\x12\xe9\xb7\xa0\x98\x5d\x93\xc1" "\xca\x66\xb2\x68\xd4\xbd\xcd\xf7\xc7\x5c\x17\xfa\xa6\xd9\xb0\x3c\x9f" "\x88\xfe\x6d\x31\xaa\xef\x35\xd2\xdc\x65\xbc\x74\x27\x99\x83\xb0\xc6" "\x64\x64\x75\xb8\x3c\x1e\x01\xb6\xc8\x87\x2d\x11\x5a\xa7\x2a\xe0\x6a" "\x18\xe6\xd4\x12\x0f\x55\x1d\x2c\x35\xfa\xe1\x18\xd4\x90\xc5\x08\x67" "\xbf\x3f\x6c\xd2\xf9\x50\xf2\x2d\x6b\x0c\x75\x77\xe0\x46\x97\xbe\xe4" "\x7b\x85\xc6\x14\x4e\x2e\xcf\x45\xc4\xfd\x93\xac\x1b\x51\xe4\x4f\x98" "\xe3\x8f\x9e\x9b\x93\xc3\xeb\x91\x60\x40\x4d\x3a\x60\xf8\x08\x83\x6a" "\x86\x68\x60\x4f\xfd\x8b\x31\x7f\x91\xfd\x4d\xae\x38\x43\x86\xc0\x1f" "\x5f\xde\xbf\xa6\x43\x90\x7b\x5a\x07\xad\x14\x23\xcb\x0d\x4a\x9a\x68" "\xaa\xe6\xd2\xb5\xa9\x12\xba\x0b\x07\x89\x73\x5e\x73\xd9\xa8\xed\x8a" "\xe4\x2c\x92\xf6\x7f\x5c\x3a\x40\xe7\xdf\x55\x75\xdd\x5e\x03\x3f\x3b" "\xbf\xc4\x43\xcf\xdd\xe1\x68\x5d\x9d\x5c\x05\xe8\xe9\x46\x9b\xf7\xf5" "\x46\x39\x8a\x36\xca\xc0\x08\xbc\x36\x52\x0d\x0e\x08\xa4\xce\xe2\xa4" "\x8a\xd2\xab\x81\x95\x24\xc9\xe2\x14\x5f\x0d\x9d\x47\x4a\xcd\xb0\x28" "\xb9\xcb\x82\x48\xa4\xd9\xdf\x5b\xf6\xa1\xbf\xee\xa4\x58\xfe\xdb\xc0" "\x39\x81\x5f\xfe\x37\x5c\xae\x1f\xb9\xbe\x98\x89\x16\xc2\x03\x87\x31" "\x8c\xde\x61\xc3\x6b\x17\xee\xa1\x3c\x17\x6b\xb1\x06\xd2\x92\x72\x85" "\x37\x03\x2c\xdd\x79\xd7\xc8\xd4\x80\x38\xa6\xb7\x1a\xec\x0d\x61\xe7" "\x74\xbe\x6a\xd9\xf6\x42\x10\x95\x7c\x82\xde\xa2\x9c\xa0\x99\x1e\x01" "\x94\x55\xcd\x7f\xd2\xee\x2a\x64\x49\x1e\x87\xe8\x98\x07\xbe\x62\x43" "\x61\x32\xe5\xa6\xe7\x5e\xb1\x4f\x83\x88\x5f\x16\x1b\xc0\xc1\xad\x2f" "\x33\x90\xcf\x01\x25\x71\x2a\x9f\x5a\x14\xe6\x2b\xe0\xa9\xef\x23\xf1" "\xea\xe4\x66\x80\x14\x3a\x83\xab\x24\x48\x3b\xe9\x1e\x1c\x01\x5d\x4a" "\xad\xeb\x37\x8c\x7a\xab\x79\xa4\x74\xb7\x55\xe1\x4b\xbb\xa5\x9f\x2a" "\xc1\xb8\x0d\x53\xd3\x8b\xae\xe4\x2f\xd7\x58\xe9\xa3\x36\xca\x90\x44" "\xe9\xfc\xa0\x14\x6f\x71\x68\xaa\x4a\x51\x9e\x67\x4d\xaf\x9e\x06\x17" "\x78\xa7\x4a\x9b\xa4\x8c\x34\xe1\xbc\x8e\xe8\x69\x43\xf3\x7b\x6f\xb6" "\x53\xa8\x25\x98\x90\x26\x30\xbd\x4f\xa3\xcf\x37\x4a\x62\x2f\x38\xdc" "\xfe\x10\x06\xa3\xee\xd5\xc3\x17\x66\xd1\x3b\xcb\x43\x1d\x79\x11\xed" "\x3f\xd7\x47\x75\x53\x00\xb0\x34\x3b\x65\xde\x20\x1e\x0b\x95\x59\x9f" "\x36\xcf\x19\x71\xb3\x9f\xb3\xba\xd2\x44\x8b\x86\x3d\xf0\xdf\x7a\x3a" "\xd8\x87\x41\xf0\x8b\x90\xd7\xab\x76\x32\xf4\x81\xf0\xa6\xd1\xd8\xce" "\xa5\x7d\x10\x6b\x54\x79\x0a\xcb\x10\x5f\x5a\x40\x30\xc4\x8a\x23\x25" "\x92\xa8\x87\x86\x37\x10\xb1\x6a\xbb\x73\x57\x67\x0b\x36\xcc\xfa\x67" "\x6d\x66\x89\xbf\x10\xb6\xff\x95\xaf\x96\x33\x36\xf8\x9f\x41\x36\xdc" "\x9b\xa2\xea\x1c\x92\xbb\xa5\xca\xfc\xa6\xb2\x48\xb2\xff\xba\x27\x37" "\x01\x2f\x29\xac\x03\xff\x59\x57\x28\x33\xc4\xff\x9e\x1a\x2e\xf2\x57" "\x1e\x69\x62\xab\x67\xe1\xe5\x51\x38\xdd\xc4\xac\x90\x44\x1f\xa7\x5f" "\x0f\xeb\x9b\x2e\x07\x42\x4b\xde\x53\x4f\x28\xa5\x02\x05\xf1\x13\x6d" "\x9f\xca\x17\x6d\x87\x5b\xc4\x4e\x34\x39\xc0\xbd\xa0\x8a\x27\x77\x98" "\x7b\xb4\xe6\x79\x5f\x48\x03\x8f\x2a\xc7\x96\x3d\x65\x28\xfd\xde\xdf" "\x73\xb8\x41\x64\x12\x03\x1e\x84\xfb\x2e\xa1\x37\x4a\xdc\x4e\x39\x99" "\xdb\x63\x39\xaa\xdb\xf1\xc7\x95\xda\xc5\x11\x53\xf0\xac\x54\xca\x6d" "\x41\x84\x27\xb6\x96\xde\xd5\x69\x00\xd6\x63\xef\x96\x28\x22\xd6\x7b" "\x6c\x7a\x6a\x0d\x50\x02\xf8\x8e\x24\xb0\x6c\xa4\x75\x29\xf0\x2e\xbb" "\xff\xfa\xe3\x4e\xfe\xc6\x5f\x23\x0d\xe3\x53\x68\x05\x4a\x9d\x8b\xd9" "\xfc\x71\x0f\x00\x50\x08\x14\x90\x19\xd6\x83\xc7\x45\x02\x34\xae\x57" "\x1b\x40\xe5\xde\x4c\x91\x78\xc1\xf1\x12\x2a\xea\xc8\x29\x30\x08\xa2" "\x8e\xad\x39\x46\xbd\x62\x87\x12\x6f\xdf\x42\xfe\xcb\x03\x70\x0c\xb9" "\x49\x5b\x8a\x9b\xe5\x44\xae\xf8\xb4\x89\x23\x80\x20\xd7\xb9\x14\x9f" "\x40\x4d\xc1\x7f\x61\xcf\xa4\xa3\xee\xae\x72\xf4\x6f\x79\xfe\x3f\x6d" "\x38\x4a\xc2\xa4\xdb\x2a\x45\xbc\x8c\x00\x2e\xe4\xd4\x91\x60\x7e\x92" "\x4f\xef\xd1\x65\xc4\x6f\xb1\x5f\x2a\xbb\xa5\x4a\x36\xa2\x46\x0b\x6c" "\x2e\xe6\x3d\xe3\xe3\x0e\x98\xff\x3d\x45\x3f\xab\x20\x4e\xae\xf8\x9e" "\xa2\x1f\x81\x17\xb0\xe5\xe5\xe8\x7e\xed\x6e\x2a\x3a\x58\xd2\x70\xe6" "\x5c\xc9\x2f\x61\x8b\x0e\x44\x5d\x55\xf2\x9c\x03\x1f\xd3\x6f\xce\x5f" "\xf6\x2d\x03\x69\x02\xbf\x5f\x1e\x4f\xeb\x74\xc5\x71\xf5\xf8\xfe\x03" "\x51\x9d\x57\x9c\x78\xf8\x2e\xfe\x2d\xea\x51\x92\x22\x2f\x42\xce\x4e" "\xd3\x5f\x0f\x5d\xf3\x16\xdb\xe5\xb1\xdb\x22\x5b\x00\xdb\xe4\xe0\x45" "\x18\xbb\x28\x9c\x6e\xec\xbf\x20\x25\xa6\x75\x8e\xb0\x4f\x36\x75\xa9" "\x06\x1b\x5e\x9a\xe5\xa9\xec\x9b\xc5\xee\x41\xb0\x8d\x71\xc9\x05\x9d" "\x2c\x68\xa4\x2d\xa0\x9d\x2e\xac\xd3\xac\xe9\x6b\xe1\xad\x94\x38\x30" "\x66\x30\x52\xcb\x8e\x38\x72\x58\x83\x94\x45\x3a\x1a\xee\x28\xcc\x3f" "\x7e\x4c\xfe\x34\x82\x1c\xc8\xc3\x23\x20\x4a\x06\xe9\xd8\x2f\xd4\xf6" "\x77\x51\xc4\x9f\x17\xf9\x2d\xcb\x30\xe8\xf0\x2f\x3e\xa2\x4b\xe5\x5f" "\xba\xfa\x90\xc5\x01\xc3\x65\xcc\x03\x49\xe2\xc3\xb6\xf0\xf0\x2a\xc8" "\x3f\xf4\x07\x93\xc4\xed\x56\xe2\x94\xce\x28\xac\xcd\xf6\xbb\xef\xcb" "\xfd\x0f\xf5\x38\xd7\xcf\xab\x35\x63\x5e\xd8\xfc\x89\x51\xa1\xcc\xd3" "\x0b\x59\xbb\xe2\xc5\x1e\xaf\xe2\x23\xb4\xdf\xcb\xdc\xde\x2a\xcc\x43" "\x7d\xe0\x51\xf9\x56\x3b\x76\xa4\x36\x09\x40\xa7\x19\x86\xd8\x6e\x08" "\x54\xa2\xb5\x30\xad\xe4\x1b\xdd\x87\xc0\x23\x4a\xc5\xdd\x42\xee\x03" "\xa1\x02\x93\x2b\x08\x3e\x57\xf6\x5c\x10\x19\xd4\x05\x4e\xfc\x1c\xd2" "\x5f\x4f\x85\x2b\x9c\xc6\xbe\xfd\x38\x7d\xde\xcc\xe4\xda\x58\xa4\x66" "\xe5\x36\xee\x8f\x7a\x3c\xa5\xbe\x42\x4c\x92\xb1\xa2\x0e\xca\x71\xd5" "\x90\x1f\x3d\x62\xac\x1b\xbc\xde\xea\xa2\xef\x90\xfb\xca\xf3\x51\x68" "\xa1\xdc\x0a\x5c\xd5\x2e\xa9\x60\xab\x4c\x1d\x0e\x0a\x65\x35\xaf\xd5" "\xf2\x09\xaa\x89\x61\x7b\xe6\x51\xc4\xc2\xcd\x21\x24\x45\xb3\x2e\x17" "\xa0\x4a\xec\xa0\x5b\x42\xd4\x78\x89\x21\xe5\x83\x47\x44\xe6\x3f\x13" "\x22\x2d\xc5\x2c\x90\xa0\x8b\x62\x04\xd8\x5f\xb2\x7c\x9f\x15\xde\x63" "\x1d\x53\xb5\xff\x0a\xe5\x0b\x5f\xeb\x46\xf7\xc6\x73\x63\x42\x3d\x24" "\xf9\x70\xe0\xe9\x50\x83\x9d\xa3\xf4\x20\x16\xac\x2f\x38\x85\x9a\xe4" "\x26\x1a\x1e\x9d\xa9\x55\x2b\x6a\x17\xa1\xd5\xbc\xbf\x27\xff\xf1\x7a" "\xd0\x53\x84\x20\x69\x48\xb4\x9c\xe4\xc8\x7c\x80\xc8\x0e\xdb\x9a\x3b" "\x5d\x76\xd1\xe6\x4b\x01\xba\x73\x5f\x93\x66\x7b\x8b\x37\x8b\xe7\x89" "\x35\x93\x6c\x2a\xc1\x07\x1d\x7a\xbb\x97\x7c\xf0\x1e\xdf\xe7\x66\x48" "\x58\xcf\xd8\xf8\x46\xa4\xde\x20\xd9\x8a\x56\x86\x00\x91\x82\x0f\x9f" "\xe7\xca\x2d\xe7\xbe\x20\x2b\x36\x22\x2b\x88\xbd\x8e\xac\x23\xf4\x1f" "\x62\xe1\x41\x10\xaf\xaf\xe6\x42\x10\xf4\xa0\x7f\x89\x4b\xfb\xcb\x18" "\x3b\x87\x74\x7e\x36\x2c\xd5\xb9\xe8\xc5\x0d\xf1\x45\x30\x53\xc1\x8f" "\xe1\x21\xbb\x75\x07\xbc\x50\x1a\x46\xf7\x36\xbd\x13\xd5\xec\xc4\xfa" "\x54\xdd\x77\xe5\x3a\x60\x4f\x72\x32\xc8\x33\x1b\x1b\x7c\x05\x37\x68" "\x9f\xb1\x94\x51\x28\xf9\x75\xd6\x40\x57\x47\xbc\xc0\xd1\x72\xc1\x9d" "\x4f\xa6\x10\xcf\x48\x1a\x8a\xac\xd5\xf7\xa7\xcb\xef\x34\x56\xa6\x54" "\x43\x32\x2a\xfd\x13\x77\x08\xb3\xfc\x8b\x3e\xe9\xb8\xa4\xcb\x38\xc7" "\xb1\x4d\x4f\xdd\x74\xda\xa5\x80\x74\xbc\xaf\x22\xbc\xa1\xcc\x8e\xc2" "\xdd\x22\xcd\xe6\x0b\xa5\xd8\x92\x34\x2a\x14\xbe\x25\xb4\xd8\x97\xdd" "\xb2\x3b\x81\x54\xc6\xf2\x4a\x93\xc0\x0c\x17\xac\xd9\x05\x22\xef\x7a" "\xcb\x80\xb3\x43\xac\x08\xb4\xaf\x83\xce\x8a\x0c\x95\xbb\xfe\x14\x0c" "\x0f\x1c\x57\x26\x39\xf4\x07\x96\x07\xa3\x4b\x8f\x67\x5c\xf3\xdd\xfc" "\x2b\xff\x83\x63\x5f\x9d\x13\xb2\x37\x5c\x1d\x31\x79\x20\x53\x0f\xc7" "\x2f\xc7\x74\xed\xf8\xdc\x4f\x65\x3d\x72\x87\x6c\x1a\xe6\x1e\xdc\x6e" "\xdb\x1c\xbc\x2e\xdb\xda\x72\x07\xcc\xa6\x81\x11\x75\xcb\x8f\x92\x05" "\xd8\xbe\x99\xd8\x1d\x21\x7e\x04\x33\xac\x7d\x29\x89\x62\xb8\x7d\xb0" "\x01\x28\xff\xf1\xf3\xd2\x64\xc5\x0d\xed\xd3\xca\x4b\xcc\xc8\xdb\x1c" "\x11\x91\xc3\xea\x22\x6d\x35\x15\x60\x02\x4b\xe6\x5f\x4e\x85\xf5\x77" "\xbf\x8f\x06\xd6\x52\x8f\x7c\x73\x64\x0c\xd5\x79\xac\x16\x77\xee\x58" "\x25\x5c\x1b\xce\xdc\x96\x70\x68\x47\x37\x17\x30\x37\xed\xdc\x55\xbc" "\x94\x3b\x78\x52\x4f\x61\x76\x53\xa3\x24\x31\x9f\x60\x26\xb6\xa9\xb0" "\x2c\xc9\xe3\xb5\x8e\x8b\x66\x1d\x5d\x78\x05\x72\x3c\xc5\xc4\x76\xe3" "\xb7\xf0\x4e\xe7\xdb\xfe\x1a\xf7\x44\xf7\x56\x31\x3a\x21\x46\xa8\x42" "\x24\x87\x7c\xf9\x3d\x1f\x27\xc2\x8e\x7e\x21\xe4\xd2\x91\x93\xd6\x38" "\x4c\x3e\x9e\xb3\x37\xcf\x67\xa5\xb4\x59\x70\xc7\xec\x3d\x55\x23\x84" "\x7d\x0e\x7d\x56\xcc\x4f\x13\x2f\x16\x08\x51\xfe\xec\xed\x28\x4f\xb5" "\xa7\x5c\x20\x3f\xa6\xb1\xe0\x13\x62\xff\x6d\xa0\xeb\xf8\xd8\x52\xc9" "\x0b\x1a\x02\x63\x86\x25\x3a\xfe\x5c\x7a\x07\x8e\xcd\x8c\x56\x63\xbe" "\xe5\x7b\x83\x20\x06\x53\xbd\x2a\x5e\x66\x95\xa3\xcc\x5d\x46\x6d\x2e" "\x65\xd8\x1d\xa0\x58\x10\x7d\x24\x22\xfc\x99\x87\x5e\x95\xb7\x72\x60" "\x8e\x45\x64\x71\xcb\xbf\xa2\xee\x87\x95\xb4\x5c\xac\xb1\x29\x05\x63" "\xeb\x23\xbf\x53\x4c\x7d\xb5\xe4\x7f\xbe\xe4\x08\x10\x13\x97\x4c\xe9" "\xda\xc3\x30\x1d\x6c\xd9\x66\x25\x5e\x22\x24\x3c\x90\xfc\x55\xf4\xb4" "\x21\x94\x0c\x7e\x81\x9e\x5d\x54\xf4\x48\x69\x94\x3e\x2f\x26\x7e\x3b" "\x1b\x9e\xaf\xdf\x61\xa9\x15\x7c\x04\xe7\x1b\x75\x60\x76\x44\x5e\xad" "\x78\x51\x92\x3e\xfa\x64\x54\xff\x15\x6b\x2c\x37\x93\x19\x2f\xec\x04" "\x6b\x7b\x7e\x89\x47\xef\xe0\x00\x9e\x9e\xf0\x49\xda\xe8\x9b\x34\xdf" "\xdc\x01\x83\xcc\x7a\x9c\x7c\xac\x4e\xb1\x39\x94\x53\x5e\x80\x3a\x7d" "\x9f\x07\x0b\x95\xdf\x12\xbb\x2e\xcc\x30\xbb\x51\x85\x17\x98\x2b\xe2" "\xa2\x74\xfa\xae\xc1\x71\x3a\x42\x3f\x02\x00\x89\x84\x83\x26\xe5\xfe" "\x32\xc1\x15\xde\x0b\x7f\x8c\x28\x76\x27\x1a\x0d\x17\x92\x4d\x24\x6c" "\x9e\x08\xbb\x53\x4d\x74\x1b\x03\x64\x6d\xae\xa5\x41\x1f\x18\x25\x63" "\x2c\xaf\x10\x1c\xca\xe4\x9a\x99\xb8\x2e\x37\x35\x51\x39\x47\xb6\xc6" "\xa4\xb0\x9b\x76\x20\x35\x47\xf7\x9f\x28\x09\xc9\x6b\xef\x59\x3c\x6e" "\x64\xbd\x0e\xb8\x4b\x1b\x11\xe3\xf1\x36\xfe\x72\x56\x07\xdf\x9b\x34" "\x20\xaf\x6c\xde\xad\x70\xbc\x57\x2a\x44\xec\x14\x53\xde\x49\xfa\x1f" "\x68\x43\xf5\xe7\x40\x55\xcc\x37\xaa\x86\xa9\xc0\x6c\xc8\x09\x4f\x3f" "\x58\xf3\xba\xc7\xf7\x98\x0c\x1d\x41\x72\x9c\xe1\x33\x10\x96\xfb\xab" "\x86\xee\x75\x68\x79\x8a\x0b\xe0\x45\xb1\x32\xec\x6c\x58\x71\x43\xed" "\x90\x71\xf9\x49\xf0\x09\x0b\x78\x3a\x13\x24\xd7\x6f\x5a\xec\x55\x59" "\x16\x8d\xa6\x7c\x85\xe3\xbb\x8a\x48\x93\x7a\x21\x4d\x1f\x10\x1d\x7c" "\xcf\xf6\x55\xc5\xeb\x77\x8d\xdd\x61\xcd\xe8\xdc\x39\xbb\x19\x20\xe0" "\xd7\xcf\x41\x8b\x76\x1a\xb9\x2b\xcc\x67\x7a\x0c\x5b\x6c\xab\x85\x57" "\x4c\x12\x16\xe3\xce\xc6\x82\xdb\xfa\xd3\xa7\xb0\x53\xe3\x65\x57\x8c" "\x0c\x1c\x7a\x70\xa1\xb4\x8b\x67\x44\x44\x1f\x14\x76\xe1\x33\x66\x08" "\x79\x13\xdd\x41\xe6\xd9\xa2\x72\x30\x1b\xe9\x72\x1d\xc0\xfc\x78\x35" "\x5f\xa9\x14\xb8\x03\x3c\x1e\xec\x4f\x2c\xd0\xcb\x39\xe1\x76\x03\xb2" "\xf7\x05\x26\x19\xcb\x52\xe6\x58\xc9\x28\xe3\x92\x5c\x32\x6d\x00\x01" "\x61\x46\xa7\x54\x14\x21\x15\xd4\xba\xfe\xd7\x7a\x5a\xd8\xb5\x41\xf4" "\xe5\xcb\x73\x2a\xf4\x41\x1a\x1a\x88\x33\xff\x42\x15\xaa\x8e\x0d\x74" "\x3e\xcc\x63\xc3\x11\xbb\xe3\xfd\x21\x33\x5a\x82\xf0\x64\x85\x35\x68" "\x84\x34\xdf\x83\xe6\xfe\x6e\xa8\x45\x52\x94\xa2\xbc\xaf\xff\x88\xa0" "\xd0\x48\x56\x57\xe7\xad\xf5\xb7\x30\x83\xd8\x73\xcc\x87\xca\x6c\xd5" "\x65\x93\xf1\x16\x42\xfe\x27\xd9\xa9\x98\xd5\x5a\xc7\xaf\x93\xb7\x02" "\xfe\x44\x18\xd3\xce\x0f\x2d\xd7\x3d\x8c\x1f\x60\x52\x45\x75\x11\x9b" "\xfe\x0d\x96\x1c\x46\x8a\x90\x6a\x0d\xf2\x86\x84\x65\xb5\xbf\x5d\x20" "\x18\xb9\x7c\x2e\x11\x39\x3f\x67\x3b\x71\x99\xdd\x0c\x71\xdf\x64\x69" "\xf9\x84\xdb\xd4\x84\xcf\x80\x9e\xf1\xf9\x19\xd1\xb7\xfc\xec\x36\x8c" "\xb9\x3e\xf4\x9f\xae\x9b\x56\x4a\x28\x22\x5c\x2e\x2e\xef\x78\x2a\x07" "\xf6\xaa\x66\x0b\x2c\x38\x5a\xc0\x0a\x21\x51\xe3\xcc\xf2\x93\x44\xb9" "\x36\x21\x98\x7f\x57\xbd\x29\xec\xde\x89\xa2\xcc\x8d\xc8\x74\x71\x60" "\x6c\xce\x12\xf2\xac\x12\x10\x35\x8b\x5f\x08\xed\xdd\x98\x3e\x86\xc0" "\x24\x40\xa9\xb3\x57\xf3\x86\xf8\xd4\xea\x61\xb0\xa7\x3b\x64\x42\x7e" "\x4e\x73\xb1\x74\xca\x05\xe6\x3a\xb7\x49\x62\x61\x32\x64\x3d\x02\xdf" "\x14\x1c\x75\x74\x85\xcf\x72\x9b\xec\x52\x29\xb9\x1d\xce\xd3\x64\x03" "\x66\x20\x0e\xb3\xbe\xaa\xcb\x9e\x9d\xaf\x19\xfe\x74\xd7\xc0\x6c\x18" "\xf3\xca\xf4\xd9\xea\x2c\xc8\xfa\x90\x6f\x58\xc6\x20\xf9\x1f\xd8\x83" "\xdc\x9f\x37\x43\xf0\x94\xa4\xb0\xc8\x5d\x78\xf7\xce\x6c\xc0\x1c\x53" "\x85\x6b\xe1\x0e\x86\x1f\xe3\x47\xf0\x77\x39\x9e\x18\x7d\x22\x41\x8c" "\x0a\xad\x8a\x91\x3f\x4c\xc8\x92\xc9\x03\xd5\x44\xbe\x85\xbe\x4b\x03" "\x1d\x10\x28\xf7\x0a\xcd\x81\x84\xde\x1c\x28\x53\x80\x01\xb1\x53\xbf" "\x0b\xbb\x65\xc1\x60\x33\x9f\xe3\x48\x56\xec\xa5\xed\xa8\xaa\xa7\x9d" "\x76\xe4\xf1\x26\xb4\xbb\xfa\xac\x2f\x44\xc0\xd9\x36\x00\x2b\xa7\x5b" "\x02\x05\xa2\x1c\x47\x20\xb0\xb3\xae\x87\xf5\xc4\x58\xa5\x72\x54\xb0" "\x17\xc5\x1e\x3a\x51\xe0\x87\xc3\xa2\x9a\x65\x4a\xbe\x9f\xe9\xc2\x1a" "\x10\x01\x22\xa1\x1f\x50\x0f\xca\x1b\xf6\x76\xaa\xf9\x59\x98\x0f\xca" "\x9c\xf1\xac\xe0\x13\xd1\xde\x77\x0c\xee\xa6\x1e\x9c\x83\x1d\x3a\x5d" "\xd8\xfa\xab\x74\xbf\x95\xee\x49\xf1\xa5\x80\xe8\xc4\xad\xd9\xca\xfd" "\xda\xde\x6c\x76\x1b\xd1\x00\xe1\x65\x80\x70\xb8\xfd\xba\x52\x48\x11" "\x44\xd1\x4f\xab\x47\x71\xb6\x3a\x1e\x1c\xa1\xef\x6d\x4e\xde\xad\xa4" "\x94\xa0\x84\xba\xb8\xa5\xe4\xe9\x7d\x1f\xb9\x31\x33\x30\xab\x14\x4a" "\xdc\x08\x93\x3f\xcf\xa7\x1c\xe9\x5e\x9a\x27\x4e\x5d\x1d\xeb\x79\x70" "\x55\x12\xb7\x43\x06\xbb\xf7\x02\xdb\x06\x72\x0a\xbd\x25\x1f\x38\xa4" "\xd6\xc3\xf8\x00\x6c\xd4\x27\x01\xe2\x35\x5e\x7a\x58\x15\x13\x15\x30" "\x74\x9a\x40\x9c\x0d\x5d\x99\x3d\x20\xa6\xb8\x2d\x84\xe4\xf1\x4c\x36" "\xce\x24\xc7\x13\xc5\x3e\x8e\xdd\x3d\x57\x10\x49\x83\x8a\xe8\x81\x5c" "\xbe\x00\x0e\x49\x2b\x64\x50\x72\xe8\x63\x52\x90\xd7\xb4\xe1\x34\x39" "\xbd\x79\x64\xaa\x14\xf5\xd5\x5b\x93\x47\xdf\x8d\x76\x35\xff\x02\x8f" "\x4b\x6c\x9c\x21\xa9\x8d\x2f\xc7\x33\xfa\xb1\x95\x3e\xc9\xf1\x42\xe9" "\x5a\x29\xdf\x4c\xb4\x1d\x7b\x78\x63\x42\x3f\xf7\xc3\x9c\xbe\x46\x23" "\xbf\x44\x9d\x5b\xc7\x70\x40\xd9\x08\x17\xac\x00\x48\xcc\x36\x05\x09" "\xa5\xa1\x6c\x30\x94\xa6\xd5\x75\x80\xdb\x54\x97\xc3\xb3\xd5\xc6\x21" "\x04\xdc\x58\xe8\x51\xac\xaf\xeb\xe9\xeb\x53\x10\x18\x21\x5f\xf2\xbf" "\x2d\x58\x99\x9d\x6e\xd9\x66\xa6\x46\xdd\xdb\x0c\xa2\x03\xa2\x79\x78" "\x98\x31\x28\x94\x98\x78\x00\x2e\xd1\xdd\xaa\x77\xae\xa7\x21\x5e\x74" "\x49\x9f\x91\x59\xcc\x99\x55\x82\x2d\xb1\x61\x5a\x25\x8f\xe6\x5e\x05" "\x61\xbe\x8c\x62\x43\x5b\x72\x71\xb1\xf2\x91\x1a\x9e\x01\x43\x9e\xc1" "\x5c\xec\x3e\x1f\x9f\xd7\x95\xfa\x82\x9c\x20\xe8\x72\x9e\xc7\x9f\xd0" "\x64\xdb\x0a\x8c\x2e\x67\x6b\x9f\x3e\x3f\x49\xf0\x59\x31\xd7\x93\x03" "\xa9\xbd\xfe\xb0\x4a\xcf\x35\x59\x65\x20\x38\x3d\x8e\x75\x8a\x88\x9a" "\x00\xe7\x36\x2c\xee\x37\x17\xb7\x0c\xf3\x0a\xbb\x93\xa5\xf2\xa4\x0a" "\xe0\x99\xc2\x65\xc2\xdf\x3c\x02\xb4\xfd\xc4\x29\x3d\x4e\x7f\xc2\x6c" "\x88\x87\xfb\x9e\xb9\x83\x2b\x71\x6b\x08\x3c\xd5\x6d\x77\xec\x25\x25" "\xce\x62\x2a\x2c\x08\x8c\xed\xa4\xc7\x53\x64\x32\x12\xe2\x17\x0e\x89" "\xae\x2e\xb4\x8d\x99\xe2\x2c\x48\x44\x55\x3b\x3e\xa0\xeb\x53\x83\x81" "\x35\x22\xbc\xa8\x50\x89\x62\x39\xfd\x22\x8d\x42\x15\xd4\xc5\xb5\x50" "\xf0\x41\xc8\x7b\x78\xef\xc4\xc1\xdb\xb9\x6a\x6b\x0c\x03\xab\x83\xc7" "\xad\x44\x84\xb4\x87\x80\x4b\xc2\x1d\x2b\x82\xf1\x0d\xa8\xa4\xfc\x7b" "\xdd\xfe\x88\x88\x2d\x12\x85\xe5\xeb\x15\x92\xae\x12\x1d\xc3\x7b\x39" "\xe0\xde\x0c\x48\x25\x63\x9e\xbf\x4c\xb8\x32\x8c\x23\x67\x21\xdd\xcb" "\x58\x20\xf4\xca\x2e\xfd\xc2\xbf\xce\xba\xa0\xc5\x88\xb0\xca\xc2\x7d" "\xc5\x58\x6a\xad\x50\x43\x43\x4e\xdc\xc6\xc0\x2b\xf7\x17\x3c\xc7\x71" "\xd7\x3f\x36\x99\x51\xe9\x7a\x0e\xf5\xcf\x2d\xef\xf2\x99\xad\xb7\x5e" "\x56\x4b\x36\x30\xc4\x1f\xc0\x59\xa7\x5c\x66\x1d\xc2\x51\x0a\x3d\xba" "\xa2\x65\xbd\x70\x0c\x9e\x20\x68\x59\x91\x87\x5a\x35\x2a\x80\x83\xdb" "\x75\x60\xf8\x1c\xcc\xec\xbf\xa3\xa7\x44\xce\xdc\xd2\x2e\xfa\x44\x41" "\x40\xe4\xd1\xb4\x4c\xa8\x69\x4a\xe7\xb8\x08\x54\x98\x9c\x39\x31\x73" "\xb2\xfd\x83\x20\xff\xea\x2d\x9a\x20\xa0\x76\x35\x7e\x50\x05\xc3\xc8" "\x27\x80\x8a\xd6\xa5\x2b\x8d\xe9\x96\x8a\x41\xe0\xac\x31\x70\xed\x92" "\xf9\xf5\x63\x0c\x62\x66\x07\x46\xba\xdb\x68\x94\xa6\xad\x22\xb3\x1b" "\xe6\x48\x6c\xd4\x33\x52\x0f\xb1\x2c\x35\xa2\x72\x0c\xc4\xb2\x67\x49" "\xc0\xc4\xff\xf9\x00\x60\xd3\xe5\xc4\xe5\xa3\xea\x01\x16\xe2\x0f\xe0" "\xb5\x40\xb3\xb1\xdf\xca\x80\x9b\x76\xbd\xed\xa4\x28\x86\x67\xdc\x0b" "\x5b\x12\xa0\x17\xfc\x66\x0e\xc2\xf8\x1d\x2e\x12\x3c\x7a\x44\xc5\xa5" "\x08\x0c\xc6\xbb\x82\xde\xa8\xc4\xaf\xdc\x57\x7c\x08\x3b\xfc\x10\x30" "\x57\x5b\x56\x6f\x8a\x64\x5b\x62\x5b\x0a\xfe\x55\x4c\x68\x04\x7c\xa4" "\x3b\x99\xf9\xfc\xe1\xda\xfe\x0b\x8c\x04\xc0\xa9\x6b\x29\x1c\xfb\x57" "\x23\x9a\xcd\xea\x88\xa4\xda\x07\x02\xb2\x8d\xe1\x2f\xd3\x6f\x24\x19" "\x1e\x87\x2a\x1f\x84\xa4\xf9\x92\x2f\x54\xc1\xec\x1c\x4b\x33\x4a\x26" "\x37\xbd\xf1\x7c\x0e\xa0\x2c\x62\x5d\x49\xd5\xdf\xb6\xf3\x79\x9f\xd5" "\x33\xa2\x94\x8f\x4e\xb7\x15\xce\x10\x7b\xef\xfc\xa4\xd4\xbc\xda\x4f" "\x74\xca\xe2\x25\xcd\x2d\x47\xe5\x32\x8e\xa2\xd4\x3e\x90\xbb\x5d\x88" "\x9c\xb2\x55\x82\xa6\xde\xc2\x07\x4c\x2a\x56\xc9\xb0\x85\xda\x58\xd0" "\x4b\x47\xf7\x05\xbd\x20\xd2\xa0\x38\xe7\x40\x47\x99\x5a\x5a\x91\xf1" "\x30\x93\x1f\xc9\x16\xee\x1c\xe7\x1a\x6e\x1e\x44\x8a\x69\x2f\x20\x38" "\x61\x2e\x4e\xc9\x2d\x9a\xa4\x96\xbb\x45\x63\x03\x94\x8e\xe3\x4f\xa2" "\x52\xfd\xff\x78\xc7\x3d\x0e\xa3\x56\x1e\xda\xad\x53\xa6\x87\x17\x29" "\x28\xfc\xc6\xb4\xf7\xc4\x89\x11\x34\x44\xa7\x10\x73\x89\x11\x81\xc8" "\x63\xe1\xb1\x1f\xb9\x1b\xa0\xed\x13\x62\xe3\x13\x73\x8b\xb0\x94\xe5" "\x98\x48\xb6\x68\x6b\x60\x98\x20\xa4\x0f\x2b\xb7\xc0\x6b\x2e\xd2\x5f" "\x88\x34\x55\x0a\x11\xbe\x1d\x48\xaf\x02\x60\xd8\xb2\x2a\xf8\xa5\x60" "\xb9\xb9\x95\x53\x91\x18\xa7\x70\x36\x21\xbf\x4f\x45\x8d\x31\x7f\xf5" "\x94\xff\x5a\xd5\xb5\x4c\x46\x0b\x0f\xbe\xfb\x26\xe6\xaf\xae\xd1\x83" "\xd7\x6f\x5d\xeb\x15\x0a\x96\xe8\xaf\xa6\xae\x08\xbf\x2e\x5c\xf7\x51" "\x2b\xa4\x6d\x15\x34\x17\x53\x0b\xb0\xf3\xd0\xfb\xcc\xfa\x57\x7b\x6f" "\x89\xd6\x7c\x3d\x35\x40\x2c\x50\xca\x7e\x26\xa0\x37\xd6\xe7\x43\xce" "\xd3\xf5\x62\x62\x4a\xee\x7c\x9e\x7e\xdb\x3e\x6d\xc1\xfc\x3e\x69\x2b" "\x93\xb8\x19\xbf\xec\x8e\x59\x3e\xfc\x6e\x56\x14\xab\x7d\xc7\x54\xae" "\x71\x16\xc1\x4b\x52\xd3\xcd\xb5\xa1\xfa\xe2\xb4\x20\xfc\xbb\x0a\x1d" "\xf0\x0b\xa1\x9f\x61\x24\x3e\x94\xf1\x43\x24\xfb\xe9\xff\x18\xcb\x9e" "\x90\x50\xfc\x79\x5a\x9e\x49\x51\x11\x9b\xf1\xfa\xb9\xea\x61\x4c\xec" "\x24\x21\xd1\xf6\x0d\xfb\x77\x76\xc5\xb6\x89\xa4\x43\x78\x5f\x97\x9c" "\x4a\xbc\x48\xe7\x30\xd0\x91\xa6\x3f\x8f\x50\x4e\x60\x50\x29\xa8\x17" "\x13\x55\x97\xe7\x55\x6d\xfa\x08\x61\x39\x07\x70\x37\xf3\x13\xe8\x27" "\xf4\xf1\xca\x48\xaa\xfa\xfc\x4c\x1f\x83\x50\x75\x0c\x68\xee\xbd\xf6" "\x4b\x9f\x8e\x70\x43\xd3\xf5\x3f\xcd\xc7\xc3\x47\x9d\x09\xd7\x03\x05" "\xb1\x97\xe6\x81\x40\xb4\x30\x29\x0d\x61\x69\xa9\x98\x76\x2a\xf1\xa6" "\xc1\x8d\x9f\x5a\x38\x35\x03\xa9\x86\x19\x30\xa0\x05\x86\x41\xe3\x5e" "\xbf\x14\x9b\xd0\x92\xa3\xf1\x6e\x91\x77\x9b\x07\x82\xf8\x50\xc6\xce" "\xea\xe5\x32\x56\x09\x43\x1c\xd3\x63\xf4\x6c\x54\x11\xcc\xf4\x18\x7a" "\x30\xd3\x68\x1c\xf2\x8b\x94\x5b\x47\xac\x03\x00\x52\x27\x50\xc7\x06" "\xd4\xe4\x38\xd8\x48\x33\x95\x78\xb8\xce\xfb\xcb\xdc\xd0\xd0\xe3\x25" "\xa9\xd2\x01\xee\x67\x0a\x98\xe7\xc7\x9b\xd6\x95\x91\x5b\xca\x29\xf1" "\xd0\x6e\xc0\x1b\x71\x79\x70\x88\x12\x6b\x93\x6f\x32\x33\xa7\xe6\xd9" "\x53\x6a\xa9\xf0\x9f\x13\xbf\xea\x01\xd4\x45\x08\xec\xdd\xed\x38\x19" "\xbd\x1c\x6e\xfe\xe9\x37\x03\xf4\x88\x6b\xe2\xfa\x2e\x8c\x93\xa7\x19" "\x55\xa6\x1f\x0c\xf4\x4a\x9a\xed\x26\xcd\x75\x41\x6e\x83\xcd\x87\x19" "\x1a\x6c\x06\x04\x84\xb0\xcf\xb5\x07\x80\x13\x11\x41\xf6\xce\xe2\x3e" "\x7a\x0d\xc3\x95\x11\x86\x99\x42\x2b\x1a\xe8\x21\x99\xa7\x48\x2e\x66" "\x37\xe5\xf6\xd0\xcf\x95\xb5\x94\x63\xbc\xcb\xf9\xa1\xcb\x13\xdd\xff" "\x15\x10\xd9\xe4\xb6\xc8\x3f\x87\xb5\x4e\xa3\x88\xd7\x3b\xb7\xb8\xea" "\x91\xef\x35\x4a\xb5\xa7\xd7\x89\xce\xb1\x16\x65\x9a\x9b\x09\x4f\xca" "\x42\xbf\x3b\x3c\xa0\x1a\x61\x83\xd0\x94\x79\x93\xd1\x95\x3d\xdf\xe8" "\x6b\x4b\x9e\xd3\x9e\xe0\x45\x76\x32\x98\x9b\xf8\x04\xe6\x38\x60\x9c" "\x7a\x5f\x02\xae\x33\x75\xb6\x64\xf9\x42\x0b\x80\x9f\xca\xaf\xb8\x31" "\x2f\x83\x06\xd7\x66\x35\xfa\xdd\x3e\x92\xc6\xcb\xdc\x46\x21\xff\x29" "\x38\x4d\x1c\x17\x1f\x52\x64\x46\x86\x3f\x52\x64\xba\x0b\xbd\xa4\x59" "\x1f\x7c\x55\x6e\xf9\x08\x83\xdb\x06\xea\x4d\xf0\x5f\xdc\x2b\xa5\x99" "\x72\xef\xdd\x10\xac\x63\x31\x7e\x97\x75\x6c\x59\x6c\x01\xb9\xb6\x3e" "\xfc\x66\x57\x6f\xc2\x20\x82\x2f\xb6\x6e\x63\xe4\x9b\xd6\xa0\xbd\x1a" "\xf1\xa6\x76\x59\xe3\x6f\x0f\x8c\xe4\x59\x4f\xb5\x92\xc2\x59\x2b\x6d" "\x59\xea\x6c\x38\x7c\x10\xd8\x3b\xcb\x6f\xaf\xb0\xce\x23\xee\xf6\xf1" "\x08\xd1\x44\x9e\xe7\x32\xb7\x5b\xea\x65\x36\xa1\xd4\x27\x9d\x8c\x73" "\xa8\x73\xab\x02\x73\xdb\xc4\x7b\x33\xce\xd5\xc1\x83\x58\xb7\x19\x34" "\x11\x48\xc3\x65\x8f\xf4\x3b\xb9\x3e\xe7\x24\x05\x11\xa5\x49\xe7\x90" "\x8a\x76\x7a\xe7\x13\xf3\x90\x9f\x93\x7b\x87\x69\x89\xf2\xc7\x8d\x37" "\x9d\x5f\x62\xea\x7f\xa8\xc2\xf8\x72\x17\x9b\x90\xad\xf8\x0c\xae\xc5" "\xe6\x09\x65\xfa\x00\x3f\x4c\x1b\x02\x2d\x49\xb2\xb0\x56\xe3\xf0\x80" "\x9a\xd4\x66\x7a\xcc\xf0\x69\xc2\xd4\xf9\x3d\x90\xa6\x27\x2c\x24\x34" "\x56\x65\x53\xff\x0d\xa6\x50\x7d\x6a\x46\x80\xc2\xec\xf6\xb0\x81\x0a" "\x97\x77\xab\x21\x32\x83\xeb\xc2\xcd\xe8\x00\x01\xcb\x3e\x59\x1f\xfc" "\x05\x24\xc2\xd4\x9e\x29\x7c\x98\xe7\x15\x95\xcc\x7d\x74\x2c\xa2\x3f" "\xde\x69\x76\x29\x79\x88\xfc\xfd\xbd\xb1\x31\xf8\x25\x47\xaa\x17\xdc" "\x8f\x22\x25\xdb\x88\x29\xa8\x88\x61\x47\xcd\xac\xaf\x74\x78\xfb\x38" "\x3c\x64\x5d\x6f\x87\x48\x6a\xb3\x77\xe8\x3b\x3b\x43\x52\x33\x0f\xbf" "\x82\x19\x3a\xba\x64\x2e\x74\x94\xfb\xaa\x86\xdd\x14\x6f\x3f\xbc\xaf" "\xa6\x85\x02\xbe\x06\xe7\x6f\x62\xb4\x35\x20\x56\x89\x77\xfa\x32\x74" "\xa1\xee\x63\x25\x07\x78\xdb\xb5\x0c\x9b\x53\xd5\x59\xa0\x25\xdd\x5d" "\xfc\xa0\xb9\x0c\x39\xbe\xc7\x48\xb7\xb4\x8f\x27\x71\x42\xe7\xb8\xfe" "\xed\x18\xfc\xbd\x6d\x06\x4a\xf6\xae\xdb\xb4\xaf\x14\xed\x01\xa8\xb9" "\x47\xd1\x32\xc4\x39\xd5\xfc\x28\x97\x2b\x1f\x3d\xc3\x2d\x13\x47\xd0" "\xc7\x8d\x6b\x02\x53\xf5\xee\xbe\x2c\x26\x23\xa0\xbe\x2f\x11\xd4\x82" "\x81\x38\x4c\x89\xb8\xf5\xe9\x31\x7c\x3f\x9e\xb5\xab\x19\xfe\x11\x33" "\x76\xb5\xbe\x6d\x7b\x13\x51\x8e\x11\xd1\x0f\x88\x2d\xbd\x1a\x78\x02" "\x06\x34\x16\x92\x94\xb5\x12\x02\x69\x1c\x28\xa3\xc7\x8c\x1d\xfc\xf4" "\xc9\x0c\xf9\xb6\xbc\xd8\x9f\xf2\x48\x7e\x23\x7f\xd8\xfd\xcf\x94\x38" "\xd3\xd7\xfe\x61\x70\xd5\x0b\xc2\xfe\x85\xa0\xea\x92\xbb\x74\xa4\xd5" "\xa4\xdc\xae\x91\x86\xb4\x8f\x17\x33\xf1\x65\x60\x0e\x3d\xaf\x69\x42" "\x5a\x40\xed\x47\xbd\xf2\x1c\xce\x93\xfa\x90\x1a\x63\x70\xe6\x7e\xb5" "\xbd\xd5\x98\x57\x74\x23\x22\xad\x6e\x9a\xa8\x6a\x26\x0f\x76\x26\x2f" "\xae\xf3\xc9\x57\xb2\x93\xc8\x0a\x7e\x26\xa0\x6d\x6a\xc6\x59\x0a\x75" "\xf4\x7d\xf7\x78\x4c\x2b\xfa\x51\xda\x1c\xa9\xb0\x16\x62\x8b\x56\xdb" "\x02\x0b\xcb\x88\xfd\x58\x4b\x2a\x6e\x71\xd9\x7a\x75\x05\xcc\x69\x2b" "\x7c\x24\xca\x69\x0f\x54\x68\x3b\x91\x37\x41\xed\x48\x48\x7e\x35\x8a" "\xc1\x2d\x1f\x50\x82\xa6\x18\x34\x4a\x71\x6b\xce\x24\xd8\x99\x57\x7a" "\x1f\x6f\x48\xb2\x2b\xd0\xeb\xe6\xcd\x4f\x98\xcf\xa0\xbb\x64\x5a\x8c" "\x28\x57\x5d\x17\x1d\x89\x8a\x8f\xea\xf0\x57\x8d\x97\xad\x9a\x4c\xc4" "\xe0\xa0\xc8\x36\x72\x02\xa5\xbc\xe2\x1a\x1c\x14\xa9\x90\x73\xaf\xbc" "\xb5\x39\x93\x36\xef\xee\x97\xbd\x58\x19\xcc\x12\x5d\x1f\xc4\x01\x84" "\x0e\x3a\x31\xf2\x3b\x51\xd5\xd4\xe6\xc9\xea\x44\x99\x75\x81\x7f\x08" "\xf7\x42\xee\x54\x79\xb9\xba\x24\xa7\xb2\x03\xb8\x2d\x3e\x06\x05\x10" "\xe8\x5a\xab\x8c\x32\x43\x42\x29\xe4\x10\x0b\x5b\x1c\x37\x60\xb9\x14" "\xe0\x95\xd0\x71\x79\x0b\x65\xb9\xbb\x0a\x34\x66\xd1\x9b\x20\x6f\xa4" "\x15\xf0\xf8\xb0\xbe\xd0\x67\x3f\x6e\x17\xe2\xe5\xfa\xe3\xa4\x2a\x36" "\x33\xc3\x02\xc1\x40\xfb\x82\xc2\xf5\xc0\x1f\xc4\x70\xc9\xc3\xe6\x8b" "\x5c\x0d\x52\x03\x9e\xf4\xe5\x0f\xa3\x1e\x1b\xb2\x01\x9e\xbb\x98\x58" "\xb2\x99\xb6\x97\x40\xb2\x94\x94\x49\xd8\x46\x9d\x72\x8f\x89\x2d\xa8" "\x9e\x71\x15\xde\x8e\xe1\xf7\x77\xc5\x07\xbf\xe9\x8e\x80\xd9\xb4\xd0" "\x64\xfe\x08\x89\x39\x2e\x51\x70\x71\x19\x88\xb6\x09\x97\x2a\xa8\xf1" "\x55\x25\xad\x2b\xb1\xdc\x01\x17\xaf\x09\x33\x79\x2a\xac\xa6\xee\xbd" "\xd2\x2c\xe1\x96\x39\xbe\xe2\x5c\x87\x7d\x80\x2a\x50\x3d\x13\x54\xbb" "\xa9\x94\x03\x43\x5d\xb2\xae\xff\x55\x0c\x0b\x47\x76\x25\xbd\x22\x61" "\x73\x98\xb9\x12\x4d\x3e\xdf\x13\x06\xe5\x22\xcb\x2f\x86\x10\xbf\x53" "\x3c\xbc\x55\xd4\xd1\xc5\xd7\xff\x5d\x07\xf8\x7a\x11\x49\x49\x80\xe9" "\x7a\x7c\x82\x4b\xeb\x7e\x16\x09\x00\x40\xd2\xcb\xff\x76\x1b\x82\x6e" "\x8b\x58\x31\xdf\xcd\xf0\x00\xea\xc2\xe7\x71\xa4\x8c\x6b\xa8\x46\xb9" "\xdd\xf3\x6a\x85\x80\x99\xf7\x7d\x51\xbb\xfa\xd4\x80\xbb\xa9\x09\x59" "\x05\xd6\x18\xd7\xb3\x55\xe4\x01\x59\xf5\xe4\x8d\xdd\x55\x83\xea\x72" "\x0a\xc9\xc7\x4c\xb1\x18\xc0\x11\xd3\xba\x1c\x67\xdc\x86\x5a\x8e\xea" "\xb8\x66\x7e\x0a\x81\xce\x58\x94\xfd\x88\x8f\xe4\xec\x2f\xf9\x36\xbf" "\xeb\x45\xc6\x6c\xde\x68\x9e\x4a\x4f\x13\xbd\x13\x8e\x7d\xc2\x7a\xa2" "\x63\xfb\x00\x9b\x81\xc2\x74\xbd\x0d\x73\xb3\x53\x85\xd9\x9d\x1d\x08" "\x2e\xbe\x5c\xb4\x1d\xe0\x9d\x27\x4f\xbd\x7c\x1c\x41\x4f\x3d\x1a\xb4" "\x5d\x2e\x89\x49\xcf\xf3\x41\x06\xb5\x74\x71\x01\x44\xcf\x6d\x20\x72" "\xc3\x80\xcc\x9c\x83\xca\x48\xb5\xe0\x57\x97\x3e\x73\xdf\x30\x82\x1c" "\x14\x78\xd2\x1b\xc5\x5a\x46\x27\x27\x26\x30\x62\x27\x1d\x76\xfe\xa1" "\x50\x9b\x36\x5f\xbd\xd9\x2b\x4c\x23\xe0\x88\xf6\x1f\xce\x34\x8b\xa0" "\xe7\xa3\xe5\xde\x60\x07\x62\xc4\x62\xe0\x63\xe7\x49\x81\xf1\x45\x20" "\xba\xbf\xc3\x27\x83\x26\xb9\x54\x19\xd2\x4f\x4e\x48\x53\x50\x7a\xce" "\xa8\xa5\xf7\xe7\x0c\x13\xb3\x1f\x47\xdc\x3d\x82\x3b\x3f\x69\x9a\x02" "\x90\x93\xb1\xcc\xbc\x56\x4c\x3b\xe2\x9a\x97\x4c\xea\x6f\xbe\xcd\xae" "\x3f\x76\x3f\xff\x2e\x65\xbf\xa1\xa5\x27\x42\xfd\xcd\xe3\xc9\xc0\x64" "\x42\x67\x82\x55\x76\xd7\x26\x8e\x2b\xec\x08\xbf\xb5\x20\x83\xdf\x7b" "\x5b\xab\x93\xfb\xf2\xcf\x6a\x8d\x91\xcd\xa5\xa0\x42\x16\xe8\xb9\xd9" "\x61\xa2\x87\x20\x66\x7d\x2a\x1d\x30\x98\xbb\xa1\x75\x17\xb7\x4c\xc9" "\x3b\x8e\x3b\x65\xd3\x6c\x12\xf1\x0a\x7e\x08\x98\xdb\x2e\x1e\x4d\xaf" "\x78\xa6\x69\x6e\x1e\xe2\x21\xcb\x88\x55\x19\xcd\xfb\xe9\x28\x4f\xac" "\xe6\xa5\x25\xe4\xac\x8d\x1d\x91\xf4\x6d\x2d\xc8\x33\x1b\xa9\x0e\x96" "\x13\x94\x77\x18\xbf\x51\x47\x6e\xc3\x70\x2c\x21\x31\x32\x48\xed\xd9" "\x84\xc4\x6d\xf7\x60\xb2\xd8\x3c\xe9\x59\x9f\xa7\x35\x08\xd1\x2f\x60" "\x6d\x46\x43\xc2\x5c\xa3\x8f\xb9\x7f\xa4\x3d\x22\x9a\x81\x31\x33\x20" "\x11\xfa\x87\x76\x3a\xe1\x0d\x48\xc5\xe2\xbe\x89\x14\xc1\xd4\x0d\x3e" "\x53\xe5\x2f\x80\x38\x04\x76\x9e\xdb\xac\x0e\x30\x95\x90\xe4\x13\x19" "\x82\xde\x1b\xaa\xe6\x1f\xf0\xf1\x44\x3b\x95\x34\x4c\x48\x8a\x7a\x7f" "\x4e\x0b\x30\x34\x40\x0b\xdd\xc2\xec\x44\x7a\x40\xa3\x6d\x01\x7b\x2c" "\xab\xa9\xbd\xa7\xf0\x3f\x8c\xdd\xcc\xee\xca\xfa\x55\x68\x20\xff\xd3" "\xc0\x72\xef\x39\x4a\x3d\x80\x9d\x78\xf5\xef\x53\xf5\x7f\x72\x01\x2b" "\x60\xee\x76\x94\x0b\x3a\xad\x36\xc7\x62\x49\xa3\x71\x66\x9d\xdb\x0d" "\xa3\x22\x7b\x89\x3b\x99\xa3\x55\x14\x3c\xab\x5c\xfc\x71\x76\x58\xb1" "\x41\x33\xaa\xf0\x02\xea\x49\x7b\xd7\xdb\x4d\x8f\x1b\xbf\x99\x34\xa5" "\x57\x77\xab\x88\x60\x38\x49\x2a\x93\x4b\x1a\x2a\x2c\xce\x48\x97\x1a" "\xb9\x3c\x78\xfe\x4d\x45\x10\x9e\x5d\xb3\xc5\xc2\x76\xcf\x99\xa3\xcd" "\x49\x70\x23\xbb\x2a\x19\xb6\xa1\x86\x32\x5f\x72\xd2\xd2\x02\xff\x02" "\x01\xca\xa6\x7e\xd9\x90\x1a\xfa\xe6\x78\x57\x9f\xd3\xfc\xe2\xf5\xbf" "\xae\xd4\xa5\x4b\xd2\xdb\xb8\x24\xf5\x1d\xfe\x17\xd9\x98\xb0\x52\x6f" "\xa8\xdc\x59\x6a\x80\xf0\x97\xc4\x6c\xe3\x8f\x5e\x92\x7a\xce\x3d\x0d" "\xc9\x0b\x90\x92\xd6\x19\xb7\x1e\x36\x42\x1f\xe0\x86\x96\x81\xcd\xb5" "\xe3\x85\xb7\x94\xe9\xed\x34\x93\x21\x63\xff\xc6\xb8\xd2\x1e\x88\x2b" "\x1f\xf0\x0c\x7f\x3d\xb4\x20\xb8\xee\x19\xc7\xc3\x8e\xc3\x19\x2d\xe3" "\x0d\xc3\xe5\xd0\x1f\x57\x21\x34\xc1\xb2\x5b\x08\xf7\xcd\x15\x26\xfe" "\x4a\x97\xc1\x10\x8c\xd8\x49\x50\xa1\x1d\xc6\x97\x55\x1b\x40\x1c\x41" "\x86\xf2\xd1\xe4\xcd\x21\xa2\xb4\xfa\x43\xec\x6c\x4a\xf0\x9f\x80\xbd" "\xad\xeb\xbf\x12\x1a\xd2\x33\x9f\x6b\xac\x80\x8f\x3a\x99\x64\x51\x61" "\x32\xc3\xb3\xd8\x75\x6f\x22\xf7\xb7\xb8\xa8\x69\x5d\x30\x29\xc4\x5e" "\x33\x5c\x77\x94\x5b\x8a\xe7\xec\xa9\x64\xb7\x7a\x04\xa1\x69\x5d\x65" "\xc4\xf4\x53\xf1\xcd\x3f\x6d\x85\xba\x40\x76\x4f\x02\x00\x71\x65\xf1" "\xfb\xa3\xb2\x8d\x23\xf8\x85\x34\x99\x51\x19\xc8\x69\xa2\x0d\x48\xc6" "\x7f\x79\xdd\x1d\x25\x90\x42\xdd\x82\x26\x73\x29\x05\xde\x52\xee\x1a" "\xa5\x70\xff\x4f\xa7\x32\xd8\x6c\xc2\x0a\x11\xda\xce\x7d\x65\xfd\xf1" "\xd2\x6b\x58\x38\x4b\x7f\x31\x5d\x11\xcf\x32\x31\x00\x75\x84\x02\x5c" "\x3d\xd9\xf2\xd5\xe3\x8d\x7c\x2e\x3b\xad\x6a\xc8\x52\x67\xd3\x16\x25" "\xdb\xbb\xce\x63\xe9\x89\x88\x72\xf3\x8a\x30\x3f\xd6\x38\xe4\x3c\x5c" "\xef\xeb\xd7\x19\xe8\xef\xe6\xb2\x07\x5f\x91\xcb\xc6\x2c\xbb\x65\x79" "\x42\x00\x16\xac\x02\x16\xb6\x67\xae\xcb\x71\x95\xda\x4c\x4a\x36\x47" "\x7c\x66\x5f\xcf\xef\x6a\xd5\x51\xea\x36\x06\xa1\x47\x52\x30\x11\x8d" "\x95\xe6\x00\xcf\x2a\xbe\xff\x56\x3d\x92\xe1\xbc\x75\x3d\x10\xd7\x82" "\xa1\xd9\x51\x40\xb5\xca\xfa\xe4\xd2\xd3\x50\xe7\xa8\x4f\xa3\xb6\x57" "\x23\x94\x3a\x97\xc6\x8c\xab\xb7\x76\xce\x50\x2a\xbf\x2f\x1f\x1f\xb8" "\xc1\x24\x8a\x9b\xbf\x29\x03\xc9\x30\x4f\xbf\x9a\x12\x19\xb4\x0f\x37" "\x81\x23\xb5\xf8\x13\x0b\xa3\x6f\x3f\x42\x33\x27\xb8\x69\x60\x5d\x05" "\x6a\x10\x1f\x64\xd8\xd6\xca\x8b\x59\xaa\xe0\xe3\x25\xae\x5e\x11\x4e" "\xa5\x50\xd1\x1f\xdf\x98\x3a\xc2\xee\xdb\x40\x4a\x10\x92\x9e\xab\xaf" "\x2f\x7c\x40\x2b\x82\x12\x4c\x7b\xb3\x0b\x53\x44\x29\x58\x18\xa2\x53" "\x01\x2d\xaf\xa4\x7f\x6f\x34\xb4\x43\x1f\x01\x80\xcc\x28\x59\xdb\x29" "\xb3\x49\xc6\x13\x8b\x53\x8f\xd4\xde\x38\x63\xc2\x1c\x01\x28\x56\x00" "\xdc\x1c\xe7\x30\x13\x99\x0e\x4c\x1d\xaa\x03\xd7\x88\x78\x20\x0c\x63" "\x95\x86\x03\x86\x20\xfd\xb7\xa9\xfc\x84\x44\x85\x81\x8e\xdf\xd2\x63" "\x6a\xec\x5a\x2b\x16\xaf\x4b\xff\x42\x8d\x2d\xfe\x89\x47\x5c\xa0\x67" "\x76\xa6\x8d\x5e\x4b\x47\x61\xb9\x85\x09\x5e\x94\xcd\x91\xd3\x3a\x3f" "\x0a\x5d\xfb\xfc\x25\x5a\xb5\x89\x64\x91\xc0\x30\x44\xaf\xf1\x95\x08" "\x23\x35\x8b\x54\xed\xee\x81\xaf\xea\x9b\x88\x76\x4a\x24\xac\x9b\x91" "\x7e\x2c\xab\x6c\xb2\xba\x1c\x91\xd1\x0b\xd0\xef\x86\x81\xce\xa3\xad" "\x9c\x59\xf7\x88\x82\xd4\xaa\x80\x7a\x53\xa1\x06\xca\x2d\x07\x38\xa0" "\x44\x57\x27\x5c\xfa\xc6\x53\x63\x8a\x94\x57\x7c\x4a\xb0\x3c\x9e\x5d" "\x6d\xe1\xdc\x78\xb4\x87\xec\x91\x8c\x4a\x7c\xa2\xa8\xd6\xff\x85\x2e" "\x8f\xa2\x57\x76\xaa\x6f\x13\x9a\x3c\x54\x69\x32\x71\x50\x2b\x71\xea" "\xdd\xb4\x61\xc1\x81\x9f\x6d\x20\xa7\x9a\xc7\x22\x6a\x17\x7f\x42\xdf" "\x6f\x47\x05\xcc\x62\xcc\x04\x84\xb2\x8e\x5c\xfd\xf7\xfc\x52\xb0\xc5" "\x82\x62\x1b\xac\xd7\x03\xa2\x87\x14\x17\x5d\xb5\x76\xec\x0b\xf0\x17" "\xc3\x24\x24\x67\x5d\x28\xd9\x92\xe4\x6d\xe4\x60\xb3\x28\x9f\xee\x37" "\xb4\x9b\x35\x6f\x78\x42\xcd\x94\x76\x47\x95\xc8\x87\x11\x54\x19\x23" "\x40\x49\xa2\xa2\x70\x8a\xe8\x2e\xfb\x8f\x10\xf5\xd2\x2c\x2b\xae\x2f" "\x5c\x1a\xbb\x9c\xd8\x39\xc6\x21\x4b\x0a\xcc\x0b\x04\xfb\x6c\xfd\xf7" "\xf3\xad\xca\xdc\x51\x89\xd8\x50\xdd\x95\x7c\x47\xa4\xf9\x46\xac\x47" "\x9a\x4e\x12\x4f\x69\x5d\x22\x2f\x37\xea\x07\x50\x66\x38\xe9\x0b\x86" "\xbf\x3b\xbb\x0c\xcb\x57\x8b\xb6\xfe\xe8\x94\x1d\x6e\x1d\xa1\xc7\x79" "\x96\xa0\x64\xc6\x01\x57\xb6\xd4\x17\xbe\xb1\xad\x52\x05\xf2\x10\x85" "\x1a\x07\x9f\x9e\xf6\xe3\xfa\xf3\xca\xb5\x48\x2c\xdf\x71\x59\xe7\x8b" "\x9d\x82\x0c\xfe\xe7\x14\xa0\x70\xad\x35\xb9\x1b\x49\xcb\x43\xb4\x3b" "\xb7\xfb\xbf\xd5\x27\x6b\x5c\x2e\xb0\xd4\xca\x9f\xf9\xb1\x0f\x0b\x8e" "\xc7\x42\x33\xc7\xae\xbb\x29\x33\xe4\xbd\x5b\x0a\x38\x8e\xd6\xce\xaf" "\xed\x8e\xf9\x95\x09\x8c\x2b\x88\xd7\x4d\x2c\xeb\xd4\x4b\xa2\x6c\x27" "\xb5\xd8\x98\x33\x94\xd2\x86\x15\x6f\x4b\x50\x1e\x45\xfe\x52\x17\x09" "\x6b\x1b\xfe\x7b\x9b\xb3\xf6\xc3\xb4\xd2\xad\x15\xbf\x1c\x86\xed\x70" "\xee\x85\x2c\x4c\xfb\x97\x9e\xb4\xa0\xc8\x26\x95\x37\x99\xa2\x03\x03" "\x22\x66\x93\x64\xaa\x90\x50\x92\xfb\x45\xcb\xea\xca\xc4\x47\x03\xc7" "\x0d\x7e\x27\x8f\x1a\x59\x26\xf2\x42\xd4\x59\xe3\x6d\xd8\xe3\x74\xf9" "\xbb\x7a\x0c\x90\x7d\xb1\xd4\xf8\xc1\x99\x3a\xc0\x24\x4f\x6d\x56\x30" "\x41\xa8\x95\x6e\xa8\x2b\x7e\xef\x7a\x63\xac\x20\x0d\x32\xab\x10\x7d" "\x67\x28\x61\x0e\xfc\x53\x0a\xa5\x78\x37\x71\xa5\xfb\xed\xbf\x5a\x37" "\x9b\x29\x23\xf0\x88\xcd\x20\x3e\x31\x5f\x41\x07\x2d\x83\x20\x1a\x1f" "\x1f\xce\x87\xd8\xb7\xcf\x2f\x14\x2e\x1f\xf5\xf8\xb2\xf5\x20\x28\xe8" "\x76\x4e\x49\x60\x4b\x46\xdc\x37\x63\xf7\x90\x15\x18\x3f\x60\x1e\x26" "\x34\x66\x06\xe2\x2c\x24\xe1\x83\x3b\x27\x55\xaf\xa2\x85\xfe\xb8\x33" "\xd3\xff\x3b\x91\x08\x46\xa9\x6e\x02\x80\x70\xf9\x25\xa6\xc6\x40\xd9" "\x95\x6c\x85\x23\x67\xe8\x9c\xa0\xdd\xa2\x6a\xd3\xc2\x2f\x3c\x63\xf8" "\x7c\x49\xf2\x1e\x62\x36\x32\x73\x57\x90\x59\xec\x88\x64\x39\x43\x81" "\x6a\x0a\x20\xca\xa0\xd9\x7b\xb1\x0a\xa5\xf1\xda\x88\x2d\x42\x2b\xee" "\xfc\x5f\x59\x12\x86\x36\xd8\x51\x42\x77\x83\xf1\x63\x9d\x25\xaf\x11" "\xd0\xbf\x7e\x88\x10\xf2\x30\x40\x74\xf0\x71\x0b\x82\xa1\xf8\xfe\xa2" "\xf7\xda\x16\xb8\x96\x78\x3a\x46\x8a\xa0\x4e\x55\x24\xd9\xf1\x18\xae" "\x73\x35\x01\xcf\xb9\x13\xc3\xc2\xe3\x27\xb7\xb5\xc8\x7e\x25\x08\x84" "\x66\x7a\x9f\xcf\x29\xe2\x7c\x90\x09\xc2\x17\x38\x53\xb5\xdd\xaf\xd7" "\xc6\xbf\xff\xbe\x1e\xda\xae\xcb\xf5\x13\x4a\xff\x42\x87\x6a\x19\x2e" "\x34\xe3\x2f\xaa\x86\x05\xe1\xf5\xdc\x85\x53\xc3\xe4\x31\x56\x12\x6d" "\xa5\x40\xba\x46\x7b\xe0\xb3\xbe\xce\x18\x26\xa8\x5a\x96\x23\x2f\xd3" "\x7a\x68\xbd\x9a\x38\x1e\x96\xa7\x4f\x85\x79\x65\x47\x77\x25\xc2\x8a" "\xa9\x08\xfc\x83\x67\xc7\xc4\x02\x40\x59\xcd\x24\x54\xcd\xb0\xbd\x00" "\x21\x3d\x70\x94\x6b\x17\x51\xe1\x33\xcf\xf4\x88\x09\xc6\x09\x3c\x6f" "\xb0\x0d\xb7\xe4\x77\xa8\x6c\x85\x7c\x81\xd3\x9d\x49\xf1\x97\x4d\x21" "\x91\xf5\x2f\x73\x7c\x0f\x97\x10\xa6\xeb\x8b\xf6\xb8\x61\x61\x93\x0b" "\x31\x21\x23\x84\x0c\xfc\x06\x0a\xbd\x7f\x69\xe3\x6a\x63\x93\x03\x65" "\x50\x32\x1d\x09\xdc\x13\xe4\x84\x79\x4a\xa0\xde\x07\x8f\x03\xd8\x39" "\x64\x64\xfe\xeb\x7f\xe8\x05\x5b\x23\x63\x8d\x7d\x78\x0a\x39\x40\x13" "\x03\x9d\xd0\x06\x48\x40\x51\x21\x1c\x86\x2b\xbf\xa8\x5e\x5c\xfb\xd7" "\x7d\x2c\xed\x2f\x5d\xdb\x92\x29\xf1\x83\xfc\xff\xd2\xc5\xd5\xbf\xac" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x2000000000c0 = 0; *(uint64_t*)0x2000000000c8 = 0; *(uint64_t*)0x2000000000d0 = 0; *(uint64_t*)0x2000000000d8 = 0; *(uint64_t*)0x2000000000e0 = 0; *(uint64_t*)0x2000000000e8 = 0; *(uint64_t*)0x2000000000f0 = 0; *(uint64_t*)0x2000000000f8 = 0; *(uint64_t*)0x200000000100 = 0; *(uint64_t*)0x200000000108 = 0; *(uint64_t*)0x200000000110 = 0; *(uint64_t*)0x200000000118 = 0; *(uint64_t*)0x200000000120 = 0; *(uint64_t*)0x200000000128 = 0; *(uint64_t*)0x200000000130 = 0x200000000200; *(uint32_t*)0x200000000200 = 0xa0; *(uint32_t*)0x200000000204 = 0; *(uint64_t*)0x200000000208 = 0; *(uint64_t*)0x200000000210 = 0x1000000000000002; *(uint64_t*)0x200000000218 = 4; *(uint64_t*)0x200000000220 = 0xfffffffffffffffe; *(uint64_t*)0x200000000228 = 0xfffffffffffffffe; *(uint32_t*)0x200000000230 = 0xfffffffb; *(uint32_t*)0x200000000234 = 2; *(uint64_t*)0x200000000238 = 0x1000000002; *(uint64_t*)0x200000000240 = 0xb; *(uint64_t*)0x200000000248 = 2; *(uint64_t*)0x200000000250 = 0x40000003; *(uint64_t*)0x200000000258 = 0xfffffffffffffff7; *(uint64_t*)0x200000000260 = 5; *(uint32_t*)0x200000000268 = 0xfffffffb; *(uint32_t*)0x20000000026c = 4; *(uint32_t*)0x200000000270 = 0xfd55; *(uint32_t*)0x200000000274 = 0x8000; *(uint32_t*)0x200000000278 = 5; *(uint32_t*)0x20000000027c = r[2]; *(uint32_t*)0x200000000280 = 0; *(uint32_t*)0x200000000284 = 3; *(uint32_t*)0x200000000288 = 0xfffffdff; *(uint32_t*)0x20000000028c = 0; *(uint64_t*)0x200000000290 = 0; *(uint32_t*)0x200000000298 = 0xe; *(uint32_t*)0x20000000029c = 0; *(uint64_t*)0x200000000138 = 0; *(uint64_t*)0x200000000140 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004380, /*len=*/0x2000, /*res=*/0x2000000000c0); break; case 7: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // flags: open_flags = 0x60a41 (4 bytes) // mode: open_mode = 0xb3836f6d7a15f29 (2 bytes) // ] // returns fd memcpy((void*)0x2000000013c0, "./file0/file0\000", 14); inject_fault(13); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000013c0ul, /*flags=O_TRUNC|O_NONBLOCK|O_NOFOLLOW|O_NOATIME|O_CREAT|O_WRONLY*/ 0x60a41, /*mode=S_IXOTH|S_IXGRP|S_IRGRP|S_IRUSR|0x5e00*/ 0x5f29); 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; }