// https://syzkaller.appspot.com/bug?id=ed37ff7af4f0cc3ebbad64f58ac3fdd223b42e5f // 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 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 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 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"); } #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); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {03 68 4a 7b 99 a4 fd e9 40 f3 ec 0d 10 5e a2 c8 26 73 23 11 // 71 53 aa 4a 4f 09 9c 38 35 a6 07 cd 5c bd 77 b8 3c c3 3d 13 bb b6 c6 // bc ae 59 db 73 9a f8 4a 4b 5d 34 bf fc 14 5f 3c c2 7e d3 d4 f9 d9 b3 // 10 36 99 a1 e1 cc 4d df b6 c1 af d0 7d df c1 8e 35 8c d6 26 49 47 97 // 24 ce 86 7f ef c0 a1 50 41 be e9 f6 08 48 42 fb 98 2d 5c 2c f1 48 8d // 66 8b 74 1c 64 f0 a6 fd 26 43 e7 29 ac 5a 56 46 2a 6b 64 d5 a0 a7 51 // fd a4 fa df 63 ba 0d c2 fd 14 ec bf 54 69 18 db 77 09 55 45 b4 1a b1 // 70 e5 d6 e8 ec 8b f9 ce 9b 8d 53 b8 32 e9 0c 70 1f e5 2a f7 99 9f 8f // d5 09 57 7e ad 1b e2 78 91 ad a8 56 41 67 f2 c7 d2 ee a1 c1 c9 c6 5d // 8e 15 1c 58 dd ee 43 ec 34 e7 4d 33 0e c5 0c bb b2 bb 21 89 2c 7c a9 // 95 06 6e 3c be a8 a6 9d 94 dc 6b ce f5 f3 c0 ef 63 0e 77 4d 09 2e a5 // 86 27 f3 e0 9c 66 a9 c7 d1 ab cf 4f 8f 8a f8 7f 42 69 df 28 8a ca 9b // bf 75 82 75 ce 96 95 25 6e 76 4d 18 5a 91 a7 57 0f ca 3a ab 16 c7 5e // ca ff 6b 8d da 37 1c 32 26 d6 ec 6e 55 c5 c4 d8 cf c5 c3 38 92 ba cc // 95 6a 36 13 bc fa 84 9d a1 b5 e0 70 a7 91 1d 74 88 b3 e6 28 d9 33 97 // 18 e8 b8 21 f1 bb 5d 5c 45 f0 31 6b b5 63 d0 a4 42 80 14 12 df d5 a4 // d6 1c a6 57 e0 4d 66 86 f7 d5 86 3d 57 95 44 00 ae ee 8e 79 be 8f 3c // c4 cb b3 d4 b9 12 69 df 03 9c 3d 35 43 e5 00 b9 0a 2b dc 6e b6 0c c7 // af ab 7b 51 87 d8 8f bd 76 e6 21 2e a2 9e 87 2b 73 f9 25 28 7b dc 80 // 8b 4a 4f 8e c7 f8 aa 08 bc 90 b2 9e 21 7c 3e ef 69 d8 de ae 41 41 f4 // f9 bd 11 0b 7b de 93 20 e7 b4 5f 42 2e 9a 61 11 bc af 99 c9 91 1e 46 // e2 19 d3 ba b4 77 92 6b d5 d2 e7 8d 4c d0 ec a1 33 c2 32 b1 e8 63 fd // 77 99 db f6 09 f3 67 0b 32 3e 55 18 e8 f4 bd 36 e9 b3 da 2c 68 a2 8e // ae c9 ca c6 88 b4 dd 0b 73 ad c2 4a 8c 7a cc 26 43 99 b7 fa cb c2 f4 // 3e 8e 40 b6 ca e9 f8 e9 56 d1 db fe 25 9f 12 ba e7 5a d3 62 c3 54 05 // 0f fd d6 e9 54 f2 d7 61 5f af ce 88 8b d6 f6 72 a8 1c 9f d4 31 8c ab // a7 65 06 9c 0a 42 5e 89 8b f7 61 1b 77 f0 fe 61 c2 7d 31 81 59 db a4 // 2f 01 19 00 24 6c 64 55 7d 27 b7 7a ef 92 8a b0 4a 14 7b ac a3 78 63 // cf 99 8a 2a c3 0b 90 3c 03 14 44 9d db 21 88 87 c3 09 ec 71 84 c8 c7 // 33 f5 d4 e7 b2 d7 95 16 e9 53 1c 9a 5b ec f8 29 4d 6c cd 77 7f 28 5b // 13 16 0e 1c 94 9d 30 69 c6 c6 6c 0d aa 62 ba c6 79 bc 9b 69 82 53 98 // d1 c2 90 d7 65 e8 82 fa 2c 87 08 b2 0c ce c8 85 ab 67 85 dc 22 69 6b // 61 c1 09 ff 84 bc 54 07 93 2c 3e 5b f1 20 69 a6 8b 8e 33 33 a2 6d 3d // d3 90 ef 9b c0 1b 86 01 3f bc b5 c2 8a 1f 4d 2b 80 84 f1 50 2f cc c4 // 02 7a 12 4c 36 29 d8 f4 a8 be fd 14 b5 97 ce bd a5 f9 4f 36 05 0a 31 // b9 50 87 cb ac 34 77 88 a7 1a 90 e8 7f 21 87 fa e6 00 aa 42 71 9c 05 // c2 85 9c b3 0a e0 fd 58 a7 bb a6 81 f7 a6 02 7a 00 58 30 71 de f2 c9 // a9 44 56 e5 d9 ac b9 fd 2d 11 fd ea 52 45 82 48 9c 02 37 7b f7 f5 90 // 94 89 85 c7 69 b3 82 2c b6 36 66 81 d7 91 13 c6 a6 c7 52 f2 47 5c ab // a7 7b 7b 2e 8f 29 3d 7f d9 b9 91 f6 3e 25 4c 98 de c9 4f 4f 3d ef 4f // ee 9c db 56 ff 3b a7 fe 6a 71 8c be 9a 7f 04 71 0e 25 7e a8 a4 9d 66 // 05 26 60 48 fc 12 2d 4f 31 73 d4 b0 4b 3e 28 2b d3 c5 19 8d 7f cb 72 // ec 38 e0 b0 7d d8 a5 41 b2 80 7e 60 1e 5a 0a 01 f0 7a 28 1e 0e 1a 26 // 1c 65 97 70 88 a5 45 97 ef d0 99 7c 59 64 7a ee bb 26 05 a8 97 05 ee // ff 3e c7 80 e3 02 e2 4b 23 a0 cb e4 f8 13 67 c3 f1 18 54 5f 01 32 8d // 22 eb 8e 80 26 67 38 91 43 16 6a 9d b9 47 7c 9b 58 eb 5c 76 a1 9b 8f // 8b 26 92 b0 d3 56 00 3f 08 ae 54 df c8 20 d8 e3 57 ec bf 91 fb 7e 21 // 2c be f1 26 21 71 ab af 2f 61 3a 5b b5 9b 78 3c ad 47 6f ec 50 d1 6c // a0 ac 13 c0 8a 59 a3 09 7e 6e 3f de 70 0a 4b 98 7d 10 31 1f c2 2d 4a // a2 10 95 6c d8 59 79 9f 78 01 0e 4c 0f 25 b7 15 87 6a a2 53 df 15 00 // 94 90 f7 1b e3 b0 02 28 75 16 1f 53 7c 70 b1 4b db 9e 2d 87 a5 a1 1b // 41 4a 11 98 53 3c 7d e6 fc 4d 22 22 81 33 bc 26 b1 9d 9f 1e 76 27 b1 // 4c 72 e3 c3 9d 3f a2 18 6a 42 e5 0a 0d 18 67 dc 31 2f 94 c7 20 9d 51 // 47 5e d4 aa 80 b2 cc b0 55 7a 40 42 2b f7 31 7d e2 fd f3 29 67 27 72 // 3a 2d 23 ba bd 5e 23 f7 c3 ed f4 94 2b b4 85 b9 5a 12 2e 6a ba 41 b8 // f8 0f 68 4f 84 60 54 62 44 8d 5a 4f d6 6d fe 9b bf 80 59 0b 99 99 b4 // 78 0d 4f 4f 18 9a 20 f4 40 0b 29 75 df 85 b5 84 c8 c8 f9 fa 30 95 f1 // 3a ed e1 f5 2d ac 98 be 35 8b 0a 0d 72 be d4 df 71 cd 23 97 3e 32 61 // 79 58 02 68 c4 e5 d1 be 4b 2a e2 e1 e2 db a9 13 99 8f aa 60 88 af 12 // 8f c8 fd 3a e2 62 03 a8 98 88 2b 67 d8 6d 63 f6 ee 8f 8e 21 63 37 33 // 0d b6 d9 28 fa cf 9d 0c a2 73 84 5e e5 b3 3a 0a 13 6a eb 48 b7 c5 2d // 3b 95 fe 73 ef af 06 19 7e c8 75 3e e0 34 9f 19 db 87 30 91 7d 0f 18 // a2 de 96 02 d3 b8 87 bc 58 3f f6 4d fe e6 7e 2b df 4d 5c c1 c3 41 b8 // 9a cd 3d d5 17 6d 2c 15 ec 2a 77 12 0b 8a 49 59 1c a4 38 ae 36 c5 28 // 45 e5 dc a5 50 e5 39 da 9b a2 a2 ed a4 9b e3 16 f3 d6 d4 b7 c8 36 66 // bd 47 59 94 03 47 c2 9d ed d2 73 ad ac 72 26 30 a9 40 e1 04 31 6b 48 // 06 55 3d ed 47 13 2b e4 e3 1a 50 60 0f 5a 4d d5 68 25 b2 45 b7 aa e8 // 53 f5 6f 79 e0 ec 31 f7 b5 db 94 5e e3 bb 92 86 5a cb 0d 88 28 59 8e // 77 44 6e e5 0e cd 8b f5 e7 cc bd 96 34 45 a0 9e 3b e2 15 70 9b 0b 3b // ff 2e 9d 12 e6 54 99 24 33 8f 23 6b 4f f9 73 68 2e 2e 03 fb f6 b1 67 // e3 b3 a0 f8 c3 f3 c1 e8 d0 e2 1a 71 93 7c 91 8c ab ab 50 dd 74 c0 11 // a1 a5 53 1c fc f8 8a 5d f5 fa 58 f1 77 15 f7 c7 b3 a6 4d 9d ab 6f 20 // a5 96 28 89 69 19 14 20 ed 71 da cc ba e7 c1 ec 88 bf 74 81 1b 5e 1f // 4b d3 06 f3 d8 10 c4 f3 60 0d f2 90 3f fd f8 db 40 ac 71 53 fd 93 32 // 7a 10 65 cf 2c 45 90 c8 ba 9f 93 91 eb 6a a6 00 cb 42 af f8 79 3e 47 // 21 af eb 3d 47 0b ed a4 5d ad 9a df c6 f4 fd b2 4e af c6 37 92 f5 01 // 5c 65 6c a3 7c ee 82 b7 ee 38 2b da 31 d7 86 d6 e0 3d 4c 86 11 c4 ca // 46 4e 23 60 ca 74 78 15 c9 ee bd 38 c8 fc 7d 5e ea 2d b9 6b 29 d7 71 // a9 6d c5 c8 84 02 90 77 12 5b cc 31 98 05 64 55 5d 21 ec ce 5d 03 88 // e1 bc 1e 61 8c 7d fb 31 b0 2b 1a 67 30 db 7e da 38 7d d4 ce b9 6f 65 // 17 8b b0 88 e8 11 33 e5 08 6f 73 c4 58 f8 41 39 68 5e f9 30 94 5a 51 // 97 9f ae ab 53 9e 49 64 24 47 09 dc b8 b3 8f 57 5d 3a 3e c1 32 8a 0d // f6 5f b3 42 41 db 7c b3 25 0b 8a e0 db c4 46 70 d2 b5 cc 3a 17 85 d8 // d2 81 c0 52 56 ef 2b ee e3 b2 02 d8 bc e0 53 e5 5c e1 fb 2b b2 08 e6 // 5d 48 8a e2 44 84 b0 0c 2e 34 3f c3 54 4c a5 46 40 66 88 02 2d b6 e2 // 9c ec a9 53 9e c0 95 a2 a2 cf c5 f5 16 23 0f 75 fc 96 1c 5d e1 e8 d3 // 32 22 33 1f 57 db 02 ca c5 f9 20 80 29 c6 11 4d 04 1b b1 cc 7f 95 9f // 77 51 1f 57 90 a5 64 60 0c 01 8a fc 25 3e 5e cd 50 10 bd 76 9b 45 a0 // 42 96 ca 09 e8 7f b6 3b f3 d3 b5 1d d8 b3 f6 d4 42 6a 03 c0 94 4d 09 // df f6 54 c5 71 8a b1 fe f0 63 ca ba 34 02 9b e6 81 15 02 e8 bb 78 50 // 11 dd 1e 34 b0 c1 92 91 5a de eb 40 fa ad 07 25 a8 f9 a6 2a cf 61 b9 // 44 a2 71 d2 05 67 f3 50 cd ee 22 d7 6e 3c c5 96 6b a7 42 d9 c4 38 23 // af 19 ba 74 c6 0d a0 df 0c 5f 4e 7e 26 af 72 24 14 77 74 a1 f8 ae 09 // f9 29 06 6e 17 69 ff b3 c4 0b a9 fe d1 3d 26 70 b9 e8 65 a1 55 42 6e // d5 c8 36 48 c0 ad 34 e4 6f 53 08 b4 55 e0 83 57 30 fe 52 96 68 b6 06 // f3 f5 2b 0d 04 53 4d 0e 14 bc 0f f0 f7 42 35 95 50 e6 98 0a c9 97 84 // 55 ad b3 de 0f 29 2a f1 2a 37 00 45 3e 03 5a 49 ea fe 98 fc 0d 7f 26 // e4 2a 6c 41 f3 80 44 86 07 b7 c9 62 91 f9 8f a6 bb d7 e3 2c 24 9a 49 // 17 1f 8f a8 17 62 a4 90 a1 ce 5c 39 d6 6d 35 c6 ed 6c 06 79 44 0c 06 // 19 7c 2e 24 d4 8e 1d e8 1c 71 11 64 c0 28 20 81 6a fb 53 93 d3 d6 c8 // 01 c3 c0 62 ac 46 d1 49 4f 52 c4 5c a3 6f af 94 89 4e ec 9d 71 e1 be // 6c 72 56 f4 ae e8 dc 08 01 56 b2 86 23 c8 21 ef 8d 18 26 eb f0 a4 13 // 32 62 0f 42 58 92 70 e1 42 56 13 74 c8 25 e8 28 e2 bd 9a e4 1f d3 49 // 59 db 48 31 9d 54 ff e7 a1 b5 8a e8 f7 36 1c ba ee 8e 26 e0 e7 e1 b7 // f1 25 f8 cd 99 78 88 25 ef d0 1c 38 ec 98 79 04 19 0a 0a d5 2b c2 0c // d3 6c c7 20 9f 92 69 ac 87 b2 fa 44 d2 45 66 61 d3 05 6d 89 3c f9 12 // c6 9a e6 b2 b8 3d 0c 78 1a 6d 6c 33 df 19 10 86 7b 71 25 7a b7 4e 24 // 4e 3e bb ac 07 44 50 69 41 8f e2 e4 40 a3 84 e1 6f ee df 8e 31 65 67 // 6e 67 86 64 30 eb 6a 8a 53 34 62 0d 8c 2c da 15 b0 32 8b b0 c5 06 30 // 88 63 53 f9 52 41 cf 4f 3b 64 7a 4f f8 12 c7 0e 1b 07 4c 4b ef dc 70 // fb fd bf 86 8b cc 81 65 20 34 b5 bf a8 31 f1 b6 86 72 40 46 dc d1 7a // c9 1a ce 83 71 1e 9e c7 46 5d 14 c9 d5 08 bc e9 36 76 a5 8e f7 da e3 // 72 21 43 68 65 ad 34 ac 2f d6 91 e3 b3 e1 2a ee 67 36 db de ec 9b 1c // 05 fc ed f8 b9 ce d5 47 25 9a 1a 40 47 1e be 8b 4b fd a6 9d 2f 88 4d // a0 25 e2 80 9f b9 f1 59 15 0b bc b3 31 ca 3c 50 20 12 a7 fe 76 b4 fc // 27 71 97 6a eb 62 4a d7 f2 d7 2c 70 7f 5f 19 d8 de d8 45 81 ac 5a fa // 69 7f f9 9d 27 d8 8c 95 88 fe 76 98 39 c9 cc 9d 67 86 a0 f8 14 66 75 // 27 c5 3b 62 53 b1 82 5b fe 17 e7 d7 34 d9 6d 61 da 0a e7 34 9d 09 22 // 77 4f a9 b4 ba f3 32 a4 56 8e 32 ca fa 41 7e c6 59 c4 ad 72 cd 65 6a // 1e 2c 59 c8 de e3 88 90 ed 3a cd 8b 4f 86 57 de 41 f6 70 10 6c 38 c3 // 8b a1 a5 53 f0 f5 89 a5 7c 61 f5 10 5d 70 e0 c0 95 34 59 38 3c b9 33 // 7c a9 72 cd a1 d2 cd 30 56 eb 07 f2 1c 1f 5b 99 5a 04 99 7f ec f5 01 // bb 20 1c 67 fd 2a fe 4d 44 fe de a5 95 96 9b 6b 37 06 08 7b 0f 59 d2 // dd bb 09 9d 60 43 6a 94 f0 ba 33 28 2b 29 f6 e9 14 fe 92 ad d4 b3 3c // f7 0b 68 0b 90 5c fa 2b 2c cb 00 b9 96 7f 99 80 6e 8d 69 78 3f d3 5a // 2d 7f bb 42 4e 9f de 26 47 60 9a ec b0 20 8b c3 86 4b f9 5f 05 e5 0b // a1 21 23 ed ac a8 de 92 7b 33 8d fc b3 cc 59 79 47 c6 06 c0 83 15 06 // 1a 7f ec 98 c4 8f 48 0e 2f eb d2 6f cc 8d c1 22 89 ae b0 ad ef a2 c2 // be 17 66 a5 bc 74 ef 1a ab 6c 2c db df bf 18 10 d9 56 bc 88 9c 8e 61 // 4b 7b 93 3f f6 e3 36 bb 20 8d b5 b5 92 77 5f e7 1c 3e bf ad 5f 47 e0 // d0 74 e1 c0 cb 36 76 14 81 ec 67 77 94 f2 3c 36 98 bd 35 87 57 19 f2 // 42 e3 fc 93 9b c3 66 8f 97 23 f3 1e ff e1 89 da bd f4 eb be d0 73 ea // b9 52 c8 8f 13 05 9e ee 22 23 0b c7 72 4d 72 66 b1 57 26 a0 b0 89 8c // dd 27 4e 3e 56 d0 a3 56 16 6b 5d 16 45 62 49 e9 e9 2e 84 e3 9f 61 c0 // ec df 99 ec 2c d2 30 44 0c 03 fd 21 cf 68 f2 73 06 62 8d 35 ea 47 36 // 77 75 f3 9d 20 a0 7f 39 59 b3 8d 49 e3 67 40 61 fc 10 18 b6 47 04 7a // d3 9f 77 02 78 78 ba dd 29 92 7c 58 06 f9 5a eb de 5f 07 0f ed 28 ed // 34 05 25 50 67 8d 3c 6b 67 7a 3b 5a 46 f7 6a 98 26 4c 42 20 6b f6 2c // aa 95 df 54 37 09 2b 68 e0 25 ee 9c e2 ad 73 3b 6d b3 ec 97 fd 33 cd // c3 b2 f7 7e e9 0d d8 6d 8b d2 89 ae 1a 43 7c 86 f4 15 3d dc ff 5e 84 // 63 47 bf ec c1 49 9b b4 29 80 e4 fa 91 79 0f ae e1 b1 99 1d fe ad 5d // 7c 46 03 48 63 1f 04 69 b2 b9 e8 f6 52 07 a0 09 85 51 1e 0c 41 f4 41 // d9 a3 15 4f 5a 02 98 c1 72 fd 71 35 d4 bf 95 c1 1c df 17 69 db 1c c5 // 5f 39 2a ec 30 90 37 59 93 27 a7 c5 3c 10 a5 6d 1a ce 8a d1 91 86 a2 // fc 75 df a9 d6 57 c1 14 ea e9 9c 1c 1a 6b 4a 58 44 07 18 be a8 22 90 // bd 1c 2a 67 04 89 38 c3 81 64 8e a2 b2 c7 11 0d 74 8c 9c 8d 78 2f 20 // 43 0b 14 27 b5 1d 70 36 e5 5b 09 97 c6 f7 57 17 db 67 a8 2c 88 d3 64 // 7e e0 36 b4 93 92 f0 46 7d 60 10 b3 2f 9d e3 e5 e7 9e f0 82 c5 bb 97 // 5d 11 d2 bf 76 a9 7f 71 59 c1 1a 77 53 db 8a 06 5d 31 26 cc da 9a bb // eb d2 c5 43 74 e3 89 94 2c 24 b2 74 35 86 8f ad b4 5b b0 60 d3 c1 08 // 4b 21 1e 2a fa 8d fa a2 d8 da b8 dc 47 fe 10 e6 c3 2a fe ce 7c 49 76 // 17 6a 7c 66 d7 04 12 5c 09 48 c2 38 c8 43 b4 1b 02 46 be 1f 50 f8 e0 // 78 84 cf e7 ae 88 85 ca 06 33 9a 33 9c 8d 59 78 b0 79 e0 eb 78 fa cf // a1 dc 67 ca 70 73 3d fe fc 6c 86 8c a1 49 e0 66 1b 70 e0 13 48 70 a3 // 10 7c 8c 46 71 1f ed 14 f8 92 d6 fc 66 d9 53 06 83 86 88 f1 3b 19 e9 // 04 41 6a 8d 16 1c c3 35 27 87 8b 38 ad 10 b1 c0 8d b2 14 57 b2 07 56 // 08 be 73 00 d3 97 48 e4 fc eb e0 2b 19 0f 3e 8e d3 2a 0e f7 34 b1 1c // a4 3a 21 f5 f8 09 bb a7 95 f5 aa 0e a0 10 50 02 1d 0f 52 13 62 0a f5 // b0 8f da 64 21 a4 2b 7c 82 80 4a 20 a6 ef 6d 47 1b ab f7 6f 46 53 83 // 27 f9 43 47 6d 1d 10 9a 3f 0d c5 31 23 3d 6f 93 d8 dc 27 f4 74 57 35 // 08 5f 92 ad f6 3d 61 7b 37 3f ba 24 f2 89 03 57 10 e6 9e b8 0d a1 2d // 36 e8 ea ec 22 62 0f fa ab ad fb 82 4b d5 fc 30 9a 2c 74 95 95 05 85 // 6b 5b 89 0b ba 8f 22 bc 57 1a 9d 87 e9 3b a3 b9 ab a6 dc f2 6f 70 76 // c0 c2 e2 71 64 18 35 ea 25 fd 49 d9 6c 69 d4 fb 8b b8 73 1b d2 cb c7 // 51 46 ae d1 0d 26 9f 90 60 46 23 39 cd e8 83 0b 53 59 20 be 3d bf 14 // 3e ac e0 f1 ea 94 69 b9 5a 64 fb d7 e5 05 7e b8 80 d4 42 2c bf 97 cf // c3 f7 14 02 51 d4 92 35 80 ca 21 13 f3 45 cf 24 a6 64 99 ce ff d2 e3 // 9d c4 fd 74 cf 44 86 38 96 29 57 b4 09 f0 d2 18 c1 65 c1 3f fe 10 7a // a1 dd 1d 9a 02 09 2c d4 6c f2 b3 53 dd 2d 2c a7 b8 a7 ae 8e da 0e e1 // 8b ba 26 9b bf fe d0 c7 d4 00 49 7a ee 4d a0 89 6c f6 32 9d 76 cc ea // 09 8f be f9 07 54 12 d1 c2 a3 64 4c f0 f2 02 b8 84 30 3d 20 43 14 ae // 92 c5 62 17 b2 fe b5 e7 c1 e1 5a 99 fb dd 65 5f b8 f6 bb c3 ab 12 59 // bf 03 b2 ee 17 c5 b7 e9 44 36 95 17 7e c5 04 0e ef f3 fc 36 ce af e1 // 43 39 3d 76 a3 d7 35 cf e6 c9 b6 32 e5 2d be 64 dc 12 65 96 1e 8a 27 // ee 9f 76 c0 ad d9 e0 58 1e 47 4d 76 78 21 4f 5b 64 c9 32 90 37 15 be // fc 6b 76 66 11 f1 d7 e4 95 57 3b 9a 3e 00 9c fc b0 ff ef 7a c5 7c 35 // 61 ba db fa 41 c1 19 e5 41 18 0a a2 36 4d e6 1a 60 16 99 cd 1b f3 de // 01 d1 57 94 b7 28 e1 44 4e fd 6f fa 1e 57 d9 54 89 c8 df 91 fb c0 57 // b6 6d d6 d9 f3 a0 1b 19 f3 6b c9 9f 0b 54 ed 1f 99 05 06 7d d1 60 8b // ce 47 f5 ff 19 81 a2 51 84 aa cd 39 e3 31 d8 ff 3d fa 7c 01 2d 7e 66 // 7a 69 24 9c b4 80 3b 23 f7 ee aa b8 ed 29 c6 9b a3 d2 a1 b8 88 21 ff // ef c5 82 56 50 c5 3b 63 64 f3 8e 0a 17 83 12 f5 d2 9d 53 75 42 3c ce // ab c8 e1 c4 e5 1a 56 6b a3 f9 b1 76 b8 58 c8 86 04 40 ff 8e bd de 72 // 56 40 d2 df f6 b9 16 0b b6 9f 18 87 55 b0 ff 76 6b 41 07 04 cd a4 c3 // 3e 1a e2 c7 3b 57 99 a0 0d 2f 55 de 73 10 97 28 b3 50 30 2b 64 df 2c // e3 ea f2 e0 c6 56 10 09 b6 0c 27 01 ac 49 30 76 30 5e 97 ed 20 c3 b4 // 2f 40 b2 bc 7f 13 bb a4 ab 81 81 e2 08 5b 07 93 0c 6f 55 79 20 5d ff // 69 69 02 be 82 4e 65 dd c7 74 e8 86 e8 d2 61 fe 74 71 2a 31 e4 06 b0 // f7 72 5b 45 59 d7 ad 0f 27 a1 a8 70 26 1a a5 bb 8a 72 0e 7c 89 ba 93 // 37 70 d4 88 21 41 6d e0 70 df 1a bc c6 ee e1 14 7c 20 bd a0 90 d9 40 // ae ee 2b d4 8c 0f 3d 94 67 5d 9b 9c f1 a6 2b a5 0e 31 a7 af 07 14 dd // 83 25 d5 fb 71 42 e8 8c 4d 22 dd b8 f0 27 8e e6 ba 88 e3 61 52 4e 29 // 1b 6d 00 0f 65 23 ad 41 88 b0 21 da 9e f4 a6 34 ed 09 eb 20 02 b9 c7 // 26 74 6c 9f fc 32 f2 61 ed b4 48 10 6a a1 e2 da ae d8 65 25 5f d1 d2 // 96 fe db bb 2d e3 f7 c1 f1 59 35 e5 20 06 49 2b 63 2a d1 25 aa 1e 00 // 0c 9d 71 bd b9 45 79 26 68 e1 6b 26 12 2a 3f d7 cb a1 a4 0d b8 08 30 // 68 c5 c4 8f d2 aa a6 21 c8 7d 9f 56 21 bb a4 42 fc 26 83 90 30 db e4 // e3 7f da 40 46 d6 50 3b b0 3e 0f 92 8d e2 5d 4c d4 e2 a4 0e c9 3c 90 // 21 df cb b2 5f 6e 2c 94 3c c8 5e ba 81 23 34 0d 63 64 94 95 81 e8 c8 // c2 91 3d 59 da fe 42 97 67 2c 0b 9e 74 18 48 5f 00 cb cf 67 2a 58 89 // 04 be b3 c0 74 be bf 33 98 15 b9 1c 7c 37 4c ee d5 a7 01 e1 ad e8 f5 // d8 7c a5 36 12 01 16 30 7a c2 59 57 7a 8e 12 95 84 25 31 7c 48 2d 2c // 70 89 bf 3d 83 e1 23 18 d1 52 61 07 a0 50 f3 c0 94 49 2d e7 25 5b 22 // e1 8c a2 ff 26 1b 3e d1 97 f2 f8 e6 7b 71 b1 c5 a6 a0 4b 99 15 8b 58 // e9 ba ad 75 20 1a ab e1 32 54 61 7d 0d e0 a9 07 3a f6 24 91 c6 7f c1 // 8d 1c cb f7 68 6a 85 a9 9b 39 e9 d7 d9 c8 5a 07 77 e4 7c 9f d0 e1 0c // 93 2c 20 f1 3e f2 87 b4 4b 9b 70 6e c8 18 aa 0c 48 a1 0c aa c5 8a 9b // 83 55 e8 4b c8 20 69 8c 25 01 f0 c1 2e 1b 67 df 70 1c fc be 72 dc 47 // a2 c8 7d 43 75 3e bf db 24 cc 83 85 07 e2 41 d9 fc d3 d4 95 5a 37 32 // 09 cc da 90 3a 3f fc ed 05 e4 23 2f 2c ca 9b ba 19 7f db a8 a9 35 7c // b1 d6 da 6d 9b 40 95 02 7d c0 3e 17 d5 9e bc 2d 35 8e 17 1d a0 04 4d // f1 02 b1 93 c7 93 90 eb cb 58 02 3b 40 c6 21 df 71 e0 64 b0 05 6b fc // f1 ea ee 1e ca 85 35 7c d1 ac 78 fe aa 54 bb bd 85 59 69 77 ba 85 00 // 3e a6 0d 86 85 f4 e3 b7 56 e4 f8 14 53 07 73 96 59 0f a2 14 f6 72 92 // 9e 81 56 94 42 02 36 67 b7 98 c2 4e 06 ee 20 db f6 4c fc cb 51 b2 bc // a4 e2 a5 b0 df 13 7b b3 7a b3 e2 85 4d c7 e1 b8 79 86 6a 72 a5 80 9b // 56 35 96 cc 9f d3 e5 3a bd bc cf d5 db c6 06 62 25 2d dc 5c 29 0d 72 // 23 0d 79 b7 50 4b 40 fd b4 5d ed 2f 02 e9 26 65 2c 1e 04 ea 4c 1c 48 // 80 25 ad 10 98 ad ee be 98 e3 85 ab 1c ae c4 b9 eb 4d 3b bd 5e f3 dd // f1 fd 0d 72 78 46 04 a9 89 55 8f d3 7f 6d 4f ee 20 60 90 90 b3 33 1e // 25 4f ec 98 41 4a 2c 54 58 9e e0 1c 94 29 b7 cb 57 4b 91 67 ef ed e1 // d9 66 a2 27 bf 2a 8e 42 2f 38 68 0d 77 d3 c5 55 cf 11 17 e7 d7 e8 04 // ad 73 0c 36 a7 8b 78 46 47 3d 64 81 bd 08 39 bd 3e 69 82 ed 47 24 6c // 37 0a 90 b7 6e 5b 88 de 20 23 46 fb 20 b8 b6 b5 ec b6 a9 0b 84 78 d1 // 7b 17 5a 18 21 df 75 b4 8e cc 34 86 6f e5 c8 96 0b f6 4d 5f f9 28 31 // bb 93 57 47 4b ec 65 e0 dd 16 99 b0 f0 34 0e e5 ac 5e 9e 9d 3d f6 6e // dc a2 02 01 37 1f c2 1a d8 0a ac d4 9c 6b 0a bc fe e9 c8 76 c1 5e dc // fc cd e8 23 b5 5b 61 cb 7b 25 44 87 ef 8c 87 81 a2 20 43 f4 ad af 25 // df 34 58 0a 6b 39 04 fd 01 4b 50 c5 9f a9 0e ff 75 fa 5f d3 2a ae c9 // aa 10 df 8a 2b 9b 82 49 52 e4 75 c9 64 53 39 42 bb e3 0f 41 67 a1 1f // c1 5d 54 8e 0a 31 f9 11 03 05 69 72 2f 0c 67 e7 9e 90 48 3f 6f 0b ee // 1c 7f 80 fa ce 1a 1b 0f 94 0c 89 1b e6 88 cb 16 39 4f 6c 07 fd 29 b5 // f2 48 c2 11 d1 f7 6e c1 29 27 55 d8 bd 96 3e 19 1b 3a 88 51 47 2f bb // d2 cb 73 2f 4f d9 fe f3 a8 fb 29 ae a0 97 32 81 73 fd ea f5 6f a2 27 // 9e 86 fb 95 43 06 b0 40 c9 60 d0 b6 01 b3 a7 41 c9 6c f1 f0 bd 11 72 // f8 48 58 5c b3 b5 7d 7d 2e 2a 84 91 45 26 f5 a6 f9 89 5c f5 aa 44 25 // b4 db f9 f5 90 37 75 6a 03 21 bb a2 04 a7 37 e3 62 77 e8 6f d2 68 f6 // 04 79 21 f4 f8 fa b6 9d fe e1 37 c0 78 74 f1 2f 89 08 4e 71 17 e2 c9 // 22 16 90 a2 7f 88 0f 17 d0 8d 56 f9 db c9 6f fe f3 92 0b 55 fb 77 3d // de 72 e1 ba 35 f3 e0 c9 87 2e 33 95 08 28 14 26 ab 04 94 1d f4 88 5f // 7e 02 93 14 9f 16 42 c2 57 3e 2b 65 94 b8 fd 95 3a e2 46 8c f9 17 cd // aa 06 92 cf 46 1e 36 28 86 09 35 de f3 9a f7 8a f5 e1 54 01 47 ab 1c // 70 c3 ab 7f 7c 76 ab ea 0d 85 41 fe b4 3e 63 2d 7a 2c c7 be f1 5a 47 // 00 30 40 48 ec f1 35 96 8d 0a 96 44 ce 89 9a ad 05 b1 86 a2 22 4b ab // 38 36 24 8c c6 13 74 72 20 3e bc eb 29 b3 e8 76 10 df 12 41 7e e7 22 // f3 09 c5 4b 2e 65 59 1d 8b 92 94 40 f3 ec 43 ee 9f f8 f7 b7 71 06 68 // e4 31 26 10 d1 59 13 03 d5 27 03 94 da 0a b6 1e 45 15 af 52 15 dc 81 // 13 7f 0d c9 0f 95 19 72 73 1f 8d 98 ce b8 b4 ea 38 da 7d 8d c1 53 cc // ba e5 06 87 81 ea f9 a4 a7 b1 1b 43 19 09 02 61 b6 1a a6 5a 85 36 29 // 2e b5 39 20 20 eb 28 5b 2d b0 7f 81 e7 f7 64 d6 50 37 05 0f 1e 37 48 // 59 34 74 c6 c1 dc 11 cf cb 56 e1 c9 16 15 72 80 09 8a 43 72 65 e1 c6 // 82 cb fe d7 17 e7 27 5b c6 c3 bb 6c 6e f7 f0 f9 fd d1 9e f8 2f f2 c8 // 22 84 c3 a0 61 f5 7b 21 d3 70 5a ff 97 71 01 08 a7 d1 21 7a 7e a3 fe // da 02 1d 20 f1 fd ca 94 bb ef 67 e0 ae aa 3d b6 cc c2 d0 60 f7 b3 37 // 07 fe 19 cb 2d 02 32 f1 23 93 73 bb 38 e6 66 cb bb f3 a6 97 c6 d0 e9 // 57 ec 67 30 f5 60 34 44 0e 78 9a 7a 37 30 4d 09 eb 74 2f 21 01 9a 77 // c6 08 cf 57 81 62 a5 5d 0a ea 11 3c 05 1b 11 0b 52 81 ed 8b 66 38 d2 // b3 16 04 e9 65 cb 01 9f 2f 10 6b c4 e9 6d 13 13 c7 06 12 f1 ff 18 af // dc e7 92 62 70 dd 24 2c 49 cc 53 79 2f 16 0d 1e 14 3e 04 d7 eb 3c a4 // 08 28 b1 53 fa c4 66 bc 53 a0 84 28 19 87 b4 7b 80 6a 4e f6 68 85 9e // b9 03 5e f6 8e 9c 20 bd 6b b7 90 fd f6 f9 21 56 9b 4e 97 fa e5 b7 ed // c7 61 b4 94 4c 1d 6d 90 f4 df 40 bc 32 03 ed 83 8d 4c 61 cd eb 7a 9b // bb 68 d5 9b 2c c0 01 25 ee ca f0 6b 75 9a c1 b9 dd 68 02 82 25 d0 a6 // 0e fa 49 9e 44 36 96 23 62 72 70 11 ee f6 cc 55 96 2d d4 ff e2 fd 38 // 92 90 7e 83 70 45 88 3c c9 ba 88 92 ab 26 5a 31 92 4f 30 55 d4 de e6 // 8f ef f0 5d 9f 10 eb df 1e 8c 1c 1e 70 01 b5 b0 2a 7f e2 6b 9c 06 41 // e0 54 ae 37 85 41 87 fb 1b b6 e9 fa e0 5b 09 e8 5a 1e 0e 14 bc 80 1f // 2d 8b 9a 17 8a 9a 72 b1 47 e1 37 e0 d8 31 92 66 4a 88 a3 ac a4 fb 6a // 4f 0c 57 87 b2 0c 31 bc 59 75 df bc 8b cf f8 98 75 73 bd 14 b1 ca 43 // 4d 93 45 2e 67 ed 01 c6 0b e9 9e 53 5b b3 f8 48 88 8d 22 45 20 b6 1c // fc 1d e2 d6 b2 eb ef 9f 24 67 4c 31 aa da 52 78 4a 0b 7b 60 f3 51 65 // 3c 71 d5 46 cf 95 1e 6b 4a 0d 91 7a c6 af d0 a7 13 f4 18 33 f9 f7 4a // 3a 7d 3c 19 b5 23 29 96 66 da 2b 48 67 6c a7 aa fe ba de f0 5b 3b bf // 4b 6b 62 83 40 46 f5 1d 3d 45 82 fb 4c 9d e2 7a 3f 5e 99 28 53 36 8e // 4f 17 f9 db a2 7c 8c 44 38 30 7f c7 40 5f 53 fb 27 cc 81 c1 52 14 52 // a1 a5 ed b0 ca bd f7 a7 3b 1c ab 06 75 b6 19 fd 5a 0f ad b7 14 77 76 // e7 46 95 c0 42 d9 d8 bf da 04 5b ce f7 54 2b 42 24 9f 34 c7 59 06 05 // d0 20 1a 76 23 90 f2 fe e5 f3 cd b4 88 42 66 09 c6 63 c9 fc 4d c2 a5 // 27 7f 3f 58 9a 14 e6 dc c2 02 df cd 89 bb 14 8a 36 8f f1 79 2d 23 0c // 19 93 41 43 d2 c2 60 db df b3 34 af 86 3b 85 6e 41 5f eb d2 2f ba 01 // c5 68 d8 f4 8d ba 6d 92 f4 93 cd 11 64 a3 76 f0 06 d5 5d b6 09 cc 2c // 95 32 a9 f5 6d a3 b0 6e 3d b2 a0 5f 79 7e ed 57 89 2e 2f b6 77 54 13 // 24 bc d7 63 cf 46 69 e7 a8 71 e3 22 d0 cc 6e 21 be fe 3c 76 79 76 f0 // 58 db e7 a0 59 d6 73 c9 4c 7a c5 d4 91 78 bf 19 d3 29 07 b6 fe 66 a9 // 2c c8 ea 30 a8 58 da 43 f7 43 54 39 0d 6e 97 02 1d a5 08 12 c5 9a 78 // 91 5e 5b 33 22 15 31 bf a0 54 c5 94 ce 3a 23 00 e5 a7 d7 12 77 31 81 // 90 1d fc f6 92 2e 98 05 66 fa 62 b1 f2 b6 69 a2 7f be cc e2 9e 9b e6 // d2 20 58 46 3e 35 01 63 f3 3d 18 ce 92 a7 2d 1b 47 08 57 b6 a3 79 98 // ae c5 67 25 21 a8 f0 d6 6a b2 bd 01 de 51 60 36 ec 47 d1 f6 3b 95 b4 // 37 dc 6d 5a 01 68 18 9d 5a 96 3c b0 a8 0a 9a 5f 20 b0 35 15 39 6e 35 // 25 f0 ab 13 b0 c1 e5 dd 05 1b 4c 93 0d a6 d5 7a b6 f7 dd 94 ab 3e 68 // 9e 03 55 af 0b 34 87 12 96 15 2a 76 cc e1 70 d7 b1 4d 47 1e e4 d9 da // a9 3d e4 ed 75 5f 30 d4 53 44 f7 24 28 8c 17 e4 b2 25 83 15 8f 13 05 // ff 55 fe cf 7d 52 6e 20 7f a6 09 88 6e 14 c9 a1 68 bf 36 4b 04 94 09 // f6 35 90 f1 8a 55 15 de 8c 1f d8 c5 a9 71 0b 6e 33 d2 ec d0 14 66 b7 // 99 f1 4b e7 87 61 2b 8f 17 df 0c 05 48 3a 16 09 7c 0a 50 48 80 24 9e // 28 f1 e0 67 66 3c 64 0a 55 0a 8c 7a d9 d0 90 f7 b2 e9 02 c5 c2 09 36 // 86 9a 5f 3d 3a 01 48 17 f9 0b ab f8 47 b4 3c f6 7e c2 3f 12 0a e4 ab // c6 3a 41 8d 1d 99 f3 59 fc 2c 33 a5 bb 34 e1 f5 78 05 76 11 1a 88 c5 // ed e8 34 bc 41 e4 98 54 8d dd 12 8f 9e 88 4f 4c d3 e1 bf 1a aa 12 04 // 07 9c e7 4e 70 93 06 f3 8f 2d 68 59 12 8f c3 5d 3a 74 c5 34 ff 1d cc // ad fc 8f e4 1f 1b e9 51 03 49 af 87 10 eb 6d 2d bc 75 8b e1 2b 65 62 // 2d ad 1c f4 8a bc 2f c4 09 f5 ed 6a 3a f8 d0 b6 54 86 43 c4 6d fb a9 // db 4e 58 27 47 5e 6e 31 7c 9c 01 8a 4d d5 de 39 1c c9 cc a8 5e c5 27 // 53 7e 26 94 9e 50 91 ba ca 4f 0b 56 3d 4c 39 69 f1 51 15 e5 cc de b9 // e4 07 88 fe 12 f9 d3 2d 94 88 a7 0a e5 3b 81 97 26 e4 48 3e a6 bb cb // 76 f9 97 75 ca 5e 4f 93 c7 6e da e4 62 c0 8d 59 62 09 f9 85 aa 55 ef // 5e 78 67 01 ed ce e8 d8 31 dd 6d c0 fe e9 ad 01 b6 bd d6 3e 88 6a 5e // 55 bd c5 93 39 0c 81 e1 8d fd 8c 68 5b 81 30 6b ad 6b 7a 19 a8 6b 2b // ab 5c bf 47 54 70 84 22 e9 9f 8f 24 97 d7 98 b3 db 56 5e 70 9b cb ba // 4c 37 6c 1c 60 b2 2b 99 4f e8 fd cb 25 21 5d 50 55 11 cc 19 27 f6 a3 // 53 44 02 3d 5d a0 a3 ac 08 30 e6 aa 80 f5 f7 f0 d9 4a 67 c9 9c 6b 22 // 71 70 78 ae cb a2 a5 99 da a2 ac c0 54 cd a2 5e 39 65 17 2e 5f ef 46 // 4e c1 9a a7 1d e5 e8 4b 6d e3 0c c6 73 fb ab 8c 44 1e a3 7b fb 3f c3 // 21 a5 04 37 1b c0 99 67 02 e9 be 38 db 76 2e 33 9a d7 ad 66 dc 2c aa // 88 7e 4a b6 02 72 d7 96 3f 85 b1 4c 94 1d 31 e5 45 b8 5c 64 04 27 30 // 2e fe 71 42 f0 e0 89 7a 8c 62 3c e5 7d a2 13 fb c2 d1 f9 06 77 14 2f // d4 8c af ca 0b 29 34 e5 72 83 3e d6 47 32 18 d0 51 3d d1 f6 ec c5 78 // e5 a1 10 9d da e5 52 b3 be 0c fe 72 46 d7 68 2a 59 fe 9a e7 83 a0 f3 // 18 d1 80 0d 5c 46 6c 80 c5 fd 3f ac d0 34 0f 45 5f 08 10 68 dd 2c da // 5c da 74 40 18 d9 02 21 71 52 b6 c0 5d 37 c0 90 f8 34 8b 04 71 05 31 // 52 c2 a4 57 0f ba b3 f6 dc 30 c8 e4 9a 63 b8 8a 00 b3 aa c7 51 80 a6 // 33 69 2e 35 ea 97 68 21 69 4e 13 3e b8 bb 4d 31 23 7d 00 2f ce 1d d2 // ce 55 52 8d af ce f2 f0 e0 06 90 56 2d 14 4b b0 e1 95 76 ce 6a b7 2d // ea c2 20 67 d8 ed ac 91 6b 1b 07 e4 eb 57 ff 0b 88 5b 1b 79 f3 7d cf // 88 13 5e ed c1 7f fd 94 8b 61 e4 df 49 85 03 3b cf 89 1d d5 b1 44 8c // 86 68 94 7a 27 1d 93 d0 3c e3 12 16 81 0a 6b b4 5a 6c 5a 12 e2 90 d9 // 7a 60 ad 4b 5c 73 84 cf 19 42 1a c1 ca 64 d3 46 b5 07 71 e0 b5 0e 5c // af 1d 9d fe 05 6e 8d a2 47 aa 50 2f f0 4c 8e 29 ca 81 0a 1d 3e c7 a8 // 9b c1 7d ba 29 36 f0 3a 80 22 81 71 f7 99 9b 3f 27 68 61 79 70 ef e5 // 7b 14 01 1c 80 66 6a c4 99 9a 56 8e be f7 4e 2c a1 4d f0 ff 6f 0f cd // 47 c5 38 be 96 aa ca 1e 65 b5 3b 98 44 71 01 e4 96 72 b4 81 67 c0 af // c1 af ff e6 69 b0 f9 71 8b d3 30 58 05 c2 92 db 97 38 74 0b 36 25 64 // e4 69 1c bd f0 61 db 1e d3 f9 db 1f 8b ed 82 93 9f 83 5d 14 f4 68 18 // e3 eb 4e 25 f7 a8 d7 7d 9d 0d 79 13 c4 5d 8a 81 11 5c 1a 5e 37 b1 d3 // bd 1b 7b 5e 6a fa ae fc 81 d9 70 0b f8 35 06 fb f1 54 57 bc 0f 59 f7 // 00 8c c8 03 ef dc b6 d3 9e 38 8f 6b 28 e8 0d 47 13 42 65 cc 54 38 80 // 4b 12 d5 0e 61 a4 89 da 82 9d ca 05 79 2d 2a c1 82 ba 74 73 31 e8 8a // 71 18 f7 dd 38 06 7f 7d 38 f3 7b e3 62 26 0e ff ac bc 33 86 3b b4 7a // ee bb ad ea e6 48 a1 09 07 18 26 6e ed d2 ed 5a 2c 23 f1 68 75 91 98 // aa 92 b2 ac 45 c2 a6 8f f2 12 f2 92 60 e6 41 a3 85 41 b0 66 d3 9d f4 // e9 5c d1 c8 e7 e6 ff ae 1b 80 17 e6 f6 29 db 39 10 b0 74 96 c8 a8 1e // 4e 66 ac 23 21 fd 9e 7e bf ec f5 bf 6e 92 2d 7a 79 fb 71 0a 2d 42 da // d1 91 6c 9b 18 6c 2c 50 c8 18 fd b1 af a1 9b e8 67 d9 43 ee 98 f7 32 // fe 3a 01 36 42 81 c0 f6 d0 eb 64 a2 78 72 1d c7 bf f5 31 62 56 b0 f4 // 25 1a bb d9 b8 ba 7c 7c 12 a3 bf 02 a1 fb c9 ca 94 b9 65 58 8f bc 82 // 34 3d 07 df 8e 06 ea a5 ed 21 37 fe c1 29 35 1d 80 a9 04 8a 7d 78 b3 // 1f fa f2 e3 88 86 4a 76 3c 4a f7 aa 53 00 0e 0b b2 eb 8a c0 e4 27 2c // bb 79 dc 6a 7d 65 89 0f 12 5c 52 3c 7c fd da cd ed be 87 93 8a ca 91 // 5c 92 c8 07 da b2 6b e7 d7 48 82 7d 4e 31 88 67 63 12 ef 1a c8 46 0b // 29 e8 e7 15 f4 07 5e 33 10 4c e8 2e 67 85 aa df 17 a7 cf 82 d2 a7 05 // e9 f2 d0 fd 25 81 0b a3 3d 76 e5 4b 48 ed a3 ef fc 01 f3 7c 89 db 38 // af 81 92 2f ad c8 c3 36 1f e7 4e d5 1e ac 5e 44 37 10 81 06 ff de db // 33 9b 40 6c 08 2d 62 a8 bf 71 89 89 84 6d 23 f9 66 e1 ea 39 10 30 10 // f7 67 b3 a6 f0 a0 a2 04 1b 1d af cb 78 7e 69 ff ad 75 ed 2a 00 81 b9 // 2a 41 36 ad 5a e5 57 c5 5a 4b 62 19 a3 90 10 34 28 18 1a b3 6f 32 9a // d1 82 a9 29 57 49 5c} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: nil // ] memcpy( (void*)0x200000000000, "\x03\x68\x4a\x7b\x99\xa4\xfd\xe9\x40\xf3\xec\x0d\x10\x5e\xa2\xc8\x26\x73" "\x23\x11\x71\x53\xaa\x4a\x4f\x09\x9c\x38\x35\xa6\x07\xcd\x5c\xbd\x77\xb8" "\x3c\xc3\x3d\x13\xbb\xb6\xc6\xbc\xae\x59\xdb\x73\x9a\xf8\x4a\x4b\x5d\x34" "\xbf\xfc\x14\x5f\x3c\xc2\x7e\xd3\xd4\xf9\xd9\xb3\x10\x36\x99\xa1\xe1\xcc" "\x4d\xdf\xb6\xc1\xaf\xd0\x7d\xdf\xc1\x8e\x35\x8c\xd6\x26\x49\x47\x97\x24" "\xce\x86\x7f\xef\xc0\xa1\x50\x41\xbe\xe9\xf6\x08\x48\x42\xfb\x98\x2d\x5c" "\x2c\xf1\x48\x8d\x66\x8b\x74\x1c\x64\xf0\xa6\xfd\x26\x43\xe7\x29\xac\x5a" "\x56\x46\x2a\x6b\x64\xd5\xa0\xa7\x51\xfd\xa4\xfa\xdf\x63\xba\x0d\xc2\xfd" "\x14\xec\xbf\x54\x69\x18\xdb\x77\x09\x55\x45\xb4\x1a\xb1\x70\xe5\xd6\xe8" "\xec\x8b\xf9\xce\x9b\x8d\x53\xb8\x32\xe9\x0c\x70\x1f\xe5\x2a\xf7\x99\x9f" "\x8f\xd5\x09\x57\x7e\xad\x1b\xe2\x78\x91\xad\xa8\x56\x41\x67\xf2\xc7\xd2" "\xee\xa1\xc1\xc9\xc6\x5d\x8e\x15\x1c\x58\xdd\xee\x43\xec\x34\xe7\x4d\x33" "\x0e\xc5\x0c\xbb\xb2\xbb\x21\x89\x2c\x7c\xa9\x95\x06\x6e\x3c\xbe\xa8\xa6" "\x9d\x94\xdc\x6b\xce\xf5\xf3\xc0\xef\x63\x0e\x77\x4d\x09\x2e\xa5\x86\x27" "\xf3\xe0\x9c\x66\xa9\xc7\xd1\xab\xcf\x4f\x8f\x8a\xf8\x7f\x42\x69\xdf\x28" "\x8a\xca\x9b\xbf\x75\x82\x75\xce\x96\x95\x25\x6e\x76\x4d\x18\x5a\x91\xa7" "\x57\x0f\xca\x3a\xab\x16\xc7\x5e\xca\xff\x6b\x8d\xda\x37\x1c\x32\x26\xd6" "\xec\x6e\x55\xc5\xc4\xd8\xcf\xc5\xc3\x38\x92\xba\xcc\x95\x6a\x36\x13\xbc" "\xfa\x84\x9d\xa1\xb5\xe0\x70\xa7\x91\x1d\x74\x88\xb3\xe6\x28\xd9\x33\x97" "\x18\xe8\xb8\x21\xf1\xbb\x5d\x5c\x45\xf0\x31\x6b\xb5\x63\xd0\xa4\x42\x80" "\x14\x12\xdf\xd5\xa4\xd6\x1c\xa6\x57\xe0\x4d\x66\x86\xf7\xd5\x86\x3d\x57" "\x95\x44\x00\xae\xee\x8e\x79\xbe\x8f\x3c\xc4\xcb\xb3\xd4\xb9\x12\x69\xdf" "\x03\x9c\x3d\x35\x43\xe5\x00\xb9\x0a\x2b\xdc\x6e\xb6\x0c\xc7\xaf\xab\x7b" "\x51\x87\xd8\x8f\xbd\x76\xe6\x21\x2e\xa2\x9e\x87\x2b\x73\xf9\x25\x28\x7b" "\xdc\x80\x8b\x4a\x4f\x8e\xc7\xf8\xaa\x08\xbc\x90\xb2\x9e\x21\x7c\x3e\xef" "\x69\xd8\xde\xae\x41\x41\xf4\xf9\xbd\x11\x0b\x7b\xde\x93\x20\xe7\xb4\x5f" "\x42\x2e\x9a\x61\x11\xbc\xaf\x99\xc9\x91\x1e\x46\xe2\x19\xd3\xba\xb4\x77" "\x92\x6b\xd5\xd2\xe7\x8d\x4c\xd0\xec\xa1\x33\xc2\x32\xb1\xe8\x63\xfd\x77" "\x99\xdb\xf6\x09\xf3\x67\x0b\x32\x3e\x55\x18\xe8\xf4\xbd\x36\xe9\xb3\xda" "\x2c\x68\xa2\x8e\xae\xc9\xca\xc6\x88\xb4\xdd\x0b\x73\xad\xc2\x4a\x8c\x7a" "\xcc\x26\x43\x99\xb7\xfa\xcb\xc2\xf4\x3e\x8e\x40\xb6\xca\xe9\xf8\xe9\x56" "\xd1\xdb\xfe\x25\x9f\x12\xba\xe7\x5a\xd3\x62\xc3\x54\x05\x0f\xfd\xd6\xe9" "\x54\xf2\xd7\x61\x5f\xaf\xce\x88\x8b\xd6\xf6\x72\xa8\x1c\x9f\xd4\x31\x8c" "\xab\xa7\x65\x06\x9c\x0a\x42\x5e\x89\x8b\xf7\x61\x1b\x77\xf0\xfe\x61\xc2" "\x7d\x31\x81\x59\xdb\xa4\x2f\x01\x19\x00\x24\x6c\x64\x55\x7d\x27\xb7\x7a" "\xef\x92\x8a\xb0\x4a\x14\x7b\xac\xa3\x78\x63\xcf\x99\x8a\x2a\xc3\x0b\x90" "\x3c\x03\x14\x44\x9d\xdb\x21\x88\x87\xc3\x09\xec\x71\x84\xc8\xc7\x33\xf5" "\xd4\xe7\xb2\xd7\x95\x16\xe9\x53\x1c\x9a\x5b\xec\xf8\x29\x4d\x6c\xcd\x77" "\x7f\x28\x5b\x13\x16\x0e\x1c\x94\x9d\x30\x69\xc6\xc6\x6c\x0d\xaa\x62\xba" "\xc6\x79\xbc\x9b\x69\x82\x53\x98\xd1\xc2\x90\xd7\x65\xe8\x82\xfa\x2c\x87" "\x08\xb2\x0c\xce\xc8\x85\xab\x67\x85\xdc\x22\x69\x6b\x61\xc1\x09\xff\x84" "\xbc\x54\x07\x93\x2c\x3e\x5b\xf1\x20\x69\xa6\x8b\x8e\x33\x33\xa2\x6d\x3d" "\xd3\x90\xef\x9b\xc0\x1b\x86\x01\x3f\xbc\xb5\xc2\x8a\x1f\x4d\x2b\x80\x84" "\xf1\x50\x2f\xcc\xc4\x02\x7a\x12\x4c\x36\x29\xd8\xf4\xa8\xbe\xfd\x14\xb5" "\x97\xce\xbd\xa5\xf9\x4f\x36\x05\x0a\x31\xb9\x50\x87\xcb\xac\x34\x77\x88" "\xa7\x1a\x90\xe8\x7f\x21\x87\xfa\xe6\x00\xaa\x42\x71\x9c\x05\xc2\x85\x9c" "\xb3\x0a\xe0\xfd\x58\xa7\xbb\xa6\x81\xf7\xa6\x02\x7a\x00\x58\x30\x71\xde" "\xf2\xc9\xa9\x44\x56\xe5\xd9\xac\xb9\xfd\x2d\x11\xfd\xea\x52\x45\x82\x48" "\x9c\x02\x37\x7b\xf7\xf5\x90\x94\x89\x85\xc7\x69\xb3\x82\x2c\xb6\x36\x66" "\x81\xd7\x91\x13\xc6\xa6\xc7\x52\xf2\x47\x5c\xab\xa7\x7b\x7b\x2e\x8f\x29" "\x3d\x7f\xd9\xb9\x91\xf6\x3e\x25\x4c\x98\xde\xc9\x4f\x4f\x3d\xef\x4f\xee" "\x9c\xdb\x56\xff\x3b\xa7\xfe\x6a\x71\x8c\xbe\x9a\x7f\x04\x71\x0e\x25\x7e" "\xa8\xa4\x9d\x66\x05\x26\x60\x48\xfc\x12\x2d\x4f\x31\x73\xd4\xb0\x4b\x3e" "\x28\x2b\xd3\xc5\x19\x8d\x7f\xcb\x72\xec\x38\xe0\xb0\x7d\xd8\xa5\x41\xb2" "\x80\x7e\x60\x1e\x5a\x0a\x01\xf0\x7a\x28\x1e\x0e\x1a\x26\x1c\x65\x97\x70" "\x88\xa5\x45\x97\xef\xd0\x99\x7c\x59\x64\x7a\xee\xbb\x26\x05\xa8\x97\x05" "\xee\xff\x3e\xc7\x80\xe3\x02\xe2\x4b\x23\xa0\xcb\xe4\xf8\x13\x67\xc3\xf1" "\x18\x54\x5f\x01\x32\x8d\x22\xeb\x8e\x80\x26\x67\x38\x91\x43\x16\x6a\x9d" "\xb9\x47\x7c\x9b\x58\xeb\x5c\x76\xa1\x9b\x8f\x8b\x26\x92\xb0\xd3\x56\x00" "\x3f\x08\xae\x54\xdf\xc8\x20\xd8\xe3\x57\xec\xbf\x91\xfb\x7e\x21\x2c\xbe" "\xf1\x26\x21\x71\xab\xaf\x2f\x61\x3a\x5b\xb5\x9b\x78\x3c\xad\x47\x6f\xec" "\x50\xd1\x6c\xa0\xac\x13\xc0\x8a\x59\xa3\x09\x7e\x6e\x3f\xde\x70\x0a\x4b" "\x98\x7d\x10\x31\x1f\xc2\x2d\x4a\xa2\x10\x95\x6c\xd8\x59\x79\x9f\x78\x01" "\x0e\x4c\x0f\x25\xb7\x15\x87\x6a\xa2\x53\xdf\x15\x00\x94\x90\xf7\x1b\xe3" "\xb0\x02\x28\x75\x16\x1f\x53\x7c\x70\xb1\x4b\xdb\x9e\x2d\x87\xa5\xa1\x1b" "\x41\x4a\x11\x98\x53\x3c\x7d\xe6\xfc\x4d\x22\x22\x81\x33\xbc\x26\xb1\x9d" "\x9f\x1e\x76\x27\xb1\x4c\x72\xe3\xc3\x9d\x3f\xa2\x18\x6a\x42\xe5\x0a\x0d" "\x18\x67\xdc\x31\x2f\x94\xc7\x20\x9d\x51\x47\x5e\xd4\xaa\x80\xb2\xcc\xb0" "\x55\x7a\x40\x42\x2b\xf7\x31\x7d\xe2\xfd\xf3\x29\x67\x27\x72\x3a\x2d\x23" "\xba\xbd\x5e\x23\xf7\xc3\xed\xf4\x94\x2b\xb4\x85\xb9\x5a\x12\x2e\x6a\xba" "\x41\xb8\xf8\x0f\x68\x4f\x84\x60\x54\x62\x44\x8d\x5a\x4f\xd6\x6d\xfe\x9b" "\xbf\x80\x59\x0b\x99\x99\xb4\x78\x0d\x4f\x4f\x18\x9a\x20\xf4\x40\x0b\x29" "\x75\xdf\x85\xb5\x84\xc8\xc8\xf9\xfa\x30\x95\xf1\x3a\xed\xe1\xf5\x2d\xac" "\x98\xbe\x35\x8b\x0a\x0d\x72\xbe\xd4\xdf\x71\xcd\x23\x97\x3e\x32\x61\x79" "\x58\x02\x68\xc4\xe5\xd1\xbe\x4b\x2a\xe2\xe1\xe2\xdb\xa9\x13\x99\x8f\xaa" "\x60\x88\xaf\x12\x8f\xc8\xfd\x3a\xe2\x62\x03\xa8\x98\x88\x2b\x67\xd8\x6d" "\x63\xf6\xee\x8f\x8e\x21\x63\x37\x33\x0d\xb6\xd9\x28\xfa\xcf\x9d\x0c\xa2" "\x73\x84\x5e\xe5\xb3\x3a\x0a\x13\x6a\xeb\x48\xb7\xc5\x2d\x3b\x95\xfe\x73" "\xef\xaf\x06\x19\x7e\xc8\x75\x3e\xe0\x34\x9f\x19\xdb\x87\x30\x91\x7d\x0f" "\x18\xa2\xde\x96\x02\xd3\xb8\x87\xbc\x58\x3f\xf6\x4d\xfe\xe6\x7e\x2b\xdf" "\x4d\x5c\xc1\xc3\x41\xb8\x9a\xcd\x3d\xd5\x17\x6d\x2c\x15\xec\x2a\x77\x12" "\x0b\x8a\x49\x59\x1c\xa4\x38\xae\x36\xc5\x28\x45\xe5\xdc\xa5\x50\xe5\x39" "\xda\x9b\xa2\xa2\xed\xa4\x9b\xe3\x16\xf3\xd6\xd4\xb7\xc8\x36\x66\xbd\x47" "\x59\x94\x03\x47\xc2\x9d\xed\xd2\x73\xad\xac\x72\x26\x30\xa9\x40\xe1\x04" "\x31\x6b\x48\x06\x55\x3d\xed\x47\x13\x2b\xe4\xe3\x1a\x50\x60\x0f\x5a\x4d" "\xd5\x68\x25\xb2\x45\xb7\xaa\xe8\x53\xf5\x6f\x79\xe0\xec\x31\xf7\xb5\xdb" "\x94\x5e\xe3\xbb\x92\x86\x5a\xcb\x0d\x88\x28\x59\x8e\x77\x44\x6e\xe5\x0e" "\xcd\x8b\xf5\xe7\xcc\xbd\x96\x34\x45\xa0\x9e\x3b\xe2\x15\x70\x9b\x0b\x3b" "\xff\x2e\x9d\x12\xe6\x54\x99\x24\x33\x8f\x23\x6b\x4f\xf9\x73\x68\x2e\x2e" "\x03\xfb\xf6\xb1\x67\xe3\xb3\xa0\xf8\xc3\xf3\xc1\xe8\xd0\xe2\x1a\x71\x93" "\x7c\x91\x8c\xab\xab\x50\xdd\x74\xc0\x11\xa1\xa5\x53\x1c\xfc\xf8\x8a\x5d" "\xf5\xfa\x58\xf1\x77\x15\xf7\xc7\xb3\xa6\x4d\x9d\xab\x6f\x20\xa5\x96\x28" "\x89\x69\x19\x14\x20\xed\x71\xda\xcc\xba\xe7\xc1\xec\x88\xbf\x74\x81\x1b" "\x5e\x1f\x4b\xd3\x06\xf3\xd8\x10\xc4\xf3\x60\x0d\xf2\x90\x3f\xfd\xf8\xdb" "\x40\xac\x71\x53\xfd\x93\x32\x7a\x10\x65\xcf\x2c\x45\x90\xc8\xba\x9f\x93" "\x91\xeb\x6a\xa6\x00\xcb\x42\xaf\xf8\x79\x3e\x47\x21\xaf\xeb\x3d\x47\x0b" "\xed\xa4\x5d\xad\x9a\xdf\xc6\xf4\xfd\xb2\x4e\xaf\xc6\x37\x92\xf5\x01\x5c" "\x65\x6c\xa3\x7c\xee\x82\xb7\xee\x38\x2b\xda\x31\xd7\x86\xd6\xe0\x3d\x4c" "\x86\x11\xc4\xca\x46\x4e\x23\x60\xca\x74\x78\x15\xc9\xee\xbd\x38\xc8\xfc" "\x7d\x5e\xea\x2d\xb9\x6b\x29\xd7\x71\xa9\x6d\xc5\xc8\x84\x02\x90\x77\x12" "\x5b\xcc\x31\x98\x05\x64\x55\x5d\x21\xec\xce\x5d\x03\x88\xe1\xbc\x1e\x61" "\x8c\x7d\xfb\x31\xb0\x2b\x1a\x67\x30\xdb\x7e\xda\x38\x7d\xd4\xce\xb9\x6f" "\x65\x17\x8b\xb0\x88\xe8\x11\x33\xe5\x08\x6f\x73\xc4\x58\xf8\x41\x39\x68" "\x5e\xf9\x30\x94\x5a\x51\x97\x9f\xae\xab\x53\x9e\x49\x64\x24\x47\x09\xdc" "\xb8\xb3\x8f\x57\x5d\x3a\x3e\xc1\x32\x8a\x0d\xf6\x5f\xb3\x42\x41\xdb\x7c" "\xb3\x25\x0b\x8a\xe0\xdb\xc4\x46\x70\xd2\xb5\xcc\x3a\x17\x85\xd8\xd2\x81" "\xc0\x52\x56\xef\x2b\xee\xe3\xb2\x02\xd8\xbc\xe0\x53\xe5\x5c\xe1\xfb\x2b" "\xb2\x08\xe6\x5d\x48\x8a\xe2\x44\x84\xb0\x0c\x2e\x34\x3f\xc3\x54\x4c\xa5" "\x46\x40\x66\x88\x02\x2d\xb6\xe2\x9c\xec\xa9\x53\x9e\xc0\x95\xa2\xa2\xcf" "\xc5\xf5\x16\x23\x0f\x75\xfc\x96\x1c\x5d\xe1\xe8\xd3\x32\x22\x33\x1f\x57" "\xdb\x02\xca\xc5\xf9\x20\x80\x29\xc6\x11\x4d\x04\x1b\xb1\xcc\x7f\x95\x9f" "\x77\x51\x1f\x57\x90\xa5\x64\x60\x0c\x01\x8a\xfc\x25\x3e\x5e\xcd\x50\x10" "\xbd\x76\x9b\x45\xa0\x42\x96\xca\x09\xe8\x7f\xb6\x3b\xf3\xd3\xb5\x1d\xd8" "\xb3\xf6\xd4\x42\x6a\x03\xc0\x94\x4d\x09\xdf\xf6\x54\xc5\x71\x8a\xb1\xfe" "\xf0\x63\xca\xba\x34\x02\x9b\xe6\x81\x15\x02\xe8\xbb\x78\x50\x11\xdd\x1e" "\x34\xb0\xc1\x92\x91\x5a\xde\xeb\x40\xfa\xad\x07\x25\xa8\xf9\xa6\x2a\xcf" "\x61\xb9\x44\xa2\x71\xd2\x05\x67\xf3\x50\xcd\xee\x22\xd7\x6e\x3c\xc5\x96" "\x6b\xa7\x42\xd9\xc4\x38\x23\xaf\x19\xba\x74\xc6\x0d\xa0\xdf\x0c\x5f\x4e" "\x7e\x26\xaf\x72\x24\x14\x77\x74\xa1\xf8\xae\x09\xf9\x29\x06\x6e\x17\x69" "\xff\xb3\xc4\x0b\xa9\xfe\xd1\x3d\x26\x70\xb9\xe8\x65\xa1\x55\x42\x6e\xd5" "\xc8\x36\x48\xc0\xad\x34\xe4\x6f\x53\x08\xb4\x55\xe0\x83\x57\x30\xfe\x52" "\x96\x68\xb6\x06\xf3\xf5\x2b\x0d\x04\x53\x4d\x0e\x14\xbc\x0f\xf0\xf7\x42" "\x35\x95\x50\xe6\x98\x0a\xc9\x97\x84\x55\xad\xb3\xde\x0f\x29\x2a\xf1\x2a" "\x37\x00\x45\x3e\x03\x5a\x49\xea\xfe\x98\xfc\x0d\x7f\x26\xe4\x2a\x6c\x41" "\xf3\x80\x44\x86\x07\xb7\xc9\x62\x91\xf9\x8f\xa6\xbb\xd7\xe3\x2c\x24\x9a" "\x49\x17\x1f\x8f\xa8\x17\x62\xa4\x90\xa1\xce\x5c\x39\xd6\x6d\x35\xc6\xed" "\x6c\x06\x79\x44\x0c\x06\x19\x7c\x2e\x24\xd4\x8e\x1d\xe8\x1c\x71\x11\x64" "\xc0\x28\x20\x81\x6a\xfb\x53\x93\xd3\xd6\xc8\x01\xc3\xc0\x62\xac\x46\xd1" "\x49\x4f\x52\xc4\x5c\xa3\x6f\xaf\x94\x89\x4e\xec\x9d\x71\xe1\xbe\x6c\x72" "\x56\xf4\xae\xe8\xdc\x08\x01\x56\xb2\x86\x23\xc8\x21\xef\x8d\x18\x26\xeb" "\xf0\xa4\x13\x32\x62\x0f\x42\x58\x92\x70\xe1\x42\x56\x13\x74\xc8\x25\xe8" "\x28\xe2\xbd\x9a\xe4\x1f\xd3\x49\x59\xdb\x48\x31\x9d\x54\xff\xe7\xa1\xb5" "\x8a\xe8\xf7\x36\x1c\xba\xee\x8e\x26\xe0\xe7\xe1\xb7\xf1\x25\xf8\xcd\x99" "\x78\x88\x25\xef\xd0\x1c\x38\xec\x98\x79\x04\x19\x0a\x0a\xd5\x2b\xc2\x0c" "\xd3\x6c\xc7\x20\x9f\x92\x69\xac\x87\xb2\xfa\x44\xd2\x45\x66\x61\xd3\x05" "\x6d\x89\x3c\xf9\x12\xc6\x9a\xe6\xb2\xb8\x3d\x0c\x78\x1a\x6d\x6c\x33\xdf" "\x19\x10\x86\x7b\x71\x25\x7a\xb7\x4e\x24\x4e\x3e\xbb\xac\x07\x44\x50\x69" "\x41\x8f\xe2\xe4\x40\xa3\x84\xe1\x6f\xee\xdf\x8e\x31\x65\x67\x6e\x67\x86" "\x64\x30\xeb\x6a\x8a\x53\x34\x62\x0d\x8c\x2c\xda\x15\xb0\x32\x8b\xb0\xc5" "\x06\x30\x88\x63\x53\xf9\x52\x41\xcf\x4f\x3b\x64\x7a\x4f\xf8\x12\xc7\x0e" "\x1b\x07\x4c\x4b\xef\xdc\x70\xfb\xfd\xbf\x86\x8b\xcc\x81\x65\x20\x34\xb5" "\xbf\xa8\x31\xf1\xb6\x86\x72\x40\x46\xdc\xd1\x7a\xc9\x1a\xce\x83\x71\x1e" "\x9e\xc7\x46\x5d\x14\xc9\xd5\x08\xbc\xe9\x36\x76\xa5\x8e\xf7\xda\xe3\x72" "\x21\x43\x68\x65\xad\x34\xac\x2f\xd6\x91\xe3\xb3\xe1\x2a\xee\x67\x36\xdb" "\xde\xec\x9b\x1c\x05\xfc\xed\xf8\xb9\xce\xd5\x47\x25\x9a\x1a\x40\x47\x1e" "\xbe\x8b\x4b\xfd\xa6\x9d\x2f\x88\x4d\xa0\x25\xe2\x80\x9f\xb9\xf1\x59\x15" "\x0b\xbc\xb3\x31\xca\x3c\x50\x20\x12\xa7\xfe\x76\xb4\xfc\x27\x71\x97\x6a" "\xeb\x62\x4a\xd7\xf2\xd7\x2c\x70\x7f\x5f\x19\xd8\xde\xd8\x45\x81\xac\x5a" "\xfa\x69\x7f\xf9\x9d\x27\xd8\x8c\x95\x88\xfe\x76\x98\x39\xc9\xcc\x9d\x67" "\x86\xa0\xf8\x14\x66\x75\x27\xc5\x3b\x62\x53\xb1\x82\x5b\xfe\x17\xe7\xd7" "\x34\xd9\x6d\x61\xda\x0a\xe7\x34\x9d\x09\x22\x77\x4f\xa9\xb4\xba\xf3\x32" "\xa4\x56\x8e\x32\xca\xfa\x41\x7e\xc6\x59\xc4\xad\x72\xcd\x65\x6a\x1e\x2c" "\x59\xc8\xde\xe3\x88\x90\xed\x3a\xcd\x8b\x4f\x86\x57\xde\x41\xf6\x70\x10" "\x6c\x38\xc3\x8b\xa1\xa5\x53\xf0\xf5\x89\xa5\x7c\x61\xf5\x10\x5d\x70\xe0" "\xc0\x95\x34\x59\x38\x3c\xb9\x33\x7c\xa9\x72\xcd\xa1\xd2\xcd\x30\x56\xeb" "\x07\xf2\x1c\x1f\x5b\x99\x5a\x04\x99\x7f\xec\xf5\x01\xbb\x20\x1c\x67\xfd" "\x2a\xfe\x4d\x44\xfe\xde\xa5\x95\x96\x9b\x6b\x37\x06\x08\x7b\x0f\x59\xd2" "\xdd\xbb\x09\x9d\x60\x43\x6a\x94\xf0\xba\x33\x28\x2b\x29\xf6\xe9\x14\xfe" "\x92\xad\xd4\xb3\x3c\xf7\x0b\x68\x0b\x90\x5c\xfa\x2b\x2c\xcb\x00\xb9\x96" "\x7f\x99\x80\x6e\x8d\x69\x78\x3f\xd3\x5a\x2d\x7f\xbb\x42\x4e\x9f\xde\x26" "\x47\x60\x9a\xec\xb0\x20\x8b\xc3\x86\x4b\xf9\x5f\x05\xe5\x0b\xa1\x21\x23" "\xed\xac\xa8\xde\x92\x7b\x33\x8d\xfc\xb3\xcc\x59\x79\x47\xc6\x06\xc0\x83" "\x15\x06\x1a\x7f\xec\x98\xc4\x8f\x48\x0e\x2f\xeb\xd2\x6f\xcc\x8d\xc1\x22" "\x89\xae\xb0\xad\xef\xa2\xc2\xbe\x17\x66\xa5\xbc\x74\xef\x1a\xab\x6c\x2c" "\xdb\xdf\xbf\x18\x10\xd9\x56\xbc\x88\x9c\x8e\x61\x4b\x7b\x93\x3f\xf6\xe3" "\x36\xbb\x20\x8d\xb5\xb5\x92\x77\x5f\xe7\x1c\x3e\xbf\xad\x5f\x47\xe0\xd0" "\x74\xe1\xc0\xcb\x36\x76\x14\x81\xec\x67\x77\x94\xf2\x3c\x36\x98\xbd\x35" "\x87\x57\x19\xf2\x42\xe3\xfc\x93\x9b\xc3\x66\x8f\x97\x23\xf3\x1e\xff\xe1" "\x89\xda\xbd\xf4\xeb\xbe\xd0\x73\xea\xb9\x52\xc8\x8f\x13\x05\x9e\xee\x22" "\x23\x0b\xc7\x72\x4d\x72\x66\xb1\x57\x26\xa0\xb0\x89\x8c\xdd\x27\x4e\x3e" "\x56\xd0\xa3\x56\x16\x6b\x5d\x16\x45\x62\x49\xe9\xe9\x2e\x84\xe3\x9f\x61" "\xc0\xec\xdf\x99\xec\x2c\xd2\x30\x44\x0c\x03\xfd\x21\xcf\x68\xf2\x73\x06" "\x62\x8d\x35\xea\x47\x36\x77\x75\xf3\x9d\x20\xa0\x7f\x39\x59\xb3\x8d\x49" "\xe3\x67\x40\x61\xfc\x10\x18\xb6\x47\x04\x7a\xd3\x9f\x77\x02\x78\x78\xba" "\xdd\x29\x92\x7c\x58\x06\xf9\x5a\xeb\xde\x5f\x07\x0f\xed\x28\xed\x34\x05" "\x25\x50\x67\x8d\x3c\x6b\x67\x7a\x3b\x5a\x46\xf7\x6a\x98\x26\x4c\x42\x20" "\x6b\xf6\x2c\xaa\x95\xdf\x54\x37\x09\x2b\x68\xe0\x25\xee\x9c\xe2\xad\x73" "\x3b\x6d\xb3\xec\x97\xfd\x33\xcd\xc3\xb2\xf7\x7e\xe9\x0d\xd8\x6d\x8b\xd2" "\x89\xae\x1a\x43\x7c\x86\xf4\x15\x3d\xdc\xff\x5e\x84\x63\x47\xbf\xec\xc1" "\x49\x9b\xb4\x29\x80\xe4\xfa\x91\x79\x0f\xae\xe1\xb1\x99\x1d\xfe\xad\x5d" "\x7c\x46\x03\x48\x63\x1f\x04\x69\xb2\xb9\xe8\xf6\x52\x07\xa0\x09\x85\x51" "\x1e\x0c\x41\xf4\x41\xd9\xa3\x15\x4f\x5a\x02\x98\xc1\x72\xfd\x71\x35\xd4" "\xbf\x95\xc1\x1c\xdf\x17\x69\xdb\x1c\xc5\x5f\x39\x2a\xec\x30\x90\x37\x59" "\x93\x27\xa7\xc5\x3c\x10\xa5\x6d\x1a\xce\x8a\xd1\x91\x86\xa2\xfc\x75\xdf" "\xa9\xd6\x57\xc1\x14\xea\xe9\x9c\x1c\x1a\x6b\x4a\x58\x44\x07\x18\xbe\xa8" "\x22\x90\xbd\x1c\x2a\x67\x04\x89\x38\xc3\x81\x64\x8e\xa2\xb2\xc7\x11\x0d" "\x74\x8c\x9c\x8d\x78\x2f\x20\x43\x0b\x14\x27\xb5\x1d\x70\x36\xe5\x5b\x09" "\x97\xc6\xf7\x57\x17\xdb\x67\xa8\x2c\x88\xd3\x64\x7e\xe0\x36\xb4\x93\x92" "\xf0\x46\x7d\x60\x10\xb3\x2f\x9d\xe3\xe5\xe7\x9e\xf0\x82\xc5\xbb\x97\x5d" "\x11\xd2\xbf\x76\xa9\x7f\x71\x59\xc1\x1a\x77\x53\xdb\x8a\x06\x5d\x31\x26" "\xcc\xda\x9a\xbb\xeb\xd2\xc5\x43\x74\xe3\x89\x94\x2c\x24\xb2\x74\x35\x86" "\x8f\xad\xb4\x5b\xb0\x60\xd3\xc1\x08\x4b\x21\x1e\x2a\xfa\x8d\xfa\xa2\xd8" "\xda\xb8\xdc\x47\xfe\x10\xe6\xc3\x2a\xfe\xce\x7c\x49\x76\x17\x6a\x7c\x66" "\xd7\x04\x12\x5c\x09\x48\xc2\x38\xc8\x43\xb4\x1b\x02\x46\xbe\x1f\x50\xf8" "\xe0\x78\x84\xcf\xe7\xae\x88\x85\xca\x06\x33\x9a\x33\x9c\x8d\x59\x78\xb0" "\x79\xe0\xeb\x78\xfa\xcf\xa1\xdc\x67\xca\x70\x73\x3d\xfe\xfc\x6c\x86\x8c" "\xa1\x49\xe0\x66\x1b\x70\xe0\x13\x48\x70\xa3\x10\x7c\x8c\x46\x71\x1f\xed" "\x14\xf8\x92\xd6\xfc\x66\xd9\x53\x06\x83\x86\x88\xf1\x3b\x19\xe9\x04\x41" "\x6a\x8d\x16\x1c\xc3\x35\x27\x87\x8b\x38\xad\x10\xb1\xc0\x8d\xb2\x14\x57" "\xb2\x07\x56\x08\xbe\x73\x00\xd3\x97\x48\xe4\xfc\xeb\xe0\x2b\x19\x0f\x3e" "\x8e\xd3\x2a\x0e\xf7\x34\xb1\x1c\xa4\x3a\x21\xf5\xf8\x09\xbb\xa7\x95\xf5" "\xaa\x0e\xa0\x10\x50\x02\x1d\x0f\x52\x13\x62\x0a\xf5\xb0\x8f\xda\x64\x21" "\xa4\x2b\x7c\x82\x80\x4a\x20\xa6\xef\x6d\x47\x1b\xab\xf7\x6f\x46\x53\x83" "\x27\xf9\x43\x47\x6d\x1d\x10\x9a\x3f\x0d\xc5\x31\x23\x3d\x6f\x93\xd8\xdc" "\x27\xf4\x74\x57\x35\x08\x5f\x92\xad\xf6\x3d\x61\x7b\x37\x3f\xba\x24\xf2" "\x89\x03\x57\x10\xe6\x9e\xb8\x0d\xa1\x2d\x36\xe8\xea\xec\x22\x62\x0f\xfa" "\xab\xad\xfb\x82\x4b\xd5\xfc\x30\x9a\x2c\x74\x95\x95\x05\x85\x6b\x5b\x89" "\x0b\xba\x8f\x22\xbc\x57\x1a\x9d\x87\xe9\x3b\xa3\xb9\xab\xa6\xdc\xf2\x6f" "\x70\x76\xc0\xc2\xe2\x71\x64\x18\x35\xea\x25\xfd\x49\xd9\x6c\x69\xd4\xfb" "\x8b\xb8\x73\x1b\xd2\xcb\xc7\x51\x46\xae\xd1\x0d\x26\x9f\x90\x60\x46\x23" "\x39\xcd\xe8\x83\x0b\x53\x59\x20\xbe\x3d\xbf\x14\x3e\xac\xe0\xf1\xea\x94" "\x69\xb9\x5a\x64\xfb\xd7\xe5\x05\x7e\xb8\x80\xd4\x42\x2c\xbf\x97\xcf\xc3" "\xf7\x14\x02\x51\xd4\x92\x35\x80\xca\x21\x13\xf3\x45\xcf\x24\xa6\x64\x99" "\xce\xff\xd2\xe3\x9d\xc4\xfd\x74\xcf\x44\x86\x38\x96\x29\x57\xb4\x09\xf0" "\xd2\x18\xc1\x65\xc1\x3f\xfe\x10\x7a\xa1\xdd\x1d\x9a\x02\x09\x2c\xd4\x6c" "\xf2\xb3\x53\xdd\x2d\x2c\xa7\xb8\xa7\xae\x8e\xda\x0e\xe1\x8b\xba\x26\x9b" "\xbf\xfe\xd0\xc7\xd4\x00\x49\x7a\xee\x4d\xa0\x89\x6c\xf6\x32\x9d\x76\xcc" "\xea\x09\x8f\xbe\xf9\x07\x54\x12\xd1\xc2\xa3\x64\x4c\xf0\xf2\x02\xb8\x84" "\x30\x3d\x20\x43\x14\xae\x92\xc5\x62\x17\xb2\xfe\xb5\xe7\xc1\xe1\x5a\x99" "\xfb\xdd\x65\x5f\xb8\xf6\xbb\xc3\xab\x12\x59\xbf\x03\xb2\xee\x17\xc5\xb7" "\xe9\x44\x36\x95\x17\x7e\xc5\x04\x0e\xef\xf3\xfc\x36\xce\xaf\xe1\x43\x39" "\x3d\x76\xa3\xd7\x35\xcf\xe6\xc9\xb6\x32\xe5\x2d\xbe\x64\xdc\x12\x65\x96" "\x1e\x8a\x27\xee\x9f\x76\xc0\xad\xd9\xe0\x58\x1e\x47\x4d\x76\x78\x21\x4f" "\x5b\x64\xc9\x32\x90\x37\x15\xbe\xfc\x6b\x76\x66\x11\xf1\xd7\xe4\x95\x57" "\x3b\x9a\x3e\x00\x9c\xfc\xb0\xff\xef\x7a\xc5\x7c\x35\x61\xba\xdb\xfa\x41" "\xc1\x19\xe5\x41\x18\x0a\xa2\x36\x4d\xe6\x1a\x60\x16\x99\xcd\x1b\xf3\xde" "\x01\xd1\x57\x94\xb7\x28\xe1\x44\x4e\xfd\x6f\xfa\x1e\x57\xd9\x54\x89\xc8" "\xdf\x91\xfb\xc0\x57\xb6\x6d\xd6\xd9\xf3\xa0\x1b\x19\xf3\x6b\xc9\x9f\x0b" "\x54\xed\x1f\x99\x05\x06\x7d\xd1\x60\x8b\xce\x47\xf5\xff\x19\x81\xa2\x51" "\x84\xaa\xcd\x39\xe3\x31\xd8\xff\x3d\xfa\x7c\x01\x2d\x7e\x66\x7a\x69\x24" "\x9c\xb4\x80\x3b\x23\xf7\xee\xaa\xb8\xed\x29\xc6\x9b\xa3\xd2\xa1\xb8\x88" "\x21\xff\xef\xc5\x82\x56\x50\xc5\x3b\x63\x64\xf3\x8e\x0a\x17\x83\x12\xf5" "\xd2\x9d\x53\x75\x42\x3c\xce\xab\xc8\xe1\xc4\xe5\x1a\x56\x6b\xa3\xf9\xb1" "\x76\xb8\x58\xc8\x86\x04\x40\xff\x8e\xbd\xde\x72\x56\x40\xd2\xdf\xf6\xb9" "\x16\x0b\xb6\x9f\x18\x87\x55\xb0\xff\x76\x6b\x41\x07\x04\xcd\xa4\xc3\x3e" "\x1a\xe2\xc7\x3b\x57\x99\xa0\x0d\x2f\x55\xde\x73\x10\x97\x28\xb3\x50\x30" "\x2b\x64\xdf\x2c\xe3\xea\xf2\xe0\xc6\x56\x10\x09\xb6\x0c\x27\x01\xac\x49" "\x30\x76\x30\x5e\x97\xed\x20\xc3\xb4\x2f\x40\xb2\xbc\x7f\x13\xbb\xa4\xab" "\x81\x81\xe2\x08\x5b\x07\x93\x0c\x6f\x55\x79\x20\x5d\xff\x69\x69\x02\xbe" "\x82\x4e\x65\xdd\xc7\x74\xe8\x86\xe8\xd2\x61\xfe\x74\x71\x2a\x31\xe4\x06" "\xb0\xf7\x72\x5b\x45\x59\xd7\xad\x0f\x27\xa1\xa8\x70\x26\x1a\xa5\xbb\x8a" "\x72\x0e\x7c\x89\xba\x93\x37\x70\xd4\x88\x21\x41\x6d\xe0\x70\xdf\x1a\xbc" "\xc6\xee\xe1\x14\x7c\x20\xbd\xa0\x90\xd9\x40\xae\xee\x2b\xd4\x8c\x0f\x3d" "\x94\x67\x5d\x9b\x9c\xf1\xa6\x2b\xa5\x0e\x31\xa7\xaf\x07\x14\xdd\x83\x25" "\xd5\xfb\x71\x42\xe8\x8c\x4d\x22\xdd\xb8\xf0\x27\x8e\xe6\xba\x88\xe3\x61" "\x52\x4e\x29\x1b\x6d\x00\x0f\x65\x23\xad\x41\x88\xb0\x21\xda\x9e\xf4\xa6" "\x34\xed\x09\xeb\x20\x02\xb9\xc7\x26\x74\x6c\x9f\xfc\x32\xf2\x61\xed\xb4" "\x48\x10\x6a\xa1\xe2\xda\xae\xd8\x65\x25\x5f\xd1\xd2\x96\xfe\xdb\xbb\x2d" "\xe3\xf7\xc1\xf1\x59\x35\xe5\x20\x06\x49\x2b\x63\x2a\xd1\x25\xaa\x1e\x00" "\x0c\x9d\x71\xbd\xb9\x45\x79\x26\x68\xe1\x6b\x26\x12\x2a\x3f\xd7\xcb\xa1" "\xa4\x0d\xb8\x08\x30\x68\xc5\xc4\x8f\xd2\xaa\xa6\x21\xc8\x7d\x9f\x56\x21" "\xbb\xa4\x42\xfc\x26\x83\x90\x30\xdb\xe4\xe3\x7f\xda\x40\x46\xd6\x50\x3b" "\xb0\x3e\x0f\x92\x8d\xe2\x5d\x4c\xd4\xe2\xa4\x0e\xc9\x3c\x90\x21\xdf\xcb" "\xb2\x5f\x6e\x2c\x94\x3c\xc8\x5e\xba\x81\x23\x34\x0d\x63\x64\x94\x95\x81" "\xe8\xc8\xc2\x91\x3d\x59\xda\xfe\x42\x97\x67\x2c\x0b\x9e\x74\x18\x48\x5f" "\x00\xcb\xcf\x67\x2a\x58\x89\x04\xbe\xb3\xc0\x74\xbe\xbf\x33\x98\x15\xb9" "\x1c\x7c\x37\x4c\xee\xd5\xa7\x01\xe1\xad\xe8\xf5\xd8\x7c\xa5\x36\x12\x01" "\x16\x30\x7a\xc2\x59\x57\x7a\x8e\x12\x95\x84\x25\x31\x7c\x48\x2d\x2c\x70" "\x89\xbf\x3d\x83\xe1\x23\x18\xd1\x52\x61\x07\xa0\x50\xf3\xc0\x94\x49\x2d" "\xe7\x25\x5b\x22\xe1\x8c\xa2\xff\x26\x1b\x3e\xd1\x97\xf2\xf8\xe6\x7b\x71" "\xb1\xc5\xa6\xa0\x4b\x99\x15\x8b\x58\xe9\xba\xad\x75\x20\x1a\xab\xe1\x32" "\x54\x61\x7d\x0d\xe0\xa9\x07\x3a\xf6\x24\x91\xc6\x7f\xc1\x8d\x1c\xcb\xf7" "\x68\x6a\x85\xa9\x9b\x39\xe9\xd7\xd9\xc8\x5a\x07\x77\xe4\x7c\x9f\xd0\xe1" "\x0c\x93\x2c\x20\xf1\x3e\xf2\x87\xb4\x4b\x9b\x70\x6e\xc8\x18\xaa\x0c\x48" "\xa1\x0c\xaa\xc5\x8a\x9b\x83\x55\xe8\x4b\xc8\x20\x69\x8c\x25\x01\xf0\xc1" "\x2e\x1b\x67\xdf\x70\x1c\xfc\xbe\x72\xdc\x47\xa2\xc8\x7d\x43\x75\x3e\xbf" "\xdb\x24\xcc\x83\x85\x07\xe2\x41\xd9\xfc\xd3\xd4\x95\x5a\x37\x32\x09\xcc" "\xda\x90\x3a\x3f\xfc\xed\x05\xe4\x23\x2f\x2c\xca\x9b\xba\x19\x7f\xdb\xa8" "\xa9\x35\x7c\xb1\xd6\xda\x6d\x9b\x40\x95\x02\x7d\xc0\x3e\x17\xd5\x9e\xbc" "\x2d\x35\x8e\x17\x1d\xa0\x04\x4d\xf1\x02\xb1\x93\xc7\x93\x90\xeb\xcb\x58" "\x02\x3b\x40\xc6\x21\xdf\x71\xe0\x64\xb0\x05\x6b\xfc\xf1\xea\xee\x1e\xca" "\x85\x35\x7c\xd1\xac\x78\xfe\xaa\x54\xbb\xbd\x85\x59\x69\x77\xba\x85\x00" "\x3e\xa6\x0d\x86\x85\xf4\xe3\xb7\x56\xe4\xf8\x14\x53\x07\x73\x96\x59\x0f" "\xa2\x14\xf6\x72\x92\x9e\x81\x56\x94\x42\x02\x36\x67\xb7\x98\xc2\x4e\x06" "\xee\x20\xdb\xf6\x4c\xfc\xcb\x51\xb2\xbc\xa4\xe2\xa5\xb0\xdf\x13\x7b\xb3" "\x7a\xb3\xe2\x85\x4d\xc7\xe1\xb8\x79\x86\x6a\x72\xa5\x80\x9b\x56\x35\x96" "\xcc\x9f\xd3\xe5\x3a\xbd\xbc\xcf\xd5\xdb\xc6\x06\x62\x25\x2d\xdc\x5c\x29" "\x0d\x72\x23\x0d\x79\xb7\x50\x4b\x40\xfd\xb4\x5d\xed\x2f\x02\xe9\x26\x65" "\x2c\x1e\x04\xea\x4c\x1c\x48\x80\x25\xad\x10\x98\xad\xee\xbe\x98\xe3\x85" "\xab\x1c\xae\xc4\xb9\xeb\x4d\x3b\xbd\x5e\xf3\xdd\xf1\xfd\x0d\x72\x78\x46" "\x04\xa9\x89\x55\x8f\xd3\x7f\x6d\x4f\xee\x20\x60\x90\x90\xb3\x33\x1e\x25" "\x4f\xec\x98\x41\x4a\x2c\x54\x58\x9e\xe0\x1c\x94\x29\xb7\xcb\x57\x4b\x91" "\x67\xef\xed\xe1\xd9\x66\xa2\x27\xbf\x2a\x8e\x42\x2f\x38\x68\x0d\x77\xd3" "\xc5\x55\xcf\x11\x17\xe7\xd7\xe8\x04\xad\x73\x0c\x36\xa7\x8b\x78\x46\x47" "\x3d\x64\x81\xbd\x08\x39\xbd\x3e\x69\x82\xed\x47\x24\x6c\x37\x0a\x90\xb7" "\x6e\x5b\x88\xde\x20\x23\x46\xfb\x20\xb8\xb6\xb5\xec\xb6\xa9\x0b\x84\x78" "\xd1\x7b\x17\x5a\x18\x21\xdf\x75\xb4\x8e\xcc\x34\x86\x6f\xe5\xc8\x96\x0b" "\xf6\x4d\x5f\xf9\x28\x31\xbb\x93\x57\x47\x4b\xec\x65\xe0\xdd\x16\x99\xb0" "\xf0\x34\x0e\xe5\xac\x5e\x9e\x9d\x3d\xf6\x6e\xdc\xa2\x02\x01\x37\x1f\xc2" "\x1a\xd8\x0a\xac\xd4\x9c\x6b\x0a\xbc\xfe\xe9\xc8\x76\xc1\x5e\xdc\xfc\xcd" "\xe8\x23\xb5\x5b\x61\xcb\x7b\x25\x44\x87\xef\x8c\x87\x81\xa2\x20\x43\xf4" "\xad\xaf\x25\xdf\x34\x58\x0a\x6b\x39\x04\xfd\x01\x4b\x50\xc5\x9f\xa9\x0e" "\xff\x75\xfa\x5f\xd3\x2a\xae\xc9\xaa\x10\xdf\x8a\x2b\x9b\x82\x49\x52\xe4" "\x75\xc9\x64\x53\x39\x42\xbb\xe3\x0f\x41\x67\xa1\x1f\xc1\x5d\x54\x8e\x0a" "\x31\xf9\x11\x03\x05\x69\x72\x2f\x0c\x67\xe7\x9e\x90\x48\x3f\x6f\x0b\xee" "\x1c\x7f\x80\xfa\xce\x1a\x1b\x0f\x94\x0c\x89\x1b\xe6\x88\xcb\x16\x39\x4f" "\x6c\x07\xfd\x29\xb5\xf2\x48\xc2\x11\xd1\xf7\x6e\xc1\x29\x27\x55\xd8\xbd" "\x96\x3e\x19\x1b\x3a\x88\x51\x47\x2f\xbb\xd2\xcb\x73\x2f\x4f\xd9\xfe\xf3" "\xa8\xfb\x29\xae\xa0\x97\x32\x81\x73\xfd\xea\xf5\x6f\xa2\x27\x9e\x86\xfb" "\x95\x43\x06\xb0\x40\xc9\x60\xd0\xb6\x01\xb3\xa7\x41\xc9\x6c\xf1\xf0\xbd" "\x11\x72\xf8\x48\x58\x5c\xb3\xb5\x7d\x7d\x2e\x2a\x84\x91\x45\x26\xf5\xa6" "\xf9\x89\x5c\xf5\xaa\x44\x25\xb4\xdb\xf9\xf5\x90\x37\x75\x6a\x03\x21\xbb" "\xa2\x04\xa7\x37\xe3\x62\x77\xe8\x6f\xd2\x68\xf6\x04\x79\x21\xf4\xf8\xfa" "\xb6\x9d\xfe\xe1\x37\xc0\x78\x74\xf1\x2f\x89\x08\x4e\x71\x17\xe2\xc9\x22" "\x16\x90\xa2\x7f\x88\x0f\x17\xd0\x8d\x56\xf9\xdb\xc9\x6f\xfe\xf3\x92\x0b" "\x55\xfb\x77\x3d\xde\x72\xe1\xba\x35\xf3\xe0\xc9\x87\x2e\x33\x95\x08\x28" "\x14\x26\xab\x04\x94\x1d\xf4\x88\x5f\x7e\x02\x93\x14\x9f\x16\x42\xc2\x57" "\x3e\x2b\x65\x94\xb8\xfd\x95\x3a\xe2\x46\x8c\xf9\x17\xcd\xaa\x06\x92\xcf" "\x46\x1e\x36\x28\x86\x09\x35\xde\xf3\x9a\xf7\x8a\xf5\xe1\x54\x01\x47\xab" "\x1c\x70\xc3\xab\x7f\x7c\x76\xab\xea\x0d\x85\x41\xfe\xb4\x3e\x63\x2d\x7a" "\x2c\xc7\xbe\xf1\x5a\x47\x00\x30\x40\x48\xec\xf1\x35\x96\x8d\x0a\x96\x44" "\xce\x89\x9a\xad\x05\xb1\x86\xa2\x22\x4b\xab\x38\x36\x24\x8c\xc6\x13\x74" "\x72\x20\x3e\xbc\xeb\x29\xb3\xe8\x76\x10\xdf\x12\x41\x7e\xe7\x22\xf3\x09" "\xc5\x4b\x2e\x65\x59\x1d\x8b\x92\x94\x40\xf3\xec\x43\xee\x9f\xf8\xf7\xb7" "\x71\x06\x68\xe4\x31\x26\x10\xd1\x59\x13\x03\xd5\x27\x03\x94\xda\x0a\xb6" "\x1e\x45\x15\xaf\x52\x15\xdc\x81\x13\x7f\x0d\xc9\x0f\x95\x19\x72\x73\x1f" "\x8d\x98\xce\xb8\xb4\xea\x38\xda\x7d\x8d\xc1\x53\xcc\xba\xe5\x06\x87\x81" "\xea\xf9\xa4\xa7\xb1\x1b\x43\x19\x09\x02\x61\xb6\x1a\xa6\x5a\x85\x36\x29" "\x2e\xb5\x39\x20\x20\xeb\x28\x5b\x2d\xb0\x7f\x81\xe7\xf7\x64\xd6\x50\x37" "\x05\x0f\x1e\x37\x48\x59\x34\x74\xc6\xc1\xdc\x11\xcf\xcb\x56\xe1\xc9\x16" "\x15\x72\x80\x09\x8a\x43\x72\x65\xe1\xc6\x82\xcb\xfe\xd7\x17\xe7\x27\x5b" "\xc6\xc3\xbb\x6c\x6e\xf7\xf0\xf9\xfd\xd1\x9e\xf8\x2f\xf2\xc8\x22\x84\xc3" "\xa0\x61\xf5\x7b\x21\xd3\x70\x5a\xff\x97\x71\x01\x08\xa7\xd1\x21\x7a\x7e" "\xa3\xfe\xda\x02\x1d\x20\xf1\xfd\xca\x94\xbb\xef\x67\xe0\xae\xaa\x3d\xb6" "\xcc\xc2\xd0\x60\xf7\xb3\x37\x07\xfe\x19\xcb\x2d\x02\x32\xf1\x23\x93\x73" "\xbb\x38\xe6\x66\xcb\xbb\xf3\xa6\x97\xc6\xd0\xe9\x57\xec\x67\x30\xf5\x60" "\x34\x44\x0e\x78\x9a\x7a\x37\x30\x4d\x09\xeb\x74\x2f\x21\x01\x9a\x77\xc6" "\x08\xcf\x57\x81\x62\xa5\x5d\x0a\xea\x11\x3c\x05\x1b\x11\x0b\x52\x81\xed" "\x8b\x66\x38\xd2\xb3\x16\x04\xe9\x65\xcb\x01\x9f\x2f\x10\x6b\xc4\xe9\x6d" "\x13\x13\xc7\x06\x12\xf1\xff\x18\xaf\xdc\xe7\x92\x62\x70\xdd\x24\x2c\x49" "\xcc\x53\x79\x2f\x16\x0d\x1e\x14\x3e\x04\xd7\xeb\x3c\xa4\x08\x28\xb1\x53" "\xfa\xc4\x66\xbc\x53\xa0\x84\x28\x19\x87\xb4\x7b\x80\x6a\x4e\xf6\x68\x85" "\x9e\xb9\x03\x5e\xf6\x8e\x9c\x20\xbd\x6b\xb7\x90\xfd\xf6\xf9\x21\x56\x9b" "\x4e\x97\xfa\xe5\xb7\xed\xc7\x61\xb4\x94\x4c\x1d\x6d\x90\xf4\xdf\x40\xbc" "\x32\x03\xed\x83\x8d\x4c\x61\xcd\xeb\x7a\x9b\xbb\x68\xd5\x9b\x2c\xc0\x01" "\x25\xee\xca\xf0\x6b\x75\x9a\xc1\xb9\xdd\x68\x02\x82\x25\xd0\xa6\x0e\xfa" "\x49\x9e\x44\x36\x96\x23\x62\x72\x70\x11\xee\xf6\xcc\x55\x96\x2d\xd4\xff" "\xe2\xfd\x38\x92\x90\x7e\x83\x70\x45\x88\x3c\xc9\xba\x88\x92\xab\x26\x5a" "\x31\x92\x4f\x30\x55\xd4\xde\xe6\x8f\xef\xf0\x5d\x9f\x10\xeb\xdf\x1e\x8c" "\x1c\x1e\x70\x01\xb5\xb0\x2a\x7f\xe2\x6b\x9c\x06\x41\xe0\x54\xae\x37\x85" "\x41\x87\xfb\x1b\xb6\xe9\xfa\xe0\x5b\x09\xe8\x5a\x1e\x0e\x14\xbc\x80\x1f" "\x2d\x8b\x9a\x17\x8a\x9a\x72\xb1\x47\xe1\x37\xe0\xd8\x31\x92\x66\x4a\x88" "\xa3\xac\xa4\xfb\x6a\x4f\x0c\x57\x87\xb2\x0c\x31\xbc\x59\x75\xdf\xbc\x8b" "\xcf\xf8\x98\x75\x73\xbd\x14\xb1\xca\x43\x4d\x93\x45\x2e\x67\xed\x01\xc6" "\x0b\xe9\x9e\x53\x5b\xb3\xf8\x48\x88\x8d\x22\x45\x20\xb6\x1c\xfc\x1d\xe2" "\xd6\xb2\xeb\xef\x9f\x24\x67\x4c\x31\xaa\xda\x52\x78\x4a\x0b\x7b\x60\xf3" "\x51\x65\x3c\x71\xd5\x46\xcf\x95\x1e\x6b\x4a\x0d\x91\x7a\xc6\xaf\xd0\xa7" "\x13\xf4\x18\x33\xf9\xf7\x4a\x3a\x7d\x3c\x19\xb5\x23\x29\x96\x66\xda\x2b" "\x48\x67\x6c\xa7\xaa\xfe\xba\xde\xf0\x5b\x3b\xbf\x4b\x6b\x62\x83\x40\x46" "\xf5\x1d\x3d\x45\x82\xfb\x4c\x9d\xe2\x7a\x3f\x5e\x99\x28\x53\x36\x8e\x4f" "\x17\xf9\xdb\xa2\x7c\x8c\x44\x38\x30\x7f\xc7\x40\x5f\x53\xfb\x27\xcc\x81" "\xc1\x52\x14\x52\xa1\xa5\xed\xb0\xca\xbd\xf7\xa7\x3b\x1c\xab\x06\x75\xb6" "\x19\xfd\x5a\x0f\xad\xb7\x14\x77\x76\xe7\x46\x95\xc0\x42\xd9\xd8\xbf\xda" "\x04\x5b\xce\xf7\x54\x2b\x42\x24\x9f\x34\xc7\x59\x06\x05\xd0\x20\x1a\x76" "\x23\x90\xf2\xfe\xe5\xf3\xcd\xb4\x88\x42\x66\x09\xc6\x63\xc9\xfc\x4d\xc2" "\xa5\x27\x7f\x3f\x58\x9a\x14\xe6\xdc\xc2\x02\xdf\xcd\x89\xbb\x14\x8a\x36" "\x8f\xf1\x79\x2d\x23\x0c\x19\x93\x41\x43\xd2\xc2\x60\xdb\xdf\xb3\x34\xaf" "\x86\x3b\x85\x6e\x41\x5f\xeb\xd2\x2f\xba\x01\xc5\x68\xd8\xf4\x8d\xba\x6d" "\x92\xf4\x93\xcd\x11\x64\xa3\x76\xf0\x06\xd5\x5d\xb6\x09\xcc\x2c\x95\x32" "\xa9\xf5\x6d\xa3\xb0\x6e\x3d\xb2\xa0\x5f\x79\x7e\xed\x57\x89\x2e\x2f\xb6" "\x77\x54\x13\x24\xbc\xd7\x63\xcf\x46\x69\xe7\xa8\x71\xe3\x22\xd0\xcc\x6e" "\x21\xbe\xfe\x3c\x76\x79\x76\xf0\x58\xdb\xe7\xa0\x59\xd6\x73\xc9\x4c\x7a" "\xc5\xd4\x91\x78\xbf\x19\xd3\x29\x07\xb6\xfe\x66\xa9\x2c\xc8\xea\x30\xa8" "\x58\xda\x43\xf7\x43\x54\x39\x0d\x6e\x97\x02\x1d\xa5\x08\x12\xc5\x9a\x78" "\x91\x5e\x5b\x33\x22\x15\x31\xbf\xa0\x54\xc5\x94\xce\x3a\x23\x00\xe5\xa7" "\xd7\x12\x77\x31\x81\x90\x1d\xfc\xf6\x92\x2e\x98\x05\x66\xfa\x62\xb1\xf2" "\xb6\x69\xa2\x7f\xbe\xcc\xe2\x9e\x9b\xe6\xd2\x20\x58\x46\x3e\x35\x01\x63" "\xf3\x3d\x18\xce\x92\xa7\x2d\x1b\x47\x08\x57\xb6\xa3\x79\x98\xae\xc5\x67" "\x25\x21\xa8\xf0\xd6\x6a\xb2\xbd\x01\xde\x51\x60\x36\xec\x47\xd1\xf6\x3b" "\x95\xb4\x37\xdc\x6d\x5a\x01\x68\x18\x9d\x5a\x96\x3c\xb0\xa8\x0a\x9a\x5f" "\x20\xb0\x35\x15\x39\x6e\x35\x25\xf0\xab\x13\xb0\xc1\xe5\xdd\x05\x1b\x4c" "\x93\x0d\xa6\xd5\x7a\xb6\xf7\xdd\x94\xab\x3e\x68\x9e\x03\x55\xaf\x0b\x34" "\x87\x12\x96\x15\x2a\x76\xcc\xe1\x70\xd7\xb1\x4d\x47\x1e\xe4\xd9\xda\xa9" "\x3d\xe4\xed\x75\x5f\x30\xd4\x53\x44\xf7\x24\x28\x8c\x17\xe4\xb2\x25\x83" "\x15\x8f\x13\x05\xff\x55\xfe\xcf\x7d\x52\x6e\x20\x7f\xa6\x09\x88\x6e\x14" "\xc9\xa1\x68\xbf\x36\x4b\x04\x94\x09\xf6\x35\x90\xf1\x8a\x55\x15\xde\x8c" "\x1f\xd8\xc5\xa9\x71\x0b\x6e\x33\xd2\xec\xd0\x14\x66\xb7\x99\xf1\x4b\xe7" "\x87\x61\x2b\x8f\x17\xdf\x0c\x05\x48\x3a\x16\x09\x7c\x0a\x50\x48\x80\x24" "\x9e\x28\xf1\xe0\x67\x66\x3c\x64\x0a\x55\x0a\x8c\x7a\xd9\xd0\x90\xf7\xb2" "\xe9\x02\xc5\xc2\x09\x36\x86\x9a\x5f\x3d\x3a\x01\x48\x17\xf9\x0b\xab\xf8" "\x47\xb4\x3c\xf6\x7e\xc2\x3f\x12\x0a\xe4\xab\xc6\x3a\x41\x8d\x1d\x99\xf3" "\x59\xfc\x2c\x33\xa5\xbb\x34\xe1\xf5\x78\x05\x76\x11\x1a\x88\xc5\xed\xe8" "\x34\xbc\x41\xe4\x98\x54\x8d\xdd\x12\x8f\x9e\x88\x4f\x4c\xd3\xe1\xbf\x1a" "\xaa\x12\x04\x07\x9c\xe7\x4e\x70\x93\x06\xf3\x8f\x2d\x68\x59\x12\x8f\xc3" "\x5d\x3a\x74\xc5\x34\xff\x1d\xcc\xad\xfc\x8f\xe4\x1f\x1b\xe9\x51\x03\x49" "\xaf\x87\x10\xeb\x6d\x2d\xbc\x75\x8b\xe1\x2b\x65\x62\x2d\xad\x1c\xf4\x8a" "\xbc\x2f\xc4\x09\xf5\xed\x6a\x3a\xf8\xd0\xb6\x54\x86\x43\xc4\x6d\xfb\xa9" "\xdb\x4e\x58\x27\x47\x5e\x6e\x31\x7c\x9c\x01\x8a\x4d\xd5\xde\x39\x1c\xc9" "\xcc\xa8\x5e\xc5\x27\x53\x7e\x26\x94\x9e\x50\x91\xba\xca\x4f\x0b\x56\x3d" "\x4c\x39\x69\xf1\x51\x15\xe5\xcc\xde\xb9\xe4\x07\x88\xfe\x12\xf9\xd3\x2d" "\x94\x88\xa7\x0a\xe5\x3b\x81\x97\x26\xe4\x48\x3e\xa6\xbb\xcb\x76\xf9\x97" "\x75\xca\x5e\x4f\x93\xc7\x6e\xda\xe4\x62\xc0\x8d\x59\x62\x09\xf9\x85\xaa" "\x55\xef\x5e\x78\x67\x01\xed\xce\xe8\xd8\x31\xdd\x6d\xc0\xfe\xe9\xad\x01" "\xb6\xbd\xd6\x3e\x88\x6a\x5e\x55\xbd\xc5\x93\x39\x0c\x81\xe1\x8d\xfd\x8c" "\x68\x5b\x81\x30\x6b\xad\x6b\x7a\x19\xa8\x6b\x2b\xab\x5c\xbf\x47\x54\x70" "\x84\x22\xe9\x9f\x8f\x24\x97\xd7\x98\xb3\xdb\x56\x5e\x70\x9b\xcb\xba\x4c" "\x37\x6c\x1c\x60\xb2\x2b\x99\x4f\xe8\xfd\xcb\x25\x21\x5d\x50\x55\x11\xcc" "\x19\x27\xf6\xa3\x53\x44\x02\x3d\x5d\xa0\xa3\xac\x08\x30\xe6\xaa\x80\xf5" "\xf7\xf0\xd9\x4a\x67\xc9\x9c\x6b\x22\x71\x70\x78\xae\xcb\xa2\xa5\x99\xda" "\xa2\xac\xc0\x54\xcd\xa2\x5e\x39\x65\x17\x2e\x5f\xef\x46\x4e\xc1\x9a\xa7" "\x1d\xe5\xe8\x4b\x6d\xe3\x0c\xc6\x73\xfb\xab\x8c\x44\x1e\xa3\x7b\xfb\x3f" "\xc3\x21\xa5\x04\x37\x1b\xc0\x99\x67\x02\xe9\xbe\x38\xdb\x76\x2e\x33\x9a" "\xd7\xad\x66\xdc\x2c\xaa\x88\x7e\x4a\xb6\x02\x72\xd7\x96\x3f\x85\xb1\x4c" "\x94\x1d\x31\xe5\x45\xb8\x5c\x64\x04\x27\x30\x2e\xfe\x71\x42\xf0\xe0\x89" "\x7a\x8c\x62\x3c\xe5\x7d\xa2\x13\xfb\xc2\xd1\xf9\x06\x77\x14\x2f\xd4\x8c" "\xaf\xca\x0b\x29\x34\xe5\x72\x83\x3e\xd6\x47\x32\x18\xd0\x51\x3d\xd1\xf6" "\xec\xc5\x78\xe5\xa1\x10\x9d\xda\xe5\x52\xb3\xbe\x0c\xfe\x72\x46\xd7\x68" "\x2a\x59\xfe\x9a\xe7\x83\xa0\xf3\x18\xd1\x80\x0d\x5c\x46\x6c\x80\xc5\xfd" "\x3f\xac\xd0\x34\x0f\x45\x5f\x08\x10\x68\xdd\x2c\xda\x5c\xda\x74\x40\x18" "\xd9\x02\x21\x71\x52\xb6\xc0\x5d\x37\xc0\x90\xf8\x34\x8b\x04\x71\x05\x31" "\x52\xc2\xa4\x57\x0f\xba\xb3\xf6\xdc\x30\xc8\xe4\x9a\x63\xb8\x8a\x00\xb3" "\xaa\xc7\x51\x80\xa6\x33\x69\x2e\x35\xea\x97\x68\x21\x69\x4e\x13\x3e\xb8" "\xbb\x4d\x31\x23\x7d\x00\x2f\xce\x1d\xd2\xce\x55\x52\x8d\xaf\xce\xf2\xf0" "\xe0\x06\x90\x56\x2d\x14\x4b\xb0\xe1\x95\x76\xce\x6a\xb7\x2d\xea\xc2\x20" "\x67\xd8\xed\xac\x91\x6b\x1b\x07\xe4\xeb\x57\xff\x0b\x88\x5b\x1b\x79\xf3" "\x7d\xcf\x88\x13\x5e\xed\xc1\x7f\xfd\x94\x8b\x61\xe4\xdf\x49\x85\x03\x3b" "\xcf\x89\x1d\xd5\xb1\x44\x8c\x86\x68\x94\x7a\x27\x1d\x93\xd0\x3c\xe3\x12" "\x16\x81\x0a\x6b\xb4\x5a\x6c\x5a\x12\xe2\x90\xd9\x7a\x60\xad\x4b\x5c\x73" "\x84\xcf\x19\x42\x1a\xc1\xca\x64\xd3\x46\xb5\x07\x71\xe0\xb5\x0e\x5c\xaf" "\x1d\x9d\xfe\x05\x6e\x8d\xa2\x47\xaa\x50\x2f\xf0\x4c\x8e\x29\xca\x81\x0a" "\x1d\x3e\xc7\xa8\x9b\xc1\x7d\xba\x29\x36\xf0\x3a\x80\x22\x81\x71\xf7\x99" "\x9b\x3f\x27\x68\x61\x79\x70\xef\xe5\x7b\x14\x01\x1c\x80\x66\x6a\xc4\x99" "\x9a\x56\x8e\xbe\xf7\x4e\x2c\xa1\x4d\xf0\xff\x6f\x0f\xcd\x47\xc5\x38\xbe" "\x96\xaa\xca\x1e\x65\xb5\x3b\x98\x44\x71\x01\xe4\x96\x72\xb4\x81\x67\xc0" "\xaf\xc1\xaf\xff\xe6\x69\xb0\xf9\x71\x8b\xd3\x30\x58\x05\xc2\x92\xdb\x97" "\x38\x74\x0b\x36\x25\x64\xe4\x69\x1c\xbd\xf0\x61\xdb\x1e\xd3\xf9\xdb\x1f" "\x8b\xed\x82\x93\x9f\x83\x5d\x14\xf4\x68\x18\xe3\xeb\x4e\x25\xf7\xa8\xd7" "\x7d\x9d\x0d\x79\x13\xc4\x5d\x8a\x81\x11\x5c\x1a\x5e\x37\xb1\xd3\xbd\x1b" "\x7b\x5e\x6a\xfa\xae\xfc\x81\xd9\x70\x0b\xf8\x35\x06\xfb\xf1\x54\x57\xbc" "\x0f\x59\xf7\x00\x8c\xc8\x03\xef\xdc\xb6\xd3\x9e\x38\x8f\x6b\x28\xe8\x0d" "\x47\x13\x42\x65\xcc\x54\x38\x80\x4b\x12\xd5\x0e\x61\xa4\x89\xda\x82\x9d" "\xca\x05\x79\x2d\x2a\xc1\x82\xba\x74\x73\x31\xe8\x8a\x71\x18\xf7\xdd\x38" "\x06\x7f\x7d\x38\xf3\x7b\xe3\x62\x26\x0e\xff\xac\xbc\x33\x86\x3b\xb4\x7a" "\xee\xbb\xad\xea\xe6\x48\xa1\x09\x07\x18\x26\x6e\xed\xd2\xed\x5a\x2c\x23" "\xf1\x68\x75\x91\x98\xaa\x92\xb2\xac\x45\xc2\xa6\x8f\xf2\x12\xf2\x92\x60" "\xe6\x41\xa3\x85\x41\xb0\x66\xd3\x9d\xf4\xe9\x5c\xd1\xc8\xe7\xe6\xff\xae" "\x1b\x80\x17\xe6\xf6\x29\xdb\x39\x10\xb0\x74\x96\xc8\xa8\x1e\x4e\x66\xac" "\x23\x21\xfd\x9e\x7e\xbf\xec\xf5\xbf\x6e\x92\x2d\x7a\x79\xfb\x71\x0a\x2d" "\x42\xda\xd1\x91\x6c\x9b\x18\x6c\x2c\x50\xc8\x18\xfd\xb1\xaf\xa1\x9b\xe8" "\x67\xd9\x43\xee\x98\xf7\x32\xfe\x3a\x01\x36\x42\x81\xc0\xf6\xd0\xeb\x64" "\xa2\x78\x72\x1d\xc7\xbf\xf5\x31\x62\x56\xb0\xf4\x25\x1a\xbb\xd9\xb8\xba" "\x7c\x7c\x12\xa3\xbf\x02\xa1\xfb\xc9\xca\x94\xb9\x65\x58\x8f\xbc\x82\x34" "\x3d\x07\xdf\x8e\x06\xea\xa5\xed\x21\x37\xfe\xc1\x29\x35\x1d\x80\xa9\x04" "\x8a\x7d\x78\xb3\x1f\xfa\xf2\xe3\x88\x86\x4a\x76\x3c\x4a\xf7\xaa\x53\x00" "\x0e\x0b\xb2\xeb\x8a\xc0\xe4\x27\x2c\xbb\x79\xdc\x6a\x7d\x65\x89\x0f\x12" "\x5c\x52\x3c\x7c\xfd\xda\xcd\xed\xbe\x87\x93\x8a\xca\x91\x5c\x92\xc8\x07" "\xda\xb2\x6b\xe7\xd7\x48\x82\x7d\x4e\x31\x88\x67\x63\x12\xef\x1a\xc8\x46" "\x0b\x29\xe8\xe7\x15\xf4\x07\x5e\x33\x10\x4c\xe8\x2e\x67\x85\xaa\xdf\x17" "\xa7\xcf\x82\xd2\xa7\x05\xe9\xf2\xd0\xfd\x25\x81\x0b\xa3\x3d\x76\xe5\x4b" "\x48\xed\xa3\xef\xfc\x01\xf3\x7c\x89\xdb\x38\xaf\x81\x92\x2f\xad\xc8\xc3" "\x36\x1f\xe7\x4e\xd5\x1e\xac\x5e\x44\x37\x10\x81\x06\xff\xde\xdb\x33\x9b" "\x40\x6c\x08\x2d\x62\xa8\xbf\x71\x89\x89\x84\x6d\x23\xf9\x66\xe1\xea\x39" "\x10\x30\x10\xf7\x67\xb3\xa6\xf0\xa0\xa2\x04\x1b\x1d\xaf\xcb\x78\x7e\x69" "\xff\xad\x75\xed\x2a\x00\x81\xb9\x2a\x41\x36\xad\x5a\xe5\x57\xc5\x5a\x4b" "\x62\x19\xa3\x90\x10\x34\x28\x18\x1a\xb3\x6f\x32\x9a\xd1\x82\xa9\x29\x57" "\x49\x5c", 8192); syz_fuse_handle_req(/*fd=*/-1, /*buf=*/0x200000000000, /*len=*/0x2000, /*res=*/0); // openat$kvm arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6b 76 6d 00} (length 0x9) // } // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_kvm memcpy((void*)0x200000000000, "/dev/kvm\000", 9); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000000ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; // ioctl$KVM_CREATE_VM arguments: [ // fd: fd_kvm (resource) // cmd: const = 0xae01 (4 bytes) // type: intptr = 0x0 (8 bytes) // ] // returns fd_kvmvm res = syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xae01, /*type=*/0ul); if (res != -1) r[1] = res; // ioctl$KVM_CREATE_IRQCHIP arguments: [ // fd: fd_kvmvm (resource) // cmd: const = 0xae60 (4 bytes) // ] syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xae60, 0); // ioctl$KVM_CREATE_VCPU arguments: [ // fd: fd_kvmvm (resource) // cmd: const = 0xae41 (4 bytes) // id: intptr = 0x2 (8 bytes) // ] // returns fd_kvmcpu res = syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xae41, /*id=*/2ul); if (res != -1) r[2] = res; // ioctl$KVM_SET_VCPU_EVENTS arguments: [ // fd: fd_kvmcpu (resource) // cmd: const = 0x4400ae8f (4 bytes) // arg: ptr[in, kvm_vcpu_events] { // union kvm_vcpu_events { // arm64: kvm_vcpu_events_arm64 { // serror_pending: int8 = 0x10 (1 bytes) // serror_has_esr: int8 = 0x2 (1 bytes) // ext_dabt_pending: int8 = 0xb6 (1 bytes) // pad: buffer: {00 00 00 00 00} (length 0x5) // serror_esr: int64 = 0xffffffffffffffff (8 bytes) // reserved: 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 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 0x30) // } // } // } // ] *(uint8_t*)0x200000000140 = 0x10; *(uint8_t*)0x200000000141 = 2; *(uint8_t*)0x200000000142 = 0xb6; memset((void*)0x200000000143, 0, 5); *(uint64_t*)0x200000000148 = -1; memset((void*)0x200000000150, 0, 48); syscall(__NR_ioctl, /*fd=*/r[2], /*cmd=*/0x4400ae8f, /*arg=*/0x200000000140ul); // ioctl$KVM_RUN arguments: [ // fd: fd_kvmcpu (resource) // cmd: const = 0xae80 (4 bytes) // arg: const = 0x0 (8 bytes) // ] syscall(__NR_ioctl, /*fd=*/r[2], /*cmd=*/0xae80, /*arg=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }