// https://syzkaller.appspot.com/bug?id=f2940f7d9fee418623152855d1658924b594e6c3 // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_preadv2 #define __NR_preadv2 327 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static struct nlmsg nlmsg; #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE {0x08, 0x02, 0x11, 0x00, 0x00, 0x00} #define WIFI_IBSS_BSSID {0x50, 0x50, 0x50, 0x50, 0x50, 0x50} #define WIFI_IBSS_SSID {0x10, 0x10, 0x10, 0x10, 0x10, 0x10} #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, dofail); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate, bool dofail) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex, dofail); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props, bool dofail) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC, dofail); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props, dofail); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) exit(1); struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) exit(1); int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); if (hwsim_family_id < 0 || nl80211_family_id < 0) exit(1); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props, true) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP, true); if (ret < 0) exit(1); } close(sock); } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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_loop() { setup_cgroups_loop(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); 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; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x8800 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x0 (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x8000000000000000 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x21 (1 bytes) // size: len = 0x60e4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x60e4) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000040, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000000, "./file0\000", 8)); NONFAILING(memcpy((void*)0x200000000300, "nodiscard", 9)); NONFAILING(*(uint8_t*)0x200000000309 = 0x2c); NONFAILING(memcpy((void*)0x20000000030a, "quota", 5)); NONFAILING(*(uint8_t*)0x20000000030f = 0x2c); NONFAILING(memcpy((void*)0x200000000310, "quota", 5)); NONFAILING(*(uint8_t*)0x200000000315 = 0x2c); NONFAILING(memcpy((void*)0x200000000316, "errors=remount-ro", 17)); NONFAILING(*(uint8_t*)0x200000000327 = 0x2c); NONFAILING(memcpy((void*)0x200000000328, "integrity", 9)); NONFAILING(*(uint8_t*)0x200000000331 = 0x2c); NONFAILING(memcpy((void*)0x200000000332, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x200000000341 = 0x2c); NONFAILING(memcpy((void*)0x200000000342, "noquota", 7)); NONFAILING(*(uint8_t*)0x200000000349 = 0); NONFAILING(memcpy((void*)0x20000000034a, "uid", 3)); NONFAILING(*(uint8_t*)0x20000000034d = 0x3d); NONFAILING(sprintf((char*)0x20000000034e, "0x%016llx", (long long)0)); NONFAILING(*(uint8_t*)0x200000000360 = 0x2c); NONFAILING(memcpy((void*)0x200000000361, "discard", 7)); NONFAILING(*(uint8_t*)0x200000000368 = 0x3d); NONFAILING(sprintf((char*)0x200000000369, "0x%016llx", (long long)0x8000000000000000)); NONFAILING(*(uint8_t*)0x20000000037b = 0x2c); NONFAILING(memcpy((void*)0x20000000037c, "nointegrity", 11)); NONFAILING(*(uint8_t*)0x200000000387 = 0x2c); NONFAILING(memcpy((void*)0x200000000388, "errors=remount-ro", 17)); NONFAILING(*(uint8_t*)0x200000000399 = 0x2c); NONFAILING(memcpy((void*)0x20000000039a, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x2000000003a9 = 0x2c); NONFAILING(memcpy((void*)0x2000000003aa, "gid", 3)); NONFAILING(*(uint8_t*)0x2000000003ad = 0x3d); NONFAILING(sprintf((char*)0x2000000003ae, "0x%016llx", (long long)0)); NONFAILING(*(uint8_t*)0x2000000003c0 = 0x2c); NONFAILING(memcpy((void*)0x2000000003c1, "noquota", 7)); NONFAILING(*(uint8_t*)0x2000000003c8 = 0x2c); NONFAILING(memcpy((void*)0x2000000003c9, "uid", 3)); NONFAILING(*(uint8_t*)0x2000000003cc = 0x3d); NONFAILING(sprintf((char*)0x2000000003cd, "0x%016llx", (long long)0)); NONFAILING(*(uint8_t*)0x2000000003df = 0x2c); NONFAILING(*(uint8_t*)0x2000000003e0 = 0); NONFAILING(memcpy( (void*)0x200000006500, "\x78\x9c\xec\xdd\xbd\x8f\x1c\x67\x1d\x07\xf0\xdf\xec\xdb\xbd\x84\x38\xa7" "\x14\x51\xb0\x10\xba\x38\xe1\x25\x84\xf8\x35\x18\x43\x80\x24\x05\x14\x34" "\x29\x90\x5b\x64\xeb\x72\x89\x2c\x1c\x40\xb6\x41\x4e\x64\xe1\x8b\xae\xa1" "\xa0\xe2\x2f\x00\x21\x51\x22\x44\x89\x28\xf8\x03\x52\xd0\xd2\x51\x51\x61" "\xc9\x46\x02\xa5\x62\xd0\xdc\x3d\x8f\x6f\x76\xbc\xeb\x3d\xc7\xbe\x9d\xbd" "\x9b\xcf\x47\x3a\xcf\xfc\xe6\x99\xbd\x7d\xe6\xbe\x3b\xfb\xe2\x99\xd9\x27" "\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\x80\xf8\xfe\xf7\x7e" "\x70\xa6\x88\x88\x4b\x3f\x4f\x0b\xd6\x22\x3e\x13\xfd\x88\x5e\xc4\x4a\x55" "\xaf\x47\xc4\xca\xfa\x5a\x5e\x7f\x10\x11\xcf\xc7\x4e\x73\x3c\x17\x11\xc3" "\xa5\x88\x22\x37\x3e\x13\xf1\x5a\x44\x7c\x7c\x2c\xe2\xee\xbd\x5b\x1b\xd5" "\xa2\xb3\xfb\xec\xc7\x77\xff\xf8\xf7\xdf\xfd\xf0\xa9\xb7\xff\xf6\x87\xe1" "\xa9\xff\xfe\xe9\x46\xff\xf5\x69\xeb\xdd\xbc\xf9\xab\xff\xfc\xf9\xf6\xa7" "\xdf\x5e\x00\x00\x00\xe8\xa2\xb2\x2c\xcb\x22\x7d\xcc\x3f\x9e\x3e\xdf\xf7" "\xda\xee\x14\x00\x30\x17\xf9\xf5\xbf\x4c\xf2\xf2\x23\x5f\xff\xfa\x9f\x6f" "\xff\x65\x91\xfa\xa3\x56\xab\xd5\x6a\xf5\x1c\xea\xba\x72\xb2\xdb\xf5\x22" "\x22\xb6\xea\xb7\xa9\xde\x33\x38\x1c\x0f\x00\x87\xcc\x56\x7c\xd2\x76\x17" "\x68\x91\xfc\x3b\x6d\x10\x11\x4f\xb5\xdd\x09\x60\xa1\x15\x6d\x77\x80\x03" "\x71\xf7\xde\xad\x8d\x22\xe5\x5b\xd4\x5f\x0f\xd6\x77\xdb\xf3\xb9\x20\x63" "\xf9\x6f\x15\xf7\xaf\xef\x98\x36\x9d\xa5\x79\x8e\xc9\xbc\x1e\x5f\xdb\xd1" "\x8f\x67\xa7\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff\x5e\x33\xff\x4b\xbb\xed" "\xa3\xb4\xde\x41\xe7\x3f\x2f\xd3\xf2\x1f\xed\x5e\xfa\xd4\x39\x39\xff\x7e" "\x33\xff\x86\xa3\x93\x7f\x6f\x62\xfe\x5d\x95\xf3\x1f\x3c\x52\xfe\x7d\xf9" "\x03\x00\x00\x00\x00\xc0\x02\xcb\xff\xff\xbf\xd6\xf2\xf1\xdf\xa5\xc7\xdf" "\x94\x7d\x79\xd8\xf1\xdf\xf5\x39\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e" "\xb4\xc7\x1d\xff\xef\xbe\xc2\xf8\x7f\x00\x00\x00\xb0\xa8\xaa\xcf\xea\x95" "\xdf\x1c\xdb\x5b\x36\xed\xbb\xd8\xaa\xe5\x17\x8b\x88\xa7\x1b\xeb\x03\x1d" "\x93\x2e\x96\x59\x6d\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0" "\x25\x83\xdd\x73\x78\x2f\x16\x11\xc3\x88\x78\x7a\x75\xb5\x2c\xcb\xea\xa7" "\xae\x59\x3f\xaa\xc7\xbd\xfd\x61\xd7\xf5\xed\x87\x2e\x6b\xfb\x49\x1e\x00" "\x00\x76\x7d\x7c\xac\x71\x2d\x7f\x11\xb1\x1c\x11\x17\xd3\x77\xfd\x0d\x57" "\x57\x57\xcb\x72\x79\x65\xb5\x5c\x2d\x57\x96\xf2\xfb\xd9\xd1\xd2\x72\xb9" "\x52\xfb\x5c\x9b\xa7\xd5\xb2\xa5\xd1\x3e\xde\x10\x0f\x46\x65\xf5\xcb\x96" "\x6b\xb7\xab\x9b\xf5\x79\x79\x56\x7b\xf3\xf7\x55\xf7\x35\x2a\xfb\xfb\xe8" "\xd8\x13\x32\x4c\x7f\xcd\x29\xcd\x2d\x85\x0d\x00\xc9\xee\xab\xd1\x5d\xaf" "\x48\x47\x4c\x59\x3e\x33\xed\xcd\x07\x8c\xb1\xff\x1f\x3d\xf6\x7f\xf6\xa3" "\xed\xc7\x29\x00\x00\x00\x70\xf0\xca\xb2\x2c\x8b\xf4\x75\xde\xc7\xd3\x31" "\xff\x5e\xdb\x9d\x02\x00\xe6\x22\xbf\xfe\x37\x8f\x0b\x1c\x48\x1d\x71\xb0" "\xbf\x5f\xad\x56\xab\xd5\x6a\xf5\x43\xeb\xba\x72\xb2\xdb\xf5\x22\x22\xb6" "\xea\xb7\xa9\xde\x33\x18\x8e\x1f\x00\x0e\x99\xad\xf8\xa4\xed\x2e\xd0\x22" "\xf9\x77\xda\x20\x22\x9e\x6f\xbb\x13\xc0\x42\x2b\xda\xee\x00\x07\xe2\xee" "\xbd\x5b\x1b\x45\xca\xb7\xa8\xbf\x1e\xa4\xf1\xdd\xf3\xb9\x20\x63\xf9\x6f" "\x15\x3b\xb7\xcb\xb7\x9f\x34\x9d\xa5\x79\x8e\xc9\xbc\x1e\x5f\xdb\xd1\x8f" "\x67\xa7\xf4\xe7\xb9\x39\xf5\x61\x91\xe4\xfc\x7b\xcd\xfc\x2f\xed\xb6\x8f" "\xd2\x7a\x07\x9d\xff\xbc\x4c\xcb\xbf\xda\xce\xb5\x16\xfa\xd3\xb6\x9c\x7f" "\xbf\x99\x7f\xc3\xd1\xc9\xbf\x37\x31\xff\xae\xca\xf9\x0f\x1e\x29\xff\xbe" "\xfc\x01\x00\x00\x00\x00\x60\x81\xe5\xff\xff\x5f\x73\xfc\x37\x6f\x32\x00" "\x00\x00\x00\x00\x00\x00\x1c\x3a\x77\xef\xdd\xda\xc8\xd7\xbd\xe6\xe3\xff" "\x9f\x9b\xb0\x9e\xeb\x3f\x8f\xa6\x9c\x7f\x21\xff\x4e\xca\xf9\xf7\x1a\xf9" "\x7f\xb9\xb1\x5e\xbf\x36\x7f\xe7\xad\xbd\xfc\xff\x7d\xef\xd6\xc6\xef\x6f" "\xfc\xeb\xb3\x79\xba\xdf\xfc\x97\xf2\x4c\x91\x1e\x59\x45\x7a\x44\x14\xe9" "\x9e\x8a\x41\x9a\x3e\xce\xd6\x3d\x68\x7b\xd8\x1f\x55\xf7\x34\x2c\x7a\xfd" "\x41\x3a\xe7\xa7\x1c\xbe\x1b\x57\xe2\x6a\x6c\xc6\xe9\xb1\x75\x7b\xe9\xef" "\xb1\xd7\x7e\x66\xac\xbd\xea\xe9\x70\xac\xfd\xec\x58\xfb\xe0\x81\xf6\x73" "\x63\xed\xc3\xf4\xbd\x03\xe5\x4a\x6e\x3f\x19\x1b\xf1\x93\xb8\x1a\xef\xec" "\xb4\x57\x6d\x4b\x33\xb6\x7f\x79\x46\x7b\x39\xa3\x3d\xe7\xdf\xb7\xff\x77" "\x52\xce\x7f\x50\xfb\xa9\xf2\x5f\x4d\xed\x45\x63\x5a\xb9\xf3\x51\xef\x81" "\xfd\xbe\x3e\x9d\x74\x3f\x6f\x5e\xf9\xfc\x2f\x4f\x1f\xfc\xe6\xcc\xb4\x1d" "\xfd\xfb\xdb\x56\x57\x6d\xdf\x89\x16\xfa\xb3\xf3\x37\x79\x6a\x14\x3f\xbb" "\xbe\x79\xed\xe4\xcd\xcb\x37\x6e\x5c\x3b\x13\x69\x32\xb6\xf4\x6c\xa4\xc9" "\x13\x96\xf3\x1f\xee\xfc\x2c\xed\x3d\xff\xbf\xb8\xdb\x9e\x9f\xf7\xeb\xfb" "\xeb\x9d\x8f\x46\x8f\x9c\xff\xa2\xd8\x8e\xc1\xd4\xfc\x5f\xac\xcd\x57\xdb" "\xfb\xf2\x9c\xfb\xd6\x86\x9c\xff\x28\xfd\xe4\xfc\xdf\x49\xed\x93\xf7\xff" "\xc3\x9c\xff\xf4\xfd\xff\x95\x16\xfa\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x0f\x53\x96\xe5\xce\x25\xa2\x6f\x46\xc4\xf9\x74\xfd\x4f" "\x5b\xd7\x66\x02\x00\xf3\x95\x5f\xff\xcb\x24\x2f\x57\xab\xd5\x6a\xb5\x5a" "\x7d\xf4\xea\xba\x72\xb2\x37\xea\x45\x44\xfc\xb5\x7e\x9b\xea\x3d\xc3\x2f" "\x26\xfd\x32\x00\x60\x91\xfd\x2f\x22\xfe\xd1\x76\x27\x68\x8d\xfc\x3b\x2c" "\x7f\xdf\x5f\x35\x7d\xa9\xed\xce\x00\x73\x75\xfd\x83\x0f\x7f\x74\xf9\xea" "\xd5\xcd\x6b\xd7\xdb\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\x69\xe5\xf1" "\x3f\xd7\x6b\xe3\x3f\xbf\x14\x11\x6b\x8d\xf5\xc6\xc6\x7f\x7d\x2b\xd6\x1f" "\x77\xfc\xcf\x41\x9e\xb9\x3f\xc0\xe8\x13\x1e\xe8\x7b\x8a\xed\xde\xa8\xdf" "\xab\x0d\x37\xfe\x42\xec\x8c\xcf\x7d\x72\xda\xf8\xdf\x27\xe2\xe1\xe3\x7f" "\x0f\x66\xdc\xdf\x70\x46\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x89\x4b\xf7\xd2" "\x9a\x78\xa1\x47\x4d\xce\xff\x85\xda\x78\xe7\x55\xfe\xc7\x1b\xc3\xaf\x77" "\x61\xfc\xd7\xe6\x98\xf7\x33\xcc\x8a\xfe\x50\xc8\xf9\x9f\xa8\x3d\x9e\xab" "\xfc\xbf\xd4\x58\xaf\x9e\x7f\xf9\xdb\x85\xcb\x7f\x6b\xbf\x2b\x6e\x47\x6f" "\x2c\xff\x53\x37\xde\xff\xe9\xa9\xeb\x1f\x7c\xf8\xea\x95\xf7\x2f\xbf\xb7" "\xf9\xde\xe6\x8f\xcf\x9d\x39\x73\xfa\xdc\xf9\xf3\x17\x2e\x5c\x38\xf5\xee" "\x95\xab\x9b\xa7\x77\xff\x3d\x98\x5e\x2f\x80\x9c\x7f\x1e\xfb\xda\x79\xa0" "\xdd\x92\xf3\xcf\x99\xcb\xbf\x5b\x72\xfe\x5f\x48\xb5\xfc\xbb\x25\xe7\xff" "\xc5\x54\xcb\xbf\x5b\x72\xfe\xf9\xfd\x9e\xfc\xbb\x25\xe7\x9f\x3f\xfb\xc8" "\xbf\x5b\x72\xfe\x2f\xa7\x5a\xfe\xdd\x92\xf3\xff\x4a\xaa\xe5\xdf\x2d\x39" "\xff\x57\x52\x2d\xff\x6e\xc9\xf9\x7f\x35\xd5\xf2\xef\x96\x9c\xff\xab\xa9" "\x96\x7f\xb7\xe4\xfc\x4f\xa6\x5a\xfe\xdd\x92\xf3\x3f\x95\xea\x7d\xe4\xef" "\xeb\xe1\x8f\x90\x9c\x7f\x3e\xc2\x65\xff\xef\x96\x9c\x7f\x3e\xb3\x41\xfe" "\xdd\x92\xf3\x3f\x9b\x6a\xf9\x77\x4b\xce\xff\x5c\xaa\xe5\xdf\x2d\x39\xff" "\xd7\x52\x2d\xff\x6e\xc9\xf9\x7f\x2d\xd5\xf2\xef\x96\x9c\xff\xf9\x54\xcb" "\xbf\x5b\x72\xfe\x5f\x4f\xb5\xfc\xbb\x25\xe7\x7f\x21\xd5\xf2\xef\x96\x9c" "\xff\x37\x52\x2d\xff\x6e\xc9\xf9\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xeb\xa9" "\x96\x7f\xb7\xe4\xfc\xbf\x95\x6a\xf9\x77\x4b\xce\xff\xdb\xa9\x96\x7f\xb7" "\xe4\xfc\xbf\x93\x6a\xf9\x77\x4b\xce\xff\x8d\x54\xcb\xbf\x5b\xf6\xbe\xff" "\xdf\x8c\x19\x33\x66\xf2\x4c\xdb\xcf\x4c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\xd3\x3c\x4e\x27\x6e\x7b\x1b\x01\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf" "\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00" "\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77" "\xaf\x31\x72\x9d\xf5\xfd\xc0\xcf\xec\xc5\x5e\x3b\x84\x18\x08\xc1\xc9\xdf" "\xc0\x26\x31\xc6\x38\x4b\x76\x7d\x89\x2f\xfc\xeb\x62\xc2\xb5\x01\x4a\x81" "\x84\x42\x2f\xd8\xae\x77\x6d\x16\x7c\xc3\x6b\x97\x40\x91\x6c\x1a\x28\x91" "\x30\x2a\xaa\xa8\x9a\xbe\x68\x0b\x08\xb5\x91\xaa\x0a\xab\xe2\x05\xad\x28" "\xcd\x8b\xaa\x97\x57\xa5\x7d\x41\xdf\x54\x54\x95\x90\x1a\x55\x01\x05\x24" "\xa4\xb6\xa2\x6c\x35\x73\x9e\xe7\xf1\xcc\x78\x76\xce\xda\x3b\x5e\xcf\x9e" "\xe7\xf3\x91\xe2\x9f\x77\xe7\xcc\x9c\x33\x67\x9e\x99\xdd\xef\x3a\xdf\x1d" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\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\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\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" "\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\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\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\x80\x76\xf7\xbe\x71\xee\xb3\x8d\xa2" "\x28\x9a\xff\xb5\xfe\xd8\x54\x14\x2f\x68\xfe\x7d\xc3\xe4\xa6\xd6\xe7\x5e" "\x77\xab\x8f\x10\x00\x00\x00\x58\xa9\xff\x6d\xfd\xf9\xfc\x1d\xe9\x13\x87" "\x96\x71\xa5\xb6\x6d\xfe\xee\x15\xff\xf8\xf5\xc5\xc5\xc5\xc5\xe2\xfd\xa3" "\xbf\x3b\xfe\xc5\xc5\xc5\x74\xc1\x64\x51\x8c\xaf\x2f\x8a\xd6\x65\xd1\x95" "\x7f\xff\x40\xa3\x7d\x9b\xe0\x89\x62\xa2\x31\xd2\xf6\xf1\x48\xc5\xee\x47" "\x2b\x2e\x1f\xab\xb8\x7c\xbc\xe2\xf2\x75\x15\x97\xaf\xaf\xb8\x7c\xa2\xe2" "\xf2\x6b\x4e\xc0\x35\x36\x94\x3f\x8f\x69\xdd\xd8\xd6\xd6\x5f\x37\x95\xa7" "\xb4\xb8\xb3\x18\x6f\x5d\xb6\xb5\xc7\xb5\x9e\x68\xac\x1f\x19\x89\x3f\xcb" "\x69\x69\xb4\xae\xb3\x38\x7e\xbc\x98\x2f\x4e\x16\x73\xc5\x4c\xc7\xf6\xe5" "\xb6\x8d\xd6\xf6\xdf\xbc\xb7\xb9\xaf\xb7\x15\x71\x5f\x23\x6d\xfb\xda\xd2" "\x5c\x21\x3f\xfc\xe4\xb1\x78\x0c\x8d\x70\x8e\xb7\x76\xec\xeb\xea\x6d\x46" "\xdf\x7f\x43\x31\xf9\xa3\x1f\x7e\xf2\xd8\x1f\x9f\x7f\xee\xee\x5e\xb3\xf2" "\x34\x74\xdc\x5e\x79\x9c\xdb\xef\x6b\x1e\xe7\xa7\xc3\x67\xca\x63\x6d\x14" "\xeb\xd3\x39\x89\xc7\x39\xd2\x76\x9c\x5b\x7a\x3c\x26\xa3\x1d\xc7\xd9\x68" "\x5d\xaf\xf9\xf7\xee\xe3\x7c\x7e\x99\xc7\x39\x7a\xf5\x30\x57\x55\xf7\x63" "\x3e\x51\x8c\xb4\xfe\xfe\xed\xd6\x79\x1a\x6b\xff\xb1\x5e\x3a\x4f\x5b\xc2" "\xe7\xfe\xeb\xfe\xa2\x28\x2e\x5d\x3d\xec\xee\x6d\xae\xd9\x57\x31\x52\x6c" "\xec\xf8\xcc\xc8\xd5\xc7\x67\xa2\x5c\x91\xcd\xdb\x68\x2e\xa5\x17\x17\x63" "\xd7\xb5\x4e\xef\x5d\xc6\x3a\x6d\xce\xd9\xad\x9d\xeb\xb4\xfb\x39\x11\x1f" "\xff\x7b\xc3\xf5\xc6\x96\x38\x86\xf6\x87\xe9\xfb\x9f\x5a\x77\xcd\xe3\x7e" "\xbd\xeb\x34\x6a\xde\xeb\xa5\x9e\x2b\xdd\x6b\x70\xd0\xcf\x95\x61\x59\x83" "\x71\x5d\x7c\xbb\x75\xa7\x9f\xec\xb9\x06\xb7\x86\xfb\xff\xc9\x6d\x4b\xaf" "\xc1\x9e\x6b\xa7\xc7\x1a\x4c\xf7\xbb\x6d\x0d\xde\x57\xb5\x06\x47\xd6\x8d" "\xb6\x8e\x39\x3d\x08\x8d\xd6\x75\xae\xae\xc1\x9d\x1d\xdb\x8f\xb6\xf6\xd4" "\x68\xcd\x67\xb7\xf5\x5f\x83\xd3\xe7\x4f\x9d\x9d\x5e\xf8\xf8\x27\x5e\x3b" "\x7f\xea\xe8\x89\xb9\x13\x73\xa7\x77\xef\xdc\x39\xb3\x7b\xef\xde\xfd\xfb" "\xf7\x4f\x1f\x9f\x3f\x39\x37\x53\xfe\x79\x83\x67\x7b\xf8\x6d\x2c\x46\xd2" "\x73\xe0\xbe\x70\xee\xe2\x73\xe0\xd5\x5d\xdb\xb6\x2f\xd5\xc5\x2f\x0f\xee" "\x79\x38\xd1\xe7\x79\xb8\xa9\x6b\xdb\x41\x3f\x0f\xc7\xba\xef\x5c\x63\x75" "\x9e\x90\xd7\xae\xe9\xf2\xb9\xf1\x68\xf3\xa4\x4f\x5c\x1e\x29\x96\x78\x8e" "\xb5\x1e\x9f\x1d\x2b\x7f\x1e\xa6\xfb\xdd\xf6\x3c\x1c\x6b\x7b\x1e\xf6\xfc" "\x9a\xd2\xe3\x79\x38\xb6\x8c\xe7\x61\x73\x9b\xb3\x3b\x96\xf7\x3d\xcb\x58" "\xdb\x7f\xbd\x8e\xe1\x66\x7d\x2d\xd8\xd4\xb6\x06\xbb\xbf\x1f\xe9\x5e\x83" "\x83\xfe\x7e\x64\x58\xd6\xe0\x44\x58\x17\xff\xba\x63\xe9\xaf\x05\x5b\xc2" "\xf1\x3e\x39\x75\xbd\xdf\x8f\x8c\x5e\xb3\x06\xd3\xdd\x0d\xaf\x3d\xcd\xcf" "\xa4\xef\xf7\x27\xf6\xb7\x46\xaf\x75\x79\x4f\xf3\x82\xdb\xd6\x15\x17\x16" "\xe6\xce\x3d\xf8\xf8\xd1\xf3\xe7\xcf\xed\x2c\xc2\x58\x15\x2f\x69\x5b\x2b" "\xdd\xeb\x75\x63\xdb\x7d\x2a\xae\x59\xaf\x23\xd7\xbd\x5e\x0f\xcd\xbf\xe2" "\xc9\x7b\x7a\x7c\x7e\x53\x38\x57\x13\xaf\x6d\xfe\x31\xb1\xe4\x63\xd5\xdc" "\x66\xcf\x83\xfd\x1f\xab\xd6\x57\xb7\xde\xe7\xb3\xe3\xb3\xbb\x8a\x30\x06" "\x6c\xb5\xcf\x67\xaf\xaf\xe6\xcd\xf3\x99\xb2\x64\x9f\xf3\xd9\xdc\xe6\xd3" "\xd3\x2b\xff\x5e\x3c\xe5\xd2\xb6\xd7\xdf\xf1\x25\x5e\x7f\x63\xee\xff\x69" "\xb9\xbf\x74\x53\x4f\x8c\x8e\x8f\x95\xcf\xdf\xd1\x74\x76\xc6\x3b\x5e\x8f" "\x3b\x1f\xaa\xb1\xd6\x6b\x57\xa3\xb5\xef\xe7\xa7\x97\xf7\x7a\x3c\x1e\xfe" "\x5b\xed\xd7\xe3\x3b\xfb\xbc\x1e\x6f\xee\xda\x76\xd0\xaf\xc7\xe3\xdd\x77" "\x2e\xbe\x1e\x37\xaa\x7e\xda\xb1\x32\xdd\x8f\xe7\x44\x58\x27\x27\x67\xfa" "\xbf\x1e\x37\xb7\xd9\xbc\xeb\x7a\xd7\xe4\x58\xdf\xd7\xe3\xfb\xc3\x6c\x84" "\xf3\xff\x9a\x90\x14\x52\x2e\x6a\x5b\x3b\x4b\xad\xdb\xb4\xaf\xb1\xb1\xf1" "\x70\xbf\xc6\xe2\x1e\x3a\xd7\xe9\xee\x8e\xed\xc7\x43\x36\x6b\xee\xeb\xe9" "\x5d\x37\xb6\x4e\xb7\xdf\x5f\xde\xd6\x68\xba\x77\x57\xad\xd6\x3a\x9d\xec" "\xda\x76\xd0\xeb\x34\xbd\x5e\x2d\xb5\x4e\x1b\x55\x3f\x7d\xbb\x31\xdd\x8f" "\xe7\x44\x58\x17\x77\xee\xee\xbf\x4e\x9b\xdb\x3c\xb3\x67\xe5\xaf\x9d\x1b" "\xe2\x5f\xdb\x5e\x3b\xd7\x55\xad\xc1\xf1\xd1\x75\xcd\x63\x1e\x4f\x8b\xb0" "\x7c\xbd\x5f\xdc\x10\xd7\xe0\x83\xc5\xb1\xe2\x4c\x71\xb2\x98\x6d\x5d\xba" "\xae\xb5\x9e\x1a\xad\x7d\x4d\x3d\xb4\xbc\x35\xb8\x2e\xfc\xb7\xda\xaf\x95" "\x9b\xfb\xac\xc1\xed\x5d\xdb\x0e\x7a\x0d\xa6\xaf\x63\x4b\xad\xbd\xc6\xd8" "\xb5\x77\x7e\x00\xba\x1f\xcf\x89\xb0\x2e\x9e\x7a\xa8\xff\x1a\x6c\x6e\xf3" "\xa6\x7d\x83\xfd\xde\x75\x7b\xf8\x4c\xda\xa6\xed\x7b\xd7\xee\x9f\xaf\x2d" "\xf5\x33\xaf\x7b\xba\x4e\xd3\xcd\xfc\x99\x57\xf3\x38\xff\x66\x5f\xff\x9f" "\xcd\x36\xb7\x39\xb9\xff\x7a\x73\x66\xff\xf3\xf4\x40\xf8\xcc\x6d\x3d\xce" "\x53\xf7\xf3\x77\xa9\xe7\xd4\x6c\xb1\x3a\xe7\x69\x73\x38\xce\xe7\xf6\x2f" "\x7d\x9e\x9a\xc7\xd3\xdc\xe6\x8b\x07\x96\xb9\x9e\x0e\x15\x45\x71\xf1\xa3" "\x0f\xb7\x7e\xde\x1b\xfe\x7d\xe5\xcf\x2f\x7c\xe7\xeb\x1d\xff\xee\xd2\xeb" "\xdf\x74\x2e\x7e\xf4\xe1\x1f\xdc\x7e\xfc\x6f\xaf\xe7\xf8\x01\x58\xfb\x7e" "\x5a\x8e\x8d\xe5\xd7\xba\xb6\x7f\x99\x5a\xce\xbf\xff\x03\x00\x00\x00\x6b" "\x42\xcc\xfd\x23\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xf1\xff\x0a" "\x4f\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xc7\xc2\x4c\x32\xc9\xff\x9b\xdf" "\xf4\xdc\xfc\x4f\x2f\x16\xa9\x99\xbf\x18\xc4\xcb\xd3\x69\x78\xa4\xdc\x2e" "\x76\x5c\x67\xc2\xc7\x93\x8b\x57\x35\x3f\xff\xf0\x57\xe7\x7e\xfc\x97\x17" "\x97\xb7\xef\x91\xa2\x28\x7e\xf2\xc8\x6f\xf4\xdc\x7e\xf3\x23\xf1\xb8\x4a" "\x93\xe1\x38\xaf\xbc\xb9\xf3\xf3\xd7\x5e\xf1\xe2\xb2\xf6\x7f\xe4\xb1\xab" "\xdb\xb5\xf7\xd7\xbf\x14\x6e\x3f\xde\x9f\xbe\xcb\x60\x71\x71\xf1\x62\xd8" "\xb0\x57\x05\x77\xa6\x28\x8a\x6f\xde\xf1\xf9\xd6\x7e\x26\x3f\x70\xb9\x35" "\x9f\x79\xe4\x48\x6b\xbe\xe7\xd2\x93\x4f\x34\xb7\x79\xfe\x40\xf9\x71\xbc" "\xfe\xb3\x2f\x29\xb7\xff\x83\x50\xfe\x3d\x74\xfc\x68\xc7\xf5\x9f\x0d\xe7" "\xe1\x7b\x61\xce\xbc\xbd\xf7\xf9\x88\xd7\xfb\xda\xe5\xd7\x6c\xd9\xf7\xbe" "\xab\xfb\x8b\xd7\x6b\xdc\xf7\xc2\xd6\xdd\x7e\xea\x83\xe5\xed\xc6\xdf\x93" "\xf3\x85\x27\xca\xed\xe3\x79\x5e\xea\xf8\xff\xea\x73\x4f\x7f\xad\xb9\xfd" "\xe3\xaf\xea\x7d\xfc\x17\x47\x7a\x1f\xff\xd3\xe1\x76\xbf\x1a\xe6\x7f\xbf" "\xbc\xdc\xbe\xfd\x31\x68\x7e\x1c\xaf\xf7\x99\x70\xfc\x71\x7f\xf1\x7a\x0f" "\x7e\xe5\x5b\x3d\x8f\xff\xca\x67\xcb\xed\xcf\xbe\xa5\xdc\xee\x48\x98\x71" "\xff\xdb\xc3\xc7\x5b\xdf\xf2\xdc\x7c\xfb\xf9\x7a\xbc\x71\xb4\xe3\x7e\x15" "\x6f\x2d\xb7\x8b\xfb\x9f\xf9\xce\x6f\xb7\x2e\x8f\xb7\x17\x6f\xbf\xfb\xf8" "\x27\x0e\x5f\xee\x38\x1f\x51\xfc\xf8\x99\x7f\x2e\x6f\x67\xba\x6b\xfb\xf8" "\xf9\xb8\x9f\xe8\x2f\xba\xf6\xdf\xbc\x9d\xf6\xf5\x19\xf7\xff\xf4\x6f\x1d" "\xe9\x38\xcf\x55\xfb\xbf\xf2\x9e\x67\x5f\xde\xbc\xdd\xee\xfd\x3f\xd0\xb5" "\xdd\x68\xd7\xf5\xbb\x7f\x63\xd3\x1f\x7e\xe6\xf3\x3d\xf7\x17\x8f\xe7\xd0" "\x9f\x9d\xed\xb8\x3f\x87\xde\x1d\x9e\xc7\x61\xff\x4f\x7d\x30\xac\xc7\x70" "\xf9\xff\x5c\xf9\x7c\xc7\x7e\xa3\x23\xef\xee\x7c\xfd\x89\xdb\x7f\x69\xd3" "\xc5\x8e\xfb\x13\xbd\xed\x47\xe5\xfe\xaf\xbc\xfe\x44\x6b\xfe\xc7\xe4\x8f" "\x7f\xff\xb6\x17\xdc\xfe\xc2\x4b\xaf\x6c\x9e\xbb\xa2\xf8\xf6\x7b\xcb\xdb" "\xab\xda\xff\x89\x3f\x3a\xd3\x71\xfc\x5f\xbe\x6b\x47\xeb\xf1\x88\x97\xc7" "\x8e\x7e\xf7\xfe\x97\x12\xf7\x7f\xee\x63\x53\xa7\xcf\x2c\x5c\x98\x9f\x6d" "\x3b\xab\xad\xdf\x9d\xf3\x8e\xf2\x78\xd6\x4f\x6c\xd8\xd8\x3c\xde\x3b\xc2" "\x6b\x6b\xf7\xc7\x87\xcf\x9c\xff\xd0\xdc\xb9\xc9\x99\xc9\x99\xa2\x98\xac" "\xef\xaf\xd0\xbb\x61\x5f\x09\xf3\x07\xe5\xb8\x74\xbd\xd7\xdf\xf1\x58\x78" "\x3c\xef\xf9\xbd\x6f\x6e\xdc\xf6\x4f\x9f\x8b\x9f\xff\x97\x47\xcb\xcf\x5f" "\x7e\x7b\xf9\x75\xeb\xd5\x61\xbb\x2f\x84\xcf\x6f\x2a\x1f\xbf\xc5\xc6\x0a" "\xf7\xff\xd4\xbd\x77\xb5\x9e\xdf\x8d\x67\xca\x8f\x3b\x7a\xec\x03\xb0\x65" "\xeb\x7f\xee\x5f\xd6\x86\xe1\xfe\x77\x7f\x5f\x10\xd7\xfb\xd9\x97\x7e\xa8" "\x75\x1e\x9a\x97\xb5\xbe\x6e\xc4\xe7\xf5\x0a\x8f\xff\xbb\xb3\xe5\xed\x7c" "\x23\x9c\xd7\xc5\xf0\x9b\x99\xef\xbb\xeb\xea\xfe\xda\xb7\x8f\xbf\x1b\xe1" "\xf2\x7b\xcb\xe7\xfb\x8a\xcf\x5f\x78\x99\x8b\x8f\xeb\x9f\x84\xc7\xfb\x9d" "\xdf\x2b\x6f\x3f\x1e\x57\xbc\xbf\xdf\x0d\xdf\xc7\x7c\x6b\x73\xe7\xeb\x5d" "\x5c\x1f\xdf\xb8\x38\xd2\x7d\xfb\xad\xdf\xe2\x71\x29\xbc\x9e\x14\x97\xca" "\xcb\xe3\x56\xf1\x7c\x5f\x7e\xfe\xae\x9e\x87\x17\x7f\x0f\x49\x71\xe9\xee" "\xd6\xc7\xbf\x93\x6e\xe7\xee\xeb\xba\x9b\x4b\x59\xf8\xf8\xc2\xf4\xc9\xf9" "\xd3\x17\x1e\x9f\x3e\x3f\xb7\x70\x7e\x7a\xe1\xe3\x9f\x38\x7c\xea\xcc\x85" "\xd3\xe7\x0f\xb7\x7e\x97\xe7\xe1\x0f\x57\x5d\xff\xea\xeb\xd3\xc6\xd6\xeb" "\xd3\xec\xdc\xde\x3d\xc5\xcc\x86\xa2\x28\xce\x14\x33\xab\xf0\x82\x75\x73" "\x8e\xbf\xf9\xb7\xe5\x1d\xff\xd9\xc7\x8e\xcd\xee\x9b\xd9\x36\x3b\x77\xfc" "\xe8\x85\xe3\xe7\x1f\x3b\x3b\x77\xee\xc4\xb1\x85\x85\x63\x73\xb3\x0b\xdb" "\x8e\x1e\x3f\x3e\xf7\xb1\xaa\xeb\xcf\xcf\x1e\xdc\xb9\xeb\xc0\xee\x7d\xbb" "\xa6\x4e\xcc\xcf\x1e\xdc\x7f\xe0\xc0\xee\x03\x53\xf3\xa7\xcf\x34\x0f\xa3" "\x3c\xa8\x0a\x7b\x67\x3e\x32\x75\xfa\xdc\xe1\xd6\x55\x16\x0e\xee\x39\xb0" "\xf3\xa1\x87\xf6\xcc\x4c\x9d\x3a\x33\x3b\x77\x70\xdf\xcc\xcc\xd4\x85\xaa" "\xeb\xb7\xbe\x36\x4d\x35\xaf\xfd\xeb\x53\xe7\xe6\x4e\x1e\x3d\x3f\x7f\x6a" "\x6e\x6a\x61\xfe\x13\x73\x07\x77\x1e\xd8\xbb\x77\x57\xe5\x6f\x03\x3c\x75" "\xf6\xf8\xc2\xe4\xf4\xb9\x0b\xa7\xa7\x2f\x2c\xcc\x9d\x9b\x2e\xef\xcb\xe4" "\xf9\xd6\xa7\x9b\x5f\xfb\xaa\xae\x4f\x3d\x2d\xfc\x5b\xf9\xfd\x6c\xb7\x46" "\xf9\x8b\xf8\x8a\x77\x3d\xb0\x37\xfd\x7e\xd6\xa6\xaf\x7e\x6a\xc9\x9b\x2a" "\x37\xe9\xfa\x05\xa2\xcf\x85\xdf\x45\xf3\x0f\x2f\x3a\xbb\x7f\x39\x1f\xc7" "\xdc\x3f\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x2e\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x44\x98\x49\x26\xf9\x5f\xff\x7f\x05\xfd\xff\x36\xf5\xef\xff" "\x97\x97\xeb\xff\xe7\xd5\xff\x3f\xfb\xd1\xb2\x57\xba\xd6\xfb\xff\xb1\x3f" "\xaf\xff\x9f\x87\x5b\xdc\xff\x5f\xf1\xfe\xf5\xff\xf5\xff\xeb\xd7\xff\x5f" "\x7e\x7f\x7e\xad\x1f\xbf\xfe\xbf\xfe\x3f\xd7\x1a\xb6\xfe\x7f\xcc\xfd\x1b" "\x8a\x22\xcb\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f\x63\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\x6d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\x2f\x08\x33\xc9\x24\xff\xeb\xff\x2f\xab\xff\xbf\xab\xaa\x70\x55\xff\xfe" "\xbf\xf7\xff\xd7\xff\x2f\xd6\x66\xff\x3f\x3e\x38\xfa\xff\xd9\xb8\xee\xfe" "\xfd\xfb\x1e\xed\xf8\x50\xff\x3f\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x67\xc5\xc6\x97\xbc\xe4\x56\xf5\xff\x63\xee\xbf\x3d\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\x85\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x0a\x33\xc9\x24" "\xff\xeb\xff\x7b\xff\x7f\xfd\x7f\xfd\xff\x5a\xf7\xff\x57\xfa\xfe\xff\x6d" "\x07\xa3\xff\xbf\x36\x78\xff\xff\xfe\xf4\xff\x2b\xdc\x70\xff\x7f\x42\xff" "\x7f\x2d\xf6\xff\xc7\x07\x7b\xfc\xc3\xdd\xff\xaf\x3c\x7c\xfd\x7f\x6e\x8a" "\x61\x7b\xff\xff\x98\xfb\x5f\x14\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\xff\xe2\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x97\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x19\x66\x92\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\xbd\xff\xea\xf7\xff\x2f\xff\xa6\xff\x3f\x5c" "\xf4\xff\xfb\xd3\xff\xaf\xe0\xfd\xff\xf3\xea\xff\x0f\xf8\xf8\x87\xbb\xff" "\x3f\xe8\xf7\xff\x1f\x7f\x73\xf7\xf5\xf5\xff\xe9\x65\xd8\xfa\xff\x31\xf7" "\xbf\x34\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xae\x30\x13\xf9" "\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x97\x85\x99\xc8\xff\x00\x00\x00\x50\x1b" "\x31\xf7\x6f\x0e\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xf7\xde\x7f\x75\xff\xbf\xa4\xff\x3f\x5c\xf4\xff\xfb\xd3\xff\xaf\xa0\xff" "\xaf\xff\xaf\xff\xbf\xbc\xfe\x7f\x8f\x6f\x7e\xf5\xff\xe9\x65\xd8\xfa\xff" "\x31\xf7\xdf\x1d\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x4f\x98" "\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xff\x0b\x33\x91\xff\x01\x00\x00" "\xa0\x36\x62\xee\xdf\x12\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xcf\xab" "\xff\xff\xc0\x3a\xfd\x7f\xfd\xff\x7a\xd3\xff\xef\x4f\xff\xbf\x82\xfe\xbf" "\xfe\xbf\xfe\xff\x32\xdf\xff\xff\x5a\xd7\xd3\xff\x5f\x5f\x75\x63\xd4\xc6" "\xb0\xf5\xff\x63\xee\x7f\x79\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73" "\xff\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x5f\x19\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x19\x66\x92\x49\xfe\xd7\xff\xaf\x57\xff" "\xff\x4f\xff\xfa\xa9\x57\x16\xfa\xff\xfa\xff\x15\xfb\xaf\x69\xff\x3f\x2e" "\x03\xfd\xff\xcc\xe9\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\x5f\xff\x7f\x55" "\xfa\xff\xe4\x63\xd8\xfa\xff\x31\xf7\xdf\x1b\x66\x92\x49\xfe\x07\x00\x00" "\x80\x1c\xc4\xdc\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xfd" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x5b\xc3\x4c\x32\xc9\xff\xfa" "\xff\xf5\xea\xff\x47\xfa\xff\xfa\xff\xfd\xf6\x5f\xd3\xfe\x7f\xa2\xff\x9f" "\x37\xfd\xff\x1e\xda\x9e\xa4\xfa\xff\x15\xf4\xff\xf5\xff\xb3\xef\xff\xc7" "\xef\x7e\xf5\xff\x19\x8c\x61\xeb\xff\xc7\xdc\xff\xaa\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\x6d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\xaf\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x1e\x66\x92\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbd\x7f\xfd\xff\xb5\x49" "\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xd9\xf7\xff\xbd\xff\x3f\x83\x35" "\x6c\xfd\xff\x98\xfb\x5f\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xff\xff\x66\xf9\xff\xbd\xca" "\xff\x00\x00\x00\x50\x47\x31\xf7\x4f\x85\x99\x64\x92\xff\xf5\xff\xf5\xff" "\x73\xea\xff\x37\x72\xed\xff\xc7\x4f\xe8\xff\xeb\xff\x67\x40\xff\xbf\x3f" "\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c\xd4\xb0\xf5\xff\x63\xee" "\x7f\x6d\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x83\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xd3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46" "\xcc\xfd\x33\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\x9c\xfa\xff\xde\xff\x5f" "\xff\x5f\xff\xbf\xfe\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\x5f\xb7\xfe" "\x7f\x51\xe8\xff\x73\x4b\x0d\x5b\xff\x3f\xe6\xfe\x9d\x61\x26\x99\xe4\x7f" "\x00\x00\x00\xc8\x41\xcc\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98" "\xfb\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xef\x09\x33\xc9\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xde\xbf\xfe\xff\xda\xb4" "\x96\xfa\xff\x23\x3d\x3e\xa7\xff\xaf\xff\xaf\xff\xbf\x76\x8f\x7f\x28\xfb" "\xff\xde\xff\x9f\x5b\x6c\xd8\xfa\xff\x31\xf7\x3f\x14\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xfe\x30\x93\x4c\xf2" "\xbf\xfe\x7f\x4d\xfa\xff\xbf\xf9\xf7\x1d\xfb\xd6\xff\xd7\xff\xef\xb7\xff" "\xc1\xf4\xff\x37\xe8\xff\x87\xa9\xff\x3f\x5c\xd6\x52\xff\xbf\x97\x25\xfa" "\xeb\xdd\x4f\x8b\x1b\xa6\xff\x5f\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81" "\x1a\xb6\xfe\x7f\xcc\xfd\x07\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\x5f\x17\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xff\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x7f\x26\xcc\x24\x93\xfc\xaf\xff\x5f\x93" "\xfe\x7f\x17\xfd\x7f\xfd\xff\x7e\xfb\xf7\xfe\xff\xfa\xff\x75\x56\xd3\xfe" "\xff\xc0\xe8\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x6e\x7e\xff" "\x3f\xfe\x6d\x79\xfd\xff\x98\xfb\x0f\x86\x99\x64\x92\xff\x01\x00\x00\x20" "\x07\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xeb\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x0f\x85\x99\x64\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x6f\x4e\xff\xff\xf5\x45\xb7\x61\xec\xff\x37\x17" "\x8f\xfe\x7f\xbd\xe8\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\x5f\xff\x5f\xff" "\x9f\x81\x1a\xb6\xf7\xff\x8f\xb9\xff\x0d\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x31" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x4d\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xef\xff\xdf\x7b\xff\xfa\xff\x6b\x93\xfe\x7f" "\x7f\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7" "\xdc\xff\xe6\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xb7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\xff\x6d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xde\xfb\xd7\xff\x5f\x9b\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff" "\xaf\xff\xaf\xff\xcf\x40\x0d\x5b\xff\x3f\xe6\xfe\x9f\x0b\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x08\x33\xc9" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xde\xbf\xfe\xff\xda" "\xa4\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8" "\xfa\xff\x31\xf7\xbf\x33\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\xe7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf\x15\x66\x22\xff\x03" "\x00\x00\x40\x6d\xc4\xdc\xff\x0b\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x2c\xfa\xff\xcd\x2b\xe9\xff\x67\x41\xff\xbf\x3f\xfd\xff\x0a" "\x3d\xfa\xff\xeb\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xb9\x61\xc3\xd6\xff\x8f" "\xb9\xff\xdd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xef\x09\x33" "\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00" "\xb5\x11\x73\xff\xa3\x61\x26\x99\xe4\x7f\xfd\xff\x2c\xfb\xff\xe9\x2e\xeb" "\xff\x97\xf4\xff\x33\xe8\xff\x7b\xff\xff\x6c\xe8\xff\xf7\xa7\xff\x5f\xc1" "\xfb\xff\xeb\xff\xeb\xff\xeb\xff\x33\x50\xc3\xd6\xff\x8f\xb9\xff\xb1\x30" "\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xff\x62\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\xfb\xc3\x4c\x32\xc9\xff\xfa\xff\x59\xf6\xff\xbd\xff\xff\xaa\xf5\xff\xc7" "\x3a\xd6\x47\x4e\xfd\xff\x89\xb6\xc7\x33\xad\x4b\xfd\x7f\xfd\xff\x55\xa0" "\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\xff\x61\xee\xff\x87\xd5\xbc\x61\x89" "\xeb\xeb\xff\x33\x8c\x86\xad\xff\x1f\x73\xff\x07\xc2\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\x97\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x7f\x25\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff\xbd\xff\x7f\xef\xfd\xeb\xff\xaf" "\x4d\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\x1f\xe6\xfe\x7f\x05\xfd\x7f" "\x86\xd1\xb0\xf5\xff\x63\xee\xff\xd5\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x1f\x0e\x33" "\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f\x12\x66\x92\x49\xfe\xd7\xff\xef" "\xee\xff\xc7\x77\x54\xd5\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x8b\x06" "\xd7\xff\x7f\xd9\xed\x45\xa1\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x4a\x0c\x5b\xff\x3f\xe6\xfe\xa3\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8" "\x41\xcc\xfd\xbf\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x2c\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x36\xcc\x24\x93\xfc\xaf\xff\xef" "\xfd\xff\x07\xd5\xff\xff\x89\xfe\xbf\xfe\x7f\xa0\xff\xdf\x9b\xfe\xff\xea" "\xf0\xfe\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86" "\xad\xff\x1f\x73\xff\x5c\x98\x49\x26\xf9\x1f\x00\x00\x00\x6a\x2c\xfd\x38" "\x38\xe6\xfe\xe3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x27\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x14\x66\x92\x49\xfe\xd7\xff\xd7" "\xff\xf7\xfe\xff\xb7\xa2\xff\x3f\xd6\xb1\xbd\xfe\x7f\x49\xff\x5f\xff\x7f" "\x10\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x0d" "\x5b\xff\x3f\xe6\xfe\xf9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x7f\x24\xcc\x44\xfe\x07" "\x00\x00\x80\xda\x88\xb9\xff\x64\x98\x49\x26\xf9\x5f\xff\x5f\xff\x3f\xf7" "\xfe\x7f\xa3\x28\x2e\x79\xff\x7f\xfd\xff\x5e\xfb\xd7\xff\x5f\x9b\xf4\xff" "\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x0d\x5b\xff\x3f" "\xe6\xfe\x53\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xa7\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xcf\x84\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x9f\x0d\x33\xc9\x24\xff\xeb\xff\xff\x1f\x7b\xf7\xd1\x24\xd7" "\x59\xc5\x71\xb8\x31\xb2\xc2\x82\x82\x8f\xc0\x9a\x15\x4b\x58\xf1\x15\xd8" "\xb2\xa3\x8a\x35\x0b\xb0\xc9\xc1\x98\x9c\xc1\xe4\x1c\x4c\xce\x39\x27\x93" "\x73\xce\xd9\xe4\x1c\x4d\x34\x54\x89\x62\x74\xce\xb1\x46\xd3\xba\x77\xe4" "\x69\x4d\xdf\x7e\xcf\xf3\x6c\x0e\x52\x59\xee\x91\x3d\x98\xfa\xe3\xfa\xd5" "\xab\xff\xef\xde\xff\xaf\xb6\xf2\xfe\xff\xfe\x3f\x5e\xff\x7f\x8e\xfe\x5f" "\xff\xbf\x09\x07\xfa\xfb\x13\x97\xf6\xeb\x2f\xda\xff\xdf\xf9\x2e\x57\xdf" "\x53\xff\xaf\xff\xd7\xff\x4f\xd2\xff\xeb\xff\xf5\xff\x5c\x68\x69\xfd\x7f" "\xee\xfe\xfb\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xbe\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x55\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x5f\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xaf\xff" "\xbf\x41\xff\xaf\xff\xdf\x6d\xde\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\xf7\x8b\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xfd\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x01" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc0\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xef\xff\xaf\xff\x7c\xfd\xff\x6e\xd2\xff\x4f\xd3" "\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x69\xfd\x7f\xee\xfe\x07" "\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc1\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x68\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xe7\xeb" "\xff\x77\xd3\xf5\xab\x5b\xfe\x99\xa0\xff\x3f\x48\xff\x3f\x63\xa6\xff\x5f" "\xad\xf4\xff\x53\x0e\xdd\xcf\xaf\xff\xed\xed\xce\xd7\x7f\x11\xfa\x7f\xfd" "\x3f\x07\x2d\xad\xff\xcf\xdd\xff\xb0\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x3f\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xaf\x89\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x47\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xd7\x7f\xbe\xfe\x7f\x37\x79\xff\x7f\xda\xd1\xfb\xff" "\x3b\xdd\xe1\xde\xf7\xea\xdb\xff\x7b\xff\x7f\x9a\xf7\xff\xf5\xff\xfa\x7f" "\x2e\xb4\xb4\xfe\x3f\x77\xff\xb5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2a\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1d\xb7\x34\xd9\xff\xfa\xff\x36\xfd\xff" "\x5e\xed\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xa3\xd3\xff\x4f\xf3\xfe\xff\x8c" "\xbd\x7f\xcc\x9d\xa9\x1f\xea\xff\xf5\xff\xfa\x7f\xfd\x3f\x47\xb3\xb4\xfe" "\x3f\x77\xff\x63\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd8\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5c\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x3f\x3e\x6e\x69\xb2\xff\xf5\xff\x6d\xfa\x7f\xef\xff\xeb\xff" "\xf5\xff\xfa\xff\x16\xf4\xff\xd3\xf4\xff\x33\x46\x79\xff\xff\x56\x7e\xd7" "\x6c\xbb\x9f\x3f\xaa\x6d\x7f\xfd\xbd\xfa\xff\x93\x07\x7e\xbd\xfe\x9f\x75" "\x96\xd6\xff\xe7\xee\x7f\x42\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x9f\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8a\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x27\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\x1b\xfd" "\x7f\x7e\x82\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd3\xff\x4f\xd3\xff\xcf\x18" "\xa5\xff\xbf\x95\xb6\xdd\xcf\xef\xfa\xd7\xdf\xab\xff\x3f\x48\xff\xcf\x3a" "\x4b\xeb\xff\x73\xf7\x3f\x25\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x4f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xa7\xc5\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\xd3\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xdf\x8d\xfe" "\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\xff\x70\xf4\xff\xd3\xf4\xff\x33\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x5a\x5a\xff\x9f\xbb\xff\xba\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x9f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xcf\x8a\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x6e\xd2\xff" "\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x41\xfd\xff\x79" "\xbf\xea\xf4\xea\xd9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4e" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x37\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xfa\xff\xc5\xf4\xff\x7b\x39\xdf" "\x58\xfd\xff\x99\xd5\x6a\xa5\xff\x5f\x35\xed\xff\xcf\x9c\xf7\xf7\xb3\xbe" "\x2f\xf5\xff\xfa\xff\x63\xa0\xff\x9f\xa6\xff\x9f\xa1\xff\x1f\xb4\xff\x3f" "\xdc\xf7\x81\xfe\x5f\xff\xcf\xe6\x2d\xa8\xff\xdf\xfb\x71\xee\xfe\xe7\xc7" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x05\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xc2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x51" "\xdc\xd2\x64\xff\xeb\xff\x2f\xa1\xff\xbf\xea\x76\x17\xfd\xf3\x79\xff\x7f" "\xff\xd7\xef\xfd\xff\xf5\xdf\x1f\x9d\xfa\x7f\xef\xff\x1f\x74\x98\xfe\xff" "\xb6\xfa\xff\x23\xd3\xff\x4f\xd3\xff\xcf\xd0\xff\x0f\xda\xff\x7b\xff\x5f" "\xff\xcf\xb6\x2c\xad\xff\xcf\xdd\xff\xe2\xb8\xe9\xe4\x95\xb7\xfa\xb7\x08" "\x00\x00\x00\x2c\x4c\xee\xfe\x97\xc4\x2d\x4d\xfe\xfd\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00\x3b\xea\xba\x03\x3f\x93\xbb" "\xff\x65\x71\x4b\x93\xfd\xaf\xff\xdf\xec\xfb\xff\x27\xcf\xfb\x39\xfd\xbf" "\xfe\xff\xc2\xef\x0f\xfd\xbf\xfe\xdf\xfb\xff\x97\x9f\xfe\x7f\xda\xe1\xfb" "\xff\x9b\xcf\xea\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\xa3\x5a\x5a\xff\x9f" "\xbb\xff\xe5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x3e\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xaf\x8c\x5b\x9a\xec\x7f\xfd\xff\x66\xfb\xff\xf3\xe9\xff\xf5\xff" "\x17\x7e\x7f\xe8\xff\xf5\xff\xfa\xff\xcb\xef\x38\xfb\xff\x13\x43\xf7\xff" "\xde\xff\xd7\xff\xeb\xff\xb7\xd0\xff\x9f\xba\xe5\x3f\xea\xff\x19\xc3\x25" "\xf4\xff\x67\xcf\x9e\xbd\xe6\xb2\xf7\xff\xb9\xfb\x5f\x15\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x57\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x6b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb5\x71\x4b\x93\xfd" "\xaf\xff\x6f\xda\xff\xe7\xb7\xba\xfe\x7f\x8f\xfe\x5f\xff\xbf\xee\xf3\xf5" "\xff\xbb\xc9\xfb\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xef\xff\xeb\xff\xd9" "\xa8\xa5\xbd\xff\x9f\xbb\xff\x75\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x7d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x21\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xdf\x18\xb7\x34\xd9\xff\xfa\xff\xa6\xfd\xbf" "\xf7\xff\xf5\xff\xfa\xff\xe3\xee\xff\x6f\x5e\xe9\xff\x8f\xc5\x4e\xf4\xff" "\x67\x2e\xfe\xf9\x4b\xef\xff\xaf\xd5\xff\xeb\xff\x27\xb4\xeb\xff\xef\x7e" "\xd7\x7d\x3f\xd4\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\x37\xc5\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6b\xdc\x74" "\xa2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\xcf\x3f\xe6\xf7" "\xff\x4f\xae\x56\x2b\xfd\xff\x06\xec\x44\xff\x3f\x61\xe9\xfd\xbf\xf7\xff" "\xf5\xff\x53\xda\xf5\xff\x17\xd0\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe" "\xb7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xed\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x67\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xfd\xff\xb5" "\x3b\xd1\xff\x7b\xff\x7f\x43\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x63\xb1\xad\xfe\x3f\x77\xff\xbb\xe2\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4f" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x37\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\xff\xd4\xe2\xfa\xff\xd3\xfb\xfe\x7c\x4d\xde\xff\xd7" "\xff\x6f\x88\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xbf\x4e\xff\xcf" "\x26\x2d\xed\xfd\xff\xdc\xfd\xef\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\xfb\xe3\xd6\xff\x75\x6b\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x20" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x18\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfb\xff\xfa\xff\x56\xf4\xff\xd3\xf4\xff\x33" "\xf4\xff\xfa\x7f\xfd\xbf\xf7\xff\xd9\xa8\xa5\xf5\xff\xb9\xfb\x3f\x14\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x0f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x47\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x86\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xb9\xbf\x87\xfa\xff" "\x31\xe8\xff\xa7\x1d\x4f\xff\x7f\x46\xff\xaf\xff\xaf\x7e\xfe\x36\xf1\xdf" "\x02\xfd\xbf\xfe\x7f\xee\xd7\x33\xa6\xa5\xf5\xff\xb9\xfb\x3f\x1a\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x8f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x76\xd2\x89\x35\x3f\x97\xbb" "\xff\x13\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x9f" "\xaf\xff\xdf\x4d\xfa\xff\x69\xde\xff\x9f\xa1\xff\xbf\xc4\x7e\xfe\x8e\xfb" "\x7e\xb4\x6b\xef\xff\x5f\xf8\xbf\x5f\xfa\x7f\xfd\x3f\x9b\xb7\xb4\xfe\x3f" "\x77\xff\x27\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa9\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x7f\x26\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xfe\xf3\xf5\xff\xbb\x49\xff\x3f\x4d\xff\x3f\x43\xff\xbf\xd5\xf7\xf3\x77" "\xfd\xeb\xd7\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\xcf\xc6\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\x73\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xf9\xb8\xc5\xfe\x07\x00\x00\x80\x61\xec\xed\xfe\x8c\xcb\x1a\xee" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x6e\xd2\xff" "\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x69\xfd\xff\x17" "\xf6\x7e\xd5\xe9\xd5\x17\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xa5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x72\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x7f\x25\x6e\x69\xb2\xff\xf5\xff\xfa\xff\xdd\xe8\xff" "\xcf\x9e\x3d\x7b\x8d\xfe\x5f\xff\xbf\xff\xf7\x73\x4b\xff\x7f\xa3\xfe\x9f" "\xa2\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\xd2\xfa" "\xff\xdc\xfd\x5f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd7\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xeb\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\x8d\xb8\xa5\xc9\xfe\xd7\xff\x2f\xa0\xff\x3f\xad\xff\xf7" "\xfe\xbf\xfe\x7f\xe5\xfd\x7f\xfd\xff\x86\xe8\xff\xa7\xe9\xff\x67\x8c\xd8" "\xff\x9f\x3e\xfc\x6f\x7f\xdb\xfd\xfc\x51\x6d\xfb\xeb\xd7\xff\xeb\xff\x39" "\x68\x69\xfd\x7f\xee\xfe\x6f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xed\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x4e\xdc\xd2\x64\xff\xeb\xff\x8f\xaf\xff\xff" "\xff\x5f\xbb\x2e\xef\xff\x9f\x59\xad\xff\xfa\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x72\xd3\xff\x4f\xd3\xff\xcf\x18\xb1\xff\xbf\x04\xdb\xee\xe7\x77\xfd" "\xeb\xd7\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\xef\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x7b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xfd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x41\xdc\xd2\x64\xff" "\xeb\xff\x17\xf0\xfe\xff\x80\xfd\xbf\xf7\xff\xd7\x7f\x7f\xe8\xff\x17\xdd" "\xff\x5f\xa1\xff\x1f\x83\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xdf" "\x50\xff\x9f\xdf\xcd\xfa\xff\xee\x96\xd6\xff\xe7\xee\xff\x61\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x3f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1b\xe3\x96\xf3" "\xf6\xff\xba\xb6\x7b\x14\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xf9" "\xfa\xff\xdd\xa4\xff\x9f\x76\xd8\xfe\xff\xd4\xea\x68\xfd\x7f\xd2\xff\xeb" "\xff\xf5\xff\x5d\xfb\x7f\xef\xff\x73\xce\xd2\xfa\xff\xdc\xfd\x3f\x89\x5b" "\xfc\xfb\x7f\x00\x00\x00\xd8\x39\x57\x5e\xe4\xe7\x73\xf7\xff\x34\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x3f\x8f\x5b\x6e\xba\x62\x5b\x5f\xd2\xb1\xd2\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xfa\xcf\xd7\xff\xef\x26\xfd\xff\x34\xef\xff\xcf\xd0\xff" "\x6f\xa2\x9f\xbf\x9b\xfe\x7f\x8c\xfe\x7f\xb5\xd2\xff\x73\x74\x4b\xeb\xff" "\x73\xf7\xff\x22\x6e\xf1\xef\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x19\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8a\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x5f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f\xc4\xfe\x7f\x2f\xcd" "\xd4\xff\x9f\xa3\xff\x3f\x47\xff\xbf\x9e\xfe\xff\x78\xe8\xff\xa7\xe9\xff" "\x67\xe8\xff\xbd\xff\xaf\xff\xf7\xfe\x3f\x1b\xb5\xb4\xfe\x3f\x77\xff\x6f" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xdb\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff" "\x3e\x6e\x69\xb2\xff\xb7\xd6\xff\xc7\x5f\x6a\xfd\xff\xce\xf7\xff\xde\xff" "\xd7\xff\xeb\xff\xf5\xff\x8b\xa2\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\x7f\x88\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x4f" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe7\xb8\xa5\xc9\xfe\xf7\xfe" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x6e\xd2\xff\x4f\xd3" "\xff\xaf\x57\x7f\xa3\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x5a\x5a\xff\x9f" "\xbb\xff\x2f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6b\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x7f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf" "\xff\x7c\xfd\xff\x6e\xd2\xff\x4f\xdb\x66\xff\x7f\x8f\xdb\xcf\x7f\xac\xf7" "\xff\xb7\xde\xff\xe7\x97\xa0\xff\xd7\xff\xeb\xff\xd9\x88\xa5\xf5\xff\xb9" "\xfb\xff\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x7f\xc4\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x3f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x5f\x71\x4b\x93\xfd\x3f\xd3\xff\x9f\xaa\x3f\x50\xff\x3f\x49\xff" "\xbf\xff\xeb\xd7\xff\xaf\xff\xfe\xd0\xff\xeb\xff\xf5\xff\x97\x9f\xfe\x7f" "\x9a\xf7\xff\x67\xe8\xff\xbd\xff\xaf\xff\xd7\xff\xb3\x51\x4b\xeb\xff\x73" "\xf7\xff\x3b\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x37\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x7f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xbf\x71\x4b\x93\xfd\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f" "\xff\xf9\xfa\xff\xdd\xa4\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\xf5" "\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\xff\x0b\x00\x00\xff\xff\x3e\x94\x66" "\xb6", 24804)); NONFAILING(syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000000, /*flags=MS_SILENT|MS_NODIRATIME*/ 0x8800, /*opts=*/0x200000000300, /*chdir=*/0x21, /*size=*/0x60e4, /*img=*/0x200000006500)); // preadv2 arguments: [ // fd: fd (resource) // vec: nil // vlen: len = 0x0 (8 bytes) // off_low: int32 = 0x2 (4 bytes) // off_high: int32 = 0x0 (4 bytes) // flags: rwf_flags = 0x1e (8 bytes) // ] syscall(__NR_preadv2, /*fd=*/(intptr_t)-1, /*vec=*/0ul, /*vlen=*/0ul, /*off_low=*/2, /*off_high=*/0, /*flags=RWF_APPEND|RWF_NOWAIT|RWF_SYNC|RWF_DSYNC*/ 0x1eul); } 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); setup_cgroups(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }