// https://syzkaller.appspot.com/bug?id=a5da3337940551997dae603e434514ad51387f78 // 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 #include #include #include #include #include #include #include #include #include #ifndef __NR_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #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 void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } 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 int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static struct nlmsg nlmsg; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #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); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } 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 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); 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(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); 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 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(); 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 setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 6; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { 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(); 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // 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 = 0x20108c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {2c 69 6f 63 68 61 72 73 65 74 3d 63 70 31 32 // 35 31 2c 71 75 6f 74 61 2c 6e 6f 71 75 6f 74 61 00 75 73 72 71 // 75 6f 74 61 2c 69 6e 74 65 67 72 69 74 79 2c 75 6d 61 73 6b 3d // 30 78 38 38 30 30 30 30 30 30 30 30 30 30 30 30 30 30 2c 65 72 // 72 6f 72 73 3d 54 6f 6e 74 69 6e 75 65 2c 6e 6f 64 69 73 3f 0f // df 7d b9 18 93 9f 69 7a 65 2c 6e 6f 71 75 6f 74 61 2c 00 e6 6c // d6 5e 26 a0 29 3d 0f b6 34 92 41 09 60 79 ee 83 00 a5 4a 30 64 // 1d 40 95 d9 d2 be 9c ff ec 10 70 55 74 28 af 29 76 ab 44 4d 11 // d2 d4 ee 14 b8 5d e9 df 6d d9 21 4d 29 38 13 bb be 94 8b c6 6b // 11 95 f8 eb b5 d0 4b 9d aa 05 c2 2f 4c d6 d8 e9} (length 0xc7) // } // union ANYUNION { // ANYBLOB: buffer: {5a cf d2 93 a1 f6 b0 52 39 00 4e 70 f9 2d 77 // 6f 89 a8 05 0a 53 e0 b0 68 4d 8e 62 07 d0 57 82 cd 03 0a d4 84 // 0f 4b 99 e0 20 74 84 c9 15 47 84 72 00 2e 41 1e 94 d8 72 ac 64 // 49 99 fd 86 50 cc c0 29 ee 65 e2 7d db 6e 91 21 23 d4 a0 1b 73 // 01 64 33 b7 02 ba db ce e2 cd da 5e 01 04 f6 3b 92 9f f3 24 fc // fe 7d 0b 2c b0 6d 58 cf f1 14 00 6d d7 44 77 83 97 f1 5a 01 b4 // 17 e3 65 43 53 bd 91 72 0a 0a 50 71 0b 7d 5e 0f 9a e9 45 95 1c // 4c f4 95 20 2f 94 a9 5a 53 76 e3 59 1d 13 f4} (length 0x9c) // } // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 6e 6f 64 69 73 63 61 // 72 64 2c 67 69 64 3d} (length 0x16) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x612b (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x612b) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000040, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000180, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000006540, "\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x31\x32\x35\x31" "\x2c\x71\x75\x6f\x74\x61\x2c\x6e\x6f\x71\x75\x6f\x74\x61\x00\x75\x73" "\x72\x71\x75\x6f\x74\x61\x2c\x69\x6e\x74\x65\x67\x72\x69\x74\x79\x2c" "\x75\x6d\x61\x73\x6b\x3d\x30\x78\x38\x38\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x2c\x65\x72\x72\x6f\x72\x73\x3d\x54\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x6e\x6f\x64\x69\x73\x3f\x0f\xdf\x7d\xb9" "\x18\x93\x9f\x69\x7a\x65\x2c\x6e\x6f\x71\x75\x6f\x74\x61\x2c\x00\xe6" "\x6c\xd6\x5e\x26\xa0\x29\x3d\x0f\xb6\x34\x92\x41\x09\x60\x79\xee\x83" "\x00\xa5\x4a\x30\x64\x1d\x40\x95\xd9\xd2\xbe\x9c\xff\xec\x10\x70\x55" "\x74\x28\xaf\x29\x76\xab\x44\x4d\x11\xd2\xd4\xee\x14\xb8\x5d\xe9\xdf" "\x6d\xd9\x21\x4d\x29\x38\x13\xbb\xbe\x94\x8b\xc6\x6b\x11\x95\xf8\xeb" "\xb5\xd0\x4b\x9d\xaa\x05\xc2\x2f\x4c\xd6\xd8\xe9", 199)); NONFAILING(memcpy( (void*)0x200000006607, "\x5a\xcf\xd2\x93\xa1\xf6\xb0\x52\x39\x00\x4e\x70\xf9\x2d\x77\x6f\x89" "\xa8\x05\x0a\x53\xe0\xb0\x68\x4d\x8e\x62\x07\xd0\x57\x82\xcd\x03\x0a" "\xd4\x84\x0f\x4b\x99\xe0\x20\x74\x84\xc9\x15\x47\x84\x72\x00\x2e\x41" "\x1e\x94\xd8\x72\xac\x64\x49\x99\xfd\x86\x50\xcc\xc0\x29\xee\x65\xe2" "\x7d\xdb\x6e\x91\x21\x23\xd4\xa0\x1b\x73\x01\x64\x33\xb7\x02\xba\xdb" "\xce\xe2\xcd\xda\x5e\x01\x04\xf6\x3b\x92\x9f\xf3\x24\xfc\xfe\x7d\x0b" "\x2c\xb0\x6d\x58\xcf\xf1\x14\x00\x6d\xd7\x44\x77\x83\x97\xf1\x5a\x01" "\xb4\x17\xe3\x65\x43\x53\xbd\x91\x72\x0a\x0a\x50\x71\x0b\x7d\x5e\x0f" "\x9a\xe9\x45\x95\x1c\x4c\xf4\x95\x20\x2f\x94\xa9\x5a\x53\x76\xe3\x59" "\x1d\x13\xf4", 156)); NONFAILING(memcpy((void*)0x2000000066a3, "discard,nodiscard,gid=", 22)); NONFAILING(sprintf((char*)0x2000000066b9, "0x%016llx", (long long)-1)); NONFAILING(*(uint16_t*)0x2000000066cb = 0); NONFAILING(memcpy( (void*)0x2000000002c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\xb4\xb5" "\x7a\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f" "\x70\xe0\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16" "\x71\xe5\x0b\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a" "\xe0\xca\x8d\x13\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd" "\x6e\xed\xd4\xf1\xce\xda\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xf8" "\xbb\xb3\x2f\x99\x99\x7d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x88\xef\x7f\xef\x07\x2b\x9d\x88\xb8\xf6\xf3\xb4\x60" "\x29\xe2\x33\xd1\x8b\xe8\x46\x2c\xd4\xf5\x72\x44\x2c\x2c\x2f\xe5\xf5" "\xfb\x11\xf1\x5c\xec\x34\xc7\xb3\x11\x31\x98\x8b\xa8\x6f\xbf\xf3\xcf" "\xd3\x11\xaf\x46\xc4\x47\x4f\x45\x6c\x6d\xaf\xaf\xd6\x8b\x2f\x1e\xb2" "\x1f\xdf\xfd\xe3\xdf\x7f\xf7\xc3\x27\xde\xfa\xdb\x1f\x06\xe7\xff\xfb" "\xa7\x3b\xbd\xd7\x26\xad\x77\xf7\xee\xaf\xfe\xf3\xe7\x7b\x47\xdb\x66" "\x00\x00\x00\x28\x4d\x55\x55\x55\x27\x7d\xcc\x3f\x93\x3e\xdf\x77\xdb" "\xee\x14\x00\x30\x15\xf9\xf5\xbf\x4a\xf2\xf2\x53\x5f\xff\xfa\x9f\x6f" "\xfd\x65\x96\xfa\xa3\x56\xab\xd5\x6a\xf5\x14\xea\xa6\x6a\xbc\x7b\xcd" "\x22\x22\x36\x9a\xb7\xa9\xdf\x33\x38\x1c\x0f\x00\x27\xcc\x46\x7c\xdc" "\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\x27\xda\xee\x04\x30\xd3\x3a\x6d" "\x77\x80\x63\xb1\xb5\xbd\xbe\xda\x49\xf9\x76\x9a\xaf\x07\xcb\xbb\xed" "\xf9\x5c\x90\x7d\xf9\x6f\x74\x1e\x5c\xdf\x31\x69\x7a\x90\xd1\x73\x4c" "\xa6\xf5\xf8\xda\x8c\x5e\x3c\x33\xa1\x3f\x0b\x53\xea\xc3\x2c\xc9\xf9" "\x77\x47\xf3\xbf\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29\xff\xe1" "\xee\xa5\x4f\xc5\xc9\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd\xbf" "\x54\x39\xff\xfe\x23\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc" "\xff\xff\x4b\x2d\x1f\xff\x9d\x3b\xfa\xa6\x1c\xca\x27\x1d\xff\x5d\x9e" "\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\x71\x3b\xea\xf8\x7f\x0f\x18" "\xff\x0f\x00\x00\x00\x66\x56\xfd\x59\xbd\xf6\x9b\xa7\xf6\x96\x4d\xfa" "\x2e\xb6\x7a\xf9\xd5\x4e\xc4\x93\x23\xeb\x03\x85\x49\x17\xcb\x2c\xb6" "\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x49\x7f\xf7\x1c" "\xde\xab\x9d\x88\x41\x44\x3c\xb9\xb8\x58\x55\x55\xfd\xd3\x34\x5a\x3f" "\xaa\xa3\xde\xfe\xa4\x2b\x7d\xfb\xa1\x64\x6d\x3f\xc9\x03\x00\xc0\xae" "\x8f\x9e\x1a\xb9\x96\xbf\x13\x31\x1f\x11\x57\xd3\x77\xfd\x0d\x16\x17" "\x17\xab\x6a\x7e\x61\xb1\x5a\xac\x16\xe6\xf2\xfb\xd9\xe1\xdc\x7c\xb5" "\xd0\xf8\x5c\x9b\xa7\xf5\xb2\xb9\xe1\x21\xde\x10\xf7\x87\x55\xfd\xcb" "\xe6\x1b\xb7\x6b\x3a\xe8\xf3\xf2\x41\xed\xa3\xbf\xaf\xbe\xaf\x61\xd5" "\x3b\x44\xc7\x1e\x93\x41\xfa\x6b\x4e\x68\x6e\x29\x6c\x00\x48\x76\x5f" "\x8d\xb6\xbc\x22\x9d\x32\x55\xf5\xf4\xa4\x37\x1f\xb0\x8f\xfd\xff\x14" "\x5a\x8a\xa5\xb6\x1f\x57\xcc\xbe\xb6\x1f\xa6\x00\x00\x00\xc0\xf1\xab" "\xaa\xaa\xea\xa4\xaf\xf3\x3e\x93\x8e\xf9\x77\xdb\xee\x14\x00\x30\x15" "\xf9\xf5\x7f\xf4\xb8\xc0\x91\xea\xee\x84\xf6\x88\xc7\xf3\xfb\xd5\x6a" "\xb5\x5a\xad\x56\x7f\xaa\xba\xa9\x1a\xef\x5e\xb3\x88\x88\x8d\xe6\x6d" "\xea\xf7\x0c\x86\xe3\x07\x80\x13\x66\x23\x3e\x6e\xbb\x0b\xb4\x48\xfe" "\x45\xeb\x47\xc4\x73\x6d\x77\x02\x98\x69\x9d\xb6\x3b\xc0\xb1\xd8\xda" "\x5e\x5f\xed\xa4\x7c\x3b\xcd\xd7\x83\x34\xbe\x7b\x3e\x17\x64\x5f\xfe" "\x1b\x9d\x9d\xdb\xe5\xdb\x8f\x9b\x1e\x64\xf4\x1c\x93\x69\x3d\xbe\x36" "\xa3\x17\xcf\x4c\xe8\xcf\xb3\x53\xea\xc3\x2c\xc9\xf9\x77\x47\xf3\xbf" "\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29\xff\xe1\xce\x25\x73\xe5" "\xc9\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd\xbf\x54\x39\xff\xfe" "\x23\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x8e" "\xff\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x13\x67\x6b\x7b\x7d\x35" "\x5f\xf7\x9a\x8f\xff\x7f\x6e\xcc\x7a\xae\xff\x3c\x9d\x72\xfe\x9d\x47" "\xcd\x7f\x21\xcd\xcb\xff\x44\xcb\xf9\x77\x47\xf2\xff\xf2\xc8\x7a\xbd" "\xc6\xfc\xfd\x37\xf7\xf6\xff\x7f\x6f\xaf\xaf\xfe\xfe\xce\xbf\x3e\x9b" "\xa7\x87\xcd\x7f\x2e\xcf\x74\xd2\x23\xab\x93\x1e\x11\x9d\x74\x4f\x9d" "\x7e\x9a\x1e\x65\xeb\x1e\xb6\x39\xe8\x0d\xeb\x7b\x1a\x74\xba\xbd\x7e" "\x3a\xe7\xa7\x1a\xbc\x13\x37\xe2\x66\xac\xc5\x85\x7d\xeb\x76\xd3\xdf" "\x63\xaf\x7d\x65\x5f\x7b\xdd\xd3\xc1\xbe\xf6\x8b\xfb\xda\xfb\x0f\xb5" "\x5f\xda\xd7\x3e\x48\xdf\x3b\x50\x2d\xe4\xf6\x73\xb1\x1a\x3f\x89\x9b" "\xf1\xf6\x4e\x7b\xdd\x36\x77\xc0\xf6\xcf\x1f\xd0\x5e\x1d\xd0\x9e\xf3" "\xef\x79\xfe\x2f\x52\xce\xbf\xdf\xf8\xa9\xf3\x5f\x4c\xed\x9d\x91\x69" "\xed\xfe\x87\xdd\x87\xf6\xfb\xe6\x74\xdc\xfd\xbc\x71\xe3\xf3\xbf\xbc" "\x70\xfc\x9b\x73\xa0\xcd\xe8\x3d\xd8\xb6\xa6\x7a\xfb\xce\xb6\xd0\x9f" "\x9d\xbf\xc9\x13\xc3\xf8\xd9\xed\xb5\x5b\xe7\xee\x5e\xbf\x73\xe7\xd6" "\x4a\xa4\xc9\xbe\xa5\x17\x23\x4d\x1e\xb3\x9c\xff\x60\xe7\x67\x6e\xef" "\xf9\xff\x85\xdd\xf6\xfc\xbc\xdf\xdc\x5f\xef\x7f\x38\x7c\xe4\xfc\x67" "\xc5\x66\xf4\x27\xe6\xff\x42\x63\xbe\xde\xde\x97\xa6\xdc\xb7\x36\xe4" "\xfc\x87\xe9\x27\xe7\xff\x76\x6a\x1f\xbf\xff\x9f\xe4\xfc\x27\xef\xff" "\x2f\xb7\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8" "\x24\x55\x55\xed\x5c\x22\xfa\x46\x44\x5c\x4e\xd7\xff\xb4\x75\x6d\x26" "\x00\x30\x5d\xf9\xf5\xbf\x4a\xf2\x72\xb5\x5a\xad\x56\xab\xd5\xa7\xaf" "\x6e\xaa\xc6\x7b\xbd\x59\x44\xc4\x5f\x9b\xb7\xa9\xdf\x33\xfc\x62\xdc" "\x2f\x03\x00\x66\xd9\xff\x22\xe2\x1f\x6d\x77\x82\xd6\xc8\xbf\x60\xf9" "\xfb\xfe\xea\xe9\x8b\x6d\x77\x06\x98\xaa\xdb\xef\x7f\xf0\xa3\xeb\x37" "\x6f\xae\xdd\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x4f\x2b" "\x8f\xff\xb9\xdc\x18\xff\xf9\xc5\x88\x58\x1a\x59\x6f\xdf\xf8\xaf\x6f" "\xc6\xf2\x51\xc7\xff\xec\xe7\x99\x07\x03\x8c\x3e\xe6\x81\xbe\x27\xd8" "\xec\x0e\x7b\xdd\xc6\x70\xe3\xcf\xc7\xce\xf8\xdc\xe7\x26\x8d\xff\x7d" "\x36\x1e\x1e\xff\x3b\x8f\x89\xdb\x6b\x6e\xc7\x04\x83\x03\xda\x87\x07" "\xb4\xcf\x1d\xd0\x3e\x3f\x76\xe9\x5e\x5a\x63\x2f\xf4\x68\xc8\xf9\x3f" "\xdf\x18\xef\xbc\xce\xff\xcc\xc8\xf0\xeb\x25\x8c\xff\x3a\x3a\xe6\x7d" "\x09\x72\xfe\x67\x1b\x8f\xe7\x3a\xff\x2f\x8d\xac\xd7\xcc\xbf\xfa\xed" "\xcc\xe5\xbf\x71\xd8\x15\x37\xa3\xbb\x2f\xff\xf3\x77\xde\xfb\xe9\xf9" "\xdb\xef\x7f\xf0\xca\x8d\xf7\xae\xbf\xbb\xf6\xee\xda\x8f\x2f\xad\xac" "\x5c\xb8\x74\xf9\xf2\x95\x2b\x57\xce\xbf\x73\xe3\xe6\xda\x85\xdd\x7f" "\x8f\xa7\xd7\x33\x20\xe7\x9f\xc7\xbe\x76\x1e\x68\x59\x72\xfe\x39\x73" "\xf9\x97\x25\xe7\xff\x85\x54\xcb\xbf\x2c\x39\xff\x2f\xa6\x5a\xfe\x65" "\xc9\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f\x59\x72\xfe" "\x2f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f\xcb\xd6\xf6\xfa\x5c" "\x9d\xff\xcb\xa9\x96\x7f\x59\xf2\xfe\xff\xd5\x54\xcb\xbf\x2c\x39\xff" "\x57\x52\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4f\xf5" "\x21\xf2\xf7\xf5\xf0\xa7\x48\xce\x3f\x1f\xe1\xb2\xff\x97\x25\xe7\xbf" "\x92\x6a\xf9\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\x52\xaa\xe5" "\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92" "\xf3\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x2b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5" "\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92" "\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2\xe4\xfc\x5f" "\x4f\xb5\xfc\xcb\xb2\xf7\xfd\xff\x66\xcc\x98\x31\x93\x67\xda\x7e\x66" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\x4d\xe3\x74\xe2\xb6" "\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\xff\xb3" "\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00" "\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x2a\xec\xdd\x6b\x8c\x5c\x67\x7d\x06\xf0\x33\x7b\xb1" "\xd7\x0e\x21\x06\x42\x70\x52\x03\x6b\xc7\x18\xe3\x2c\xd9\xf5\x25\xbe" "\xd0\xba\x98\x70\x6d\x80\x52\x20\xa1\xd0\x0b\xb6\xeb\x5d\x9b\x05\xdf" "\xf0\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c\x8a\x2a\xaa\xa6\x1f\xda\x02" "\x42\x6d\xa4\xaa\xc2\xaa\xf8\x40\x2b\x4a\xf3\xa1\xea\xe5\x53\xd3\x7e" "\xa0\x5f\x2a\xaa\x4a\x48\x8d\xaa\x10\x05\x54\xa4\xb6\xa2\xd9\x6a\xe6" "\xbc\xef\xeb\x99\xd9\xd9\x99\x5d\xef\x78\x3d\x7b\xde\xdf\x4f\x4a\xfe" "\xde\x9d\x33\x73\xce\x9c\x79\x67\x76\x9f\xb5\x9f\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\x00\x00\x00\xa0\xd9\xd6\x37" "\xcf\x7c\xbe\x56\x14\x45\xfd\xbf\xc6\xff\x36\x15\xc5\x8b\xea\x7f\xde" "\x30\xbe\xa9\xf1\xb9\x37\xdc\xea\x23\x04\x00\x00\x00\x56\xea\xff\x1a" "\xff\x7f\xfe\x8e\xf4\x89\x23\x4b\xb8\x52\xd3\x36\x7f\xf7\xaa\x7f\xfc" "\xe6\xfc\xfc\xfc\x7c\xf1\xc1\xe1\xdf\x1d\xfd\xf2\xfc\x7c\xba\x60\xbc" "\x28\x46\xd7\x17\x45\xe3\xb2\xe8\xda\xbf\x7f\xa8\xd6\xbc\x4d\xf0\x58" "\x31\x56\x1b\x6a\xfa\x78\xa8\xc7\xee\x87\x7b\x5c\x3e\xd2\xe3\xf2\xd1" "\x1e\x97\xaf\xeb\x71\xf9\xfa\x1e\x97\x8f\xf5\xb8\x7c\xc1\x09\x58\x60" "\x43\xf9\xf3\x98\xc6\x8d\x6d\x6f\xfc\x71\x53\x79\x4a\x8b\x3b\x8b\xd1" "\xc6\x65\xdb\x3b\x5c\xeb\xb1\xda\xfa\xa1\xa1\xf8\xb3\x9c\x86\x5a\xe3" "\x3a\xf3\xa3\x27\x8b\xd9\xe2\x74\x31\x53\x4c\xb5\x6c\x5f\x6e\x5b\x6b" "\x6c\xff\xed\xad\xf5\x7d\xbd\xa3\x88\xfb\x1a\x6a\xda\xd7\x96\xfa\x0a" "\xf9\xe1\xa7\x4f\xc4\x63\xa8\x85\x73\xbc\xbd\x65\x5f\xd7\x6f\x33\xfa" "\xc1\x9b\x8a\xf1\x1f\xfd\xf0\xd3\x27\xfe\xf8\xe2\xb3\x77\x77\x9a\x3d" "\x4f\x43\xcb\xed\x95\xc7\xb9\x73\x5b\xfd\x38\x3f\x1b\x3e\x53\x1e\x6b" "\xad\x58\x9f\xce\x49\x3c\xce\xa1\xa6\xe3\xdc\xd2\xe1\x31\x19\x6e\x39" "\xce\x5a\xe3\x7a\xf5\x3f\xb7\x1f\xe7\xf3\x4b\x3c\xce\xe1\xeb\x87\xb9" "\xaa\xda\x1f\xf3\xb1\x62\xa8\xf1\xe7\xa7\x1b\xe7\x69\xa4\xf9\xc7\x7a" "\xe9\x3c\x6d\x09\x9f\xfb\xef\x7b\x8b\xa2\xb8\x72\xfd\xb0\xdb\xb7\x59" "\xb0\xaf\x62\xa8\xd8\xd8\xf2\x99\xa1\xeb\x8f\xcf\x58\xb9\x22\xeb\xb7" "\x51\x5f\x4a\x2f\x2d\x46\x96\xb5\x4e\xb7\x2e\x61\x9d\xd6\xe7\xf4\xf6" "\xd6\x75\xda\xfe\x9c\x88\x8f\xff\xd6\x70\xbd\x91\x45\x8e\xa1\xf9\x61" "\xfa\xc1\x67\xd6\x2d\x78\xdc\x97\xbb\x4e\xa3\xfa\xbd\x5e\xec\xb9\xd2" "\xbe\x06\xfb\xfd\x5c\x19\x94\x35\x18\xd7\xc5\xd3\x8d\x3b\xfd\x78\xc7" "\x35\xb8\x3d\xdc\xff\x4f\xef\x58\x7c\x0d\x76\x5c\x3b\x1d\xd6\x60\xba" "\xdf\x4d\x6b\x70\x5b\xaf\x35\x38\xb4\x6e\xb8\x71\xcc\xe9\x41\xa8\x35" "\xae\x73\x7d\x0d\xee\x6e\xd9\x7e\xb8\xb1\xa7\x5a\x63\x3e\xb3\xa3\xfb" "\x1a\x9c\xbc\x78\xe6\xfc\xe4\xdc\x27\x3f\xf5\xfa\xd9\x33\xc7\x4f\xcd" "\x9c\x9a\x39\xbb\x77\xf7\xee\xa9\xbd\xfb\xf7\x1f\x3c\x78\x70\xf2\xe4" "\xec\xe9\x99\xa9\xf2\xff\x37\x78\xb6\x07\xdf\xc6\x62\x28\x3d\x07\xb6" "\x85\x73\x17\x9f\x03\xaf\x6d\xdb\xb6\x79\xa9\xce\x7f\xb5\x7f\xcf\xc3" "\xb1\x2e\xcf\xc3\x4d\x6d\xdb\xf6\xfb\x79\x38\xd2\x7e\xe7\x6a\xab\xf3" "\x84\x5c\xb8\xa6\xcb\xe7\xc6\xc3\xf5\x93\x3e\x76\x75\xa8\x58\xe4\x39" "\xd6\x78\x7c\x76\xad\xfc\x79\x98\xee\x77\xd3\xf3\x70\xa4\xe9\x79\xd8" "\xf1\x6b\x4a\x87\xe7\xe1\xc8\x12\x9e\x87\xf5\x6d\xce\xef\x5a\xda\xf7" "\x2c\x23\x4d\xff\x75\x3a\x86\x9b\xf5\xb5\x60\x53\xd3\x1a\x6c\xff\x7e" "\xa4\x7d\x0d\xf6\xfb\xfb\x91\x41\x59\x83\x63\x61\x5d\xfc\xeb\xae\xc5" "\xbf\x16\x6c\x09\xc7\xfb\xf8\xc4\x72\xbf\x1f\x19\x5e\xb0\x06\xd3\xdd" "\x0d\xaf\x3d\xf5\xcf\xa4\xef\xf7\xc7\x0e\x36\x46\xa7\x75\x79\x4f\xfd" "\x82\xdb\xd6\x15\x97\xe6\x66\x2e\xdc\xff\xe8\xf1\x8b\x17\x2f\xec\x2e" "\xc2\x58\x15\x2f\x6b\x5a\x2b\xed\xeb\x75\x63\xd3\x7d\x2a\x16\xac\xd7" "\xa1\x65\xaf\xd7\x23\xb3\xaf\x7a\xfc\x9e\x0e\x9f\xdf\x14\xce\xd5\xd8" "\xeb\xeb\xff\x1b\x5b\xf4\xb1\xaa\x6f\xb3\xef\xfe\xee\x8f\x55\xe3\xab" "\x5b\xe7\xf3\xd9\xf2\xd9\x3d\x45\x18\x7d\xb6\xda\xe7\xb3\xd3\x57\xf3" "\xfa\xf9\x4c\x59\xb2\xcb\xf9\xac\x6f\xf3\xd9\xc9\x95\x7f\x2f\x9e\x72" "\x69\xd3\xeb\xef\xe8\x22\xaf\xbf\x31\xf7\xbf\x50\xee\x2f\xdd\xd4\x63" "\xc3\xa3\x23\xe5\xf3\x77\x38\x9d\x9d\xd1\x96\xd7\xe3\xd6\x87\x6a\xa4" "\xf1\xda\x55\x6b\xec\xfb\xf9\xc9\xa5\xbd\x1e\x8f\x86\xff\x56\xfb\xf5" "\xf8\xce\x2e\xaf\xc7\x9b\xdb\xb6\xed\xf7\xeb\xf1\x68\xfb\x9d\x8b\xaf" "\xc7\xb5\x5e\x3f\xed\x58\x99\xf6\xc7\x73\x2c\xac\x93\xd3\x53\xdd\x5f" "\x8f\xeb\xdb\x6c\xde\xb3\xdc\x35\x39\xd2\xf5\xf5\xf8\xde\x30\x6b\xe1" "\xfc\xbf\x2e\x24\x85\x94\x8b\x9a\xd6\xce\x62\xeb\x36\xed\x6b\x64\x64" "\x34\xdc\xaf\x91\xb8\x87\xd6\x75\xba\xb7\x65\xfb\xd1\x90\xcd\xea\xfb" "\x7a\x72\xcf\x8d\xad\xd3\x9d\xf7\x96\xb7\x35\x9c\xee\xdd\x75\xab\xb5" "\x4e\xc7\xdb\xb6\xed\xf7\x3a\x4d\xaf\x57\x8b\xad\xd3\x5a\xaf\x9f\xbe" "\xdd\x98\xf6\xc7\x73\x2c\xac\x8b\x3b\xf7\x76\x5f\xa7\xf5\x6d\x9e\xda" "\xb7\xf2\xd7\xce\x0d\xf1\x8f\x4d\xaf\x9d\xeb\x7a\xad\xc1\xd1\xe1\x75" "\xf5\x63\x1e\x4d\x8b\xb0\x7c\xbd\x9f\xdf\x10\xd7\xe0\xfd\xc5\x89\xe2" "\x5c\x71\xba\x98\x6e\x5c\xba\xae\xb1\x9e\x6a\x8d\x7d\x4d\x3c\xb0\xb4" "\x35\xb8\x2e\xfc\xb7\xda\xaf\x95\x9b\xbb\xac\xc1\x9d\x6d\xdb\xf6\x7b" "\x0d\xa6\xaf\x63\x8b\xad\xbd\xda\xc8\xc2\x3b\xdf\x07\xed\x8f\xe7\x58" "\x58\x17\x4f\x3c\xd0\x7d\x0d\xd6\xb7\x79\xcb\x81\xfe\x7e\xef\xba\x33" "\x7c\x26\x6d\xd3\xf4\xbd\x6b\xfb\xcf\xd7\x16\xfb\x99\xd7\x3d\x6d\xa7" "\xe9\x66\xfe\xcc\xab\x7e\x9c\x7f\x73\xa0\xfb\xcf\x66\xeb\xdb\x9c\x3e" "\xb8\xdc\x9c\xd9\xfd\x3c\xdd\x17\x3e\x73\x5b\x87\xf3\xd4\xfe\xfc\x5d" "\xec\x39\x35\x5d\xac\xce\x79\xda\x1c\x8e\xf3\xd9\x83\x8b\x9f\xa7\xfa" "\xf1\xd4\xb7\xf9\xf2\xa1\x25\xae\xa7\x23\x45\x51\x5c\xfe\xf8\x83\x8d" "\x9f\xf7\x86\xbf\x5f\xf9\xf3\x4b\xdf\xfd\x66\xcb\xdf\xbb\x74\xfa\x3b" "\x9d\xcb\x1f\x7f\xf0\xb9\xdb\x4f\xfe\xed\x72\x8e\x1f\x80\xb5\xef\x85" "\x72\x6c\x2c\xbf\xd6\x35\xfd\xcd\xd4\x52\xfe\xfe\x1f\x00\x00\x00\x58" "\x13\x62\xee\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x8f\xff" "\x2a\x3c\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x1f\x09\x33\xc9\x24\xff" "\x6f\x7e\xcb\xb3\xb3\x2f\x5c\x2e\x52\x33\x7f\x3e\x88\x97\xa7\xd3\xf0" "\x50\xb9\x5d\xec\xb8\x4e\x85\x8f\xc7\xe7\xaf\xab\x7f\xfe\xc1\xaf\xcf" "\xfc\xf8\x2f\x2f\x2f\x6d\xdf\x43\x45\x51\xfc\xe4\xa1\xdf\xe8\xb8\xfd" "\xe6\x87\xe2\x71\x95\xc6\xc3\x71\x5e\x7b\x6b\xeb\xe7\x17\x5e\xf1\xf2" "\x92\xf6\x7f\xec\x91\xeb\xdb\x35\xf7\xd7\xbf\x12\x6e\x3f\xde\x9f\xa5" "\x2e\x83\x4e\x15\xdc\xa9\xa2\x28\xbe\x7d\xc7\x17\x1b\xfb\x19\xff\xd0" "\xd5\xc6\x7c\xea\xa1\x63\x8d\xf9\xbe\x2b\x8f\x3f\x56\xdf\xe6\xf9\x43" "\xe5\xc7\xf1\xfa\xcf\xbc\xac\xdc\xfe\x0f\x42\xf9\xf7\xc8\xc9\xe3\x2d" "\xd7\x7f\x26\x9c\x87\xef\x87\x39\xf5\xce\xce\xe7\x23\x5e\xef\x1b\x57" "\x5f\xb7\xe5\xc0\x07\xae\xef\x2f\x5e\xaf\xb6\xed\xc5\x8d\xbb\xfd\xc4" "\x87\xcb\xdb\x8d\xbf\x27\xe7\x4b\x8f\x95\xdb\xc7\xf3\xbc\xd8\xf1\xff" "\xd5\x17\x9e\xfc\x46\x7d\xfb\x47\x5f\xd3\xf9\xf8\x2f\x0f\x75\x3e\xfe" "\x27\xc3\xed\x7e\x3d\xcc\xff\x79\x65\xb9\x7d\xf3\x63\x50\xff\x38\x5e" "\xef\x73\xe1\xf8\xe3\xfe\xe2\xf5\xee\xff\xda\x77\x3a\x1e\xff\xb5\xcf" "\x97\xdb\x9f\x7f\x5b\xb9\xdd\xb1\x30\xe3\xfe\x77\x86\x8f\xb7\xbf\xed" "\xd9\xd9\xe6\xf3\xf5\x68\xed\x78\xcb\xfd\x2a\xde\x5e\x6e\x17\xf7\x3f" "\xf5\xdd\xdf\x6e\x5c\x1e\x6f\x2f\xde\x7e\xfb\xf1\x8f\x1d\xbd\xda\x72" "\x3e\xda\xd7\xc7\x53\xff\x5c\xde\xce\x64\xdb\xf6\xf1\xf3\x71\x3f\xd1" "\x5f\xb4\xed\xbf\x7e\x3b\xcd\xeb\x33\xee\xff\xc9\xdf\x3a\xd6\x72\x9e" "\x7b\xed\xff\xda\xfb\x9e\x79\x65\xfd\x76\xdb\xf7\x7f\x5f\xdb\x76\xc3" "\x6d\xd7\x6f\xff\x8d\x4d\x7f\xf8\xb9\x2f\x76\xdc\x5f\x3c\x9e\x23\x7f" "\x76\xbe\xe5\xfe\x1c\x79\x6f\x78\x1e\x87\xfd\x3f\xf1\xe1\xb0\x1e\xc3" "\xe5\xff\x7b\xed\x8b\x2d\xfb\x8d\x8e\xbd\xb7\xf5\xf5\x27\x6e\xff\x95" "\x4d\x97\x5b\xee\x4f\xf4\x8e\x1f\x95\xfb\xbf\xf6\xc6\x53\x8d\xf9\x1f" "\xe3\x3f\xfe\xfd\xdb\x5e\x74\xfb\x8b\xaf\xbc\xba\x7e\xee\x8a\xe2\xe9" "\xf7\x97\xb7\xd7\x6b\xff\xa7\xfe\xe8\x5c\xcb\xf1\x7f\xf5\xae\x5d\x8d" "\xc7\x23\x5e\x1e\x3b\xfa\xed\xfb\x5f\x4c\xdc\xff\x85\x4f\x4c\x9c\x3d" "\x37\x77\x69\x76\xba\xe9\xac\x36\x7e\x77\xce\xbb\xca\xe3\x59\x3f\xb6" "\x61\x63\xfd\x78\xef\x08\xaf\xad\xed\x1f\x1f\x3d\x77\xf1\x23\x33\x17" "\xc6\xa7\xc6\xa7\x8a\x62\xbc\xba\xbf\x42\xef\x86\x7d\x2d\xcc\xe7\xca" "\x71\x65\xb9\xd7\xdf\xf5\x48\x78\x3c\xef\xf9\xbd\x6f\x6f\xdc\xf1\x4f" "\x5f\x88\x9f\xff\x97\x87\xcb\xcf\x5f\x7d\x67\xf9\x75\xeb\xb5\x61\xbb" "\x2f\x85\xcf\x6f\x2a\x1f\xbf\xf9\xda\x0a\xf7\xff\xc4\xd6\xbb\x1a\xcf" "\xef\xda\x53\xe5\xc7\x2d\x3d\xf6\x3e\xd8\xb2\xfd\x3f\x0f\x2e\x69\xc3" "\x70\xff\xdb\xbf\x2f\x88\xeb\xfd\xfc\xcb\x3f\xd2\x38\x0f\xf5\xcb\x1a" "\x5f\x37\xe2\xf3\x7a\x85\xc7\xff\xbd\xe9\xf2\x76\xbe\x15\xce\xeb\x7c" "\xf8\xcd\xcc\xdb\xee\xba\xbe\xbf\xe6\xed\xe3\xef\x46\xb8\xfa\xfe\xf2" "\xf9\xbe\xe2\xf3\x17\x5e\xe6\xe2\xe3\xfa\x27\xe1\xf1\x7e\xf7\xf7\xcb" "\xdb\x8f\xc7\x15\xef\xef\xf7\xc2\xf7\x31\xdf\xd9\xdc\xfa\x7a\x17\xd7" "\xc7\xb7\x2e\x0f\xb5\xdf\x7e\xe3\xb7\x78\x5c\x09\xaf\x27\xc5\x95\xf2" "\xf2\xb8\x55\x3c\xdf\x57\x9f\xbf\xab\xe3\xe1\xc5\xdf\x43\x52\x5c\xb9" "\xbb\xf1\xf1\xef\xa4\xdb\xb9\x7b\x59\x77\x73\x31\x73\x9f\x9c\x9b\x3c" "\x3d\x7b\xf6\xd2\xa3\x93\x17\x67\xe6\x2e\x4e\xce\x7d\xf2\x53\x47\xcf" "\x9c\xbb\x74\xf6\xe2\xd1\xc6\xef\xf2\x3c\xfa\xd1\x5e\xd7\xbf\xfe\xfa" "\xb4\xb1\xf1\xfa\x34\x3d\xb3\x7f\x5f\x31\xb5\xa1\x28\x8a\x73\xc5\xd4" "\x2a\xbc\x60\xdd\x9c\xe3\xaf\xff\x69\x69\xc7\x7f\xfe\x91\x13\xd3\x07" "\xa6\x76\x4c\xcf\x9c\x3c\x7e\xe9\xe4\xc5\x47\xce\xcf\x5c\x38\x75\x62" "\x6e\xee\xc4\xcc\xf4\xdc\x8e\xe3\x27\x4f\xce\x7c\xa2\xd7\xf5\x67\xa7" "\x0f\xef\xde\x73\x68\xef\x81\x3d\x13\xa7\x66\xa7\x0f\x1f\x3c\x74\x68" "\xef\xa1\x89\xd9\xb3\xe7\xea\x87\x51\x1e\x54\x0f\xfb\xa7\x3e\x36\x71" "\xf6\xc2\xd1\xc6\x55\xe6\x0e\xef\x3b\xb4\xfb\x81\x07\xf6\x4d\x4d\x9c" "\x39\x37\x3d\x73\xf8\xc0\xd4\xd4\xc4\xa5\x5e\xd7\x6f\x7c\x6d\x9a\xa8" "\x5f\xfb\xd7\x27\x2e\xcc\x9c\x3e\x7e\x71\xf6\xcc\xcc\xc4\xdc\xec\xa7" "\x66\x0e\xef\x3e\xb4\x7f\xff\x9e\x9e\xbf\x0d\xf0\xcc\xf9\x93\x73\xe3" "\x93\x17\x2e\x9d\x9d\xbc\x34\x37\x73\x61\xb2\xbc\x2f\xe3\x17\x1b\x9f" "\xae\x7f\xed\xeb\x75\x7d\xaa\x69\xee\xdf\xca\xef\x67\xdb\xd5\xca\x5f" "\xc4\x57\xbc\xe7\xbe\xfd\xe9\xf7\xb3\xd6\x7d\xfd\x33\x8b\xde\x54\xb9" "\x49\xdb\x2f\x10\x7d\x36\xfc\x2e\x9a\x7f\x78\xc9\xf9\x83\x4b\xf9\x38" "\xe6\xfe\xd1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x75\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xeb\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\xc7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x4b\xeb" "\xff\x97\x97\xeb\xff\xe7\xd5\xff\x3f\xff\xf1\xb2\x57\xba\xd6\xfb\xff" "\xb1\x3f\xaf\xff\x9f\x87\x5b\xdc\xff\x5f\xf1\xfe\xf5\xff\xf5\xff\xab" "\xd7\xff\x5f\x7a\x7f\x7e\xad\x1f\xbf\xfe\xbf\xfe\x3f\x0b\x0d\x5a\xff" "\x3f\xe6\xfe\x0d\x45\x91\x65\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x31" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x17\x85\x99\x64\x92\xff\xf5\xff\x97\xd4\xff" "\xdf\xd3\xab\x70\x55\xfd\xfe\xbf\xf7\xff\xd7\xff\x2f\xd6\x66\xff\x3f" "\x3e\x38\xfa\xff\xd9\x58\x76\xff\xfe\x03\x0f\xb7\x7c\xa8\xff\x1f\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x62\xa3\x8b\x5e\x72\xab\xfa" "\xff\x31\xf7\xdf\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff" "\xe2\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3b\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x37\x85\x99\x64\x92\xff\xf5\xff\xbd\xff" "\xbf\xfe\xbf\xfe\x7f\xa5\xfb\xff\x2b\x7d\xff\xff\xa6\x83\xd1\xff\x5f" "\x1b\xbc\xff\x7f\x77\xfa\xff\x3d\xdc\x70\xff\x7f\x4c\xff\x7f\x2d\xf6" "\xff\x47\xfb\x7b\xfc\x83\xdd\xff\xef\x79\xf8\xfa\xff\xdc\x14\x83\xf6" "\xfe\xff\x31\xf7\xbf\x24\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9" "\xff\xa5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x2f\x0b\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x33\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\xbd\xdf\xff\xbf\xfc\x93\xfe" "\xff\x60\xd1\xff\xef\x4e\xff\xbf\x07\xef\xff\x9f\x57\xff\xbf\xcf\xc7" "\x3f\xd8\xfd\xff\x7e\xbf\xff\xff\xe8\x5b\xdb\xaf\xaf\xff\x4f\x27\x83" "\xd6\xff\x8f\xb9\xff\xe5\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x22\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x73\x98\x49\x26\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf3\xfe\x7b\xf7\xff\x4b\xfa\xff\x83" "\x45\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\x97\xd6\xff\xef" "\xf0\xcd\xaf\xfe\x3f\x9d\x0c\x5a\xff\x3f\xe6\xfe\xbb\xc3\x4c\x32\xc9" "\xff\x00\x00\x00\x90\x83\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xff\xa9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2d" "\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\xbc\xfa\xff\xf7\xad\xd3" "\xff\xd7\xff\xaf\x36\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff" "\x5f\xe2\xfb\xff\x2f\xb4\x9c\xfe\xff\xfa\x5e\x37\x46\x65\x0c\x5a\xff" "\x3f\xe6\xfe\x57\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xbf" "\x2a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xd5\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\x26\x99\xe4\x7f\xfd\xff\x6a\xf5" "\xff\xff\xf4\xaf\x9f\x78\x75\xa1\xff\xaf\xff\xdf\x63\xff\x15\xed\xff" "\xc7\x65\xa0\xff\x9f\x39\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7" "\xff\x5f\x95\xfe\x3f\xf9\x18\xb4\xfe\x7f\xcc\xfd\x5b\xc3\x4c\x32\xc9" "\xff\x00\x00\x00\x90\x83\x98\xfb\xb7\x85\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3d" "\xcc\x24\x93\xfc\xaf\xff\x5f\xad\xfe\x7f\xa4\xff\xaf\xff\xdf\x6d\xff" "\x15\xed\xff\x27\xfa\xff\x79\xd3\xff\xef\xa0\xe9\x49\xaa\xff\xdf\x83" "\xfe\xbf\xfe\x7f\xf6\xfd\xff\xf8\xdd\xaf\xfe\x3f\xfd\x31\x68\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\xca\x88\xb9\xff\xb5\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x3b\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x9d\xf7\xaf\xff\xbf\x36\xe9\xff\x77\xb7\xdc\xfe" "\xff\x3a\xfd\x7f\xfd\x7f\xfd\xff\xcc\xfa\xff\xde\xff\x9f\xfe\x1a\xb4" "\xfe\x7f\xcc\xfd\xaf\x0b\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\x7f\xbf\x59\xfe\xbb\x57" "\xf9\x1f\x00\x00\x00\xaa\x28\xe6\xfe\x89\x30\x93\x4c\xf2\xbf\xfe\xbf" "\xfe\x7f\x4e\xfd\xff\x9a\xfe\xbf\xfe\xbf\xfe\x7f\xe5\xe9\xff\x77\xe7" "\xfd\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f" "\x73\xff\xeb\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xef\x0f" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x0c\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x9f\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff\xe7\xd4" "\xff\xf7\xfe\xff\xfa\xff\xfa\xff\xd5\xa7\xff\xdf\x9d\xfe\x7f\x0f\xfa" "\xff\xfa\xff\x55\xeb\xff\x17\x85\xfe\x3f\xb7\xd4\xa0\xf5\xff\x63\xee" "\xdf\x1d\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x27\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xbe\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x7f\xe7\xfd\xeb\xff\xaf\x4d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff" "\xaf\xff\x5f\xb5\xfe\xbf\xf7\xff\xe7\x16\x1b\xb4\xfe\x7f\xcc\xfd\x0f" "\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xef\x0f\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x3f\x10\x66\x12\xf2\x7f\xa7\x7f\xd7\x0d" "\x00\x00\x00\xac\x2d\x31\xf7\x1f\x0c\x33\xc9\xe4\xef\xff\xf5\xff\x2b" "\xd2\xff\xff\xcd\xbf\x6f\xd9\xb7\xfe\xbf\xfe\x7f\xb7\xfd\xf7\xa7\xff" "\xbf\x41\xff\x3f\x4c\xfd\xff\xc1\x52\xd1\xfe\x7f\xfb\xd3\xe2\x86\xe9" "\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6" "\xfe\x43\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x6f\x08\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xe9\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x9f\x09\x33\xc9\x24\xff\xeb\xff\x57\xa4\xff\xdf" "\x46\xff\x5f\xff\xbf\xdb\xfe\xbd\xff\xbf\xfe\x7f\x95\x55\xb4\xff\xdf" "\x37\x95\xea\xff\x0f\xe9\xff\xeb\xff\x0f\xd6\xf1\xeb\xff\xeb\xff\xb3" "\xd0\xcd\xef\xff\xc7\x3f\x2d\xad\xff\x1f\x73\xff\xe1\x30\x93\x4c\xf2" "\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x91" "\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\xcd\xe9\xff\xbf" "\xb1\x68\x37\x88\xfd\xff\xfa\xe2\xd1\xff\xaf\x16\xfd\xff\xee\x2a\xd5" "\xff\xf7\xfe\xff\xfa\xff\x03\x76\xfc\xfa\xff\xfa\xff\x2c\x34\x68\xef" "\xff\x1f\x73\xff\x9b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb" "\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x73\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x5b\xc2\x4c\x32\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xde\xff\xbf\xf3\xfe\xf5\xff\xd7\x26\xfd\xff\xee" "\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f" "\x73\xff\x5b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xdf\x16" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xf6\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x77\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x6d\xd2\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\xff" "\x5c\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x43\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x7f\x57\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\xf3\xfe\xf5\xff\xd7\x26\xfd\xff\xee\xf4\xff\x7b\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\xbb\xc3\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x7f\x3e\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\xbf\x10\x66\x92\x49\xfe\xd7\xff\xd7\xff\x1f\xac\xfe\xff\xfc\xe5" "\xe6\xeb\xe9\xff\xeb\xff\x17\xfd\xea\xff\xd7\xaf\xa4\xff\x9f\x05\xfd" "\xff\xee\xf4\xff\x7b\xe8\xd0\xff\x5f\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x0d\x1b\xb4\xfe\x7f\xcc\xfd\xef\x0d\x33\xc9\x24\xff\x03\x00\x00" "\x40\x0e\x62\xee\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xfb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x1f\x0e\x33\xc9\x24" "\xff\xeb\xff\x67\xd9\xff\x4f\x77\x79\xf0\xfa\xff\xde\xff\x5f\xff\xdf" "\xfb\xff\xeb\xff\xaf\x8c\xfe\x7f\x77\xfa\xff\x3d\x78\xff\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\x3f\x12\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\x5f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x60" "\x98\x49\x26\xf9\x5f\xff\x3f\xcb\xfe\xff\x00\xbf\xff\x7f\xd5\xfa\xff" "\x23\x2d\xeb\x23\xa7\xfe\xff\x58\xd3\xe3\x99\xd6\xa5\xfe\xbf\xfe\xff" "\x2a\xd0\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\xff\x41\xee\xff\x87\xd5" "\xbc\x61\x91\xeb\xeb\xff\x33\x88\x06\xad\xff\x1f\x73\xff\x87\xc2\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x97\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x7f\x25\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff\xbd" "\xff\x7f\xe7\xfd\xeb\xff\xaf\x4d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf" "\xff\x3f\xc8\xfd\xff\x1e\xf4\xff\x19\x44\x83\xd6\xff\x8f\xb9\xff\x57" "\xc3\x4c\x16\x0d\x7e\xcf\xfd\xd7\x12\xee\x26\x00\x00\x00\x30\x40\x62" "\xee\xff\x70\x98\x49\x26\x7f\xff\x0f\x00\x00\x00\x39\x88\xb9\xff\x68" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xb1\x30\x93\x4c\xf2\xbf" "\xfe\x7f\x7b\xff\x3f\xbe\xa3\xaa\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xff\x5a\xd4\xbf\xfe\xff\x2b\x6e\x2f\x0a\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\x56\x62\xd0\xfa\xff\x31\xf7\x1f\x0f\x33\xc9\x24" "\xff\x03\x00\x00\x40\x0e\x62\xee\xff\xb5\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x13\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xd3" "\x61\x26\x99\xe4\xff\x5b\xd8\xff\x1f\x1d\xcc\xfe\xbf\xf7\xff\xbf\xd1" "\xfe\xff\x4f\xf4\xff\xf5\xff\x03\xfd\xff\xce\xf4\xff\x57\x87\xf7\xff" "\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa" "\xff\x31\xf7\xcf\x84\x99\x64\x92\xff\x01\x00\x00\xa0\xc2\xd2\x8f\x83" "\x63\xee\x3f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x2a\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x23\x61\x26\x99\xe4\x7f\xef" "\xff\xaf\xff\xef\xfd\xff\x6f\x45\xff\x7f\xa4\x65\x7b\xfd\xff\x92\xfe" "\xbf\xfe\x7f\x3f\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x3f\x7d\x35\x68\xfd\xff\x98\xfb\x67\xc3\x4c\x32\xc9\xff\x00\x00" "\x00\x90\x83\x98\xfb\x3f\x1a\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd3\x61\x26\x99" "\xe4\x7f\xfd\x7f\xfd\xff\xdc\xfb\xff\xb5\xa2\xb8\xe2\xfd\xff\xf5\xff" "\x3b\xed\x5f\xff\x7f\x6d\xd2\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\x9f\x09\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\x7f\x2e\xcc\x44\xfe\x07\x80\xff\x67\xef\x2e\x9a\x24\x3b\xaf" "\x3c\x0e\xe7\x68\xa4\x86\xd5\xcc\x47\x98\xf5\xac\x66\x39\xb3\xd2\x7c" "\x04\x6f\xbd\x73\x84\xd7\x8e\x30\xc8\x0c\x92\xcc\x6c\xcb\xcc\x20\x33" "\x33\x93\xcc\xcc\xcc\x32\x33\xca\x28\x3b\xa2\x1d\xaa\x3e\xe7\x74\x57" "\x57\xf6\xbd\x0d\xd9\x55\xf7\xbe\xe7\x79\x36\xc7\xdd\xa1\x72\x66\xa9" "\x53\x72\xfc\x5d\xf1\x8b\x0b\x00\x30\x8c\xdc\xfd\x77\x8f\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\xbf\x7b\xff\xbf\x39\x92\xe7\xff\xef\xff\xeb\xf5\xff" "\xa7\xe9\xff\xf5\xff\xbb\x70\xa0\xbf\xbf\x7a\xfb\x5f\x77\xbe\x28\xfc" "\xbc\xfd\xff\xff\xfc\xef\x75\x77\xd1\xff\xeb\xff\xf5\xff\x93\xf4\xff" "\xfa\x7f\xfd\x3f\xe7\x5a\x5a\xff\x9f\xbb\xff\x1e\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xbf\x67\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xdf\x2b\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xaf\x8b\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xd7\xff\xdf\xa2\xff\xd7\xff" "\xaf\x9b\xe7\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76" "\x6a\x69\xfd\x7f\xee\xfe\x7b\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x3e\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\xdf\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x5f\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\xff\xb5\xf4\xff\xc7\x3c\xff\xff\x9c\xef\x47\xff\xaf\xff\xdf" "\x46\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5" "\xf5\xff\xb9\xfb\xef\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x07\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x03\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x41\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xd7\xd2\xff\x1f\xd2\xf3\xff\xf5\xff\xfa\xff\x95\xbb\x79\x73\xe6" "\xdf\x09\xfa\xff\x83\xf4\xff\x33\x66\xfa\xff\xcd\x46\xff\x3f\xe5\x82" "\xfb\xf9\xed\xdf\xde\x7a\xde\xff\x79\xe8\xff\xf5\xff\x1c\xb4\xb4\xfe" "\x3f\x77\xff\x83\xe3\x96\xff\xdf\x6c\x8e\x5d\xea\x37\x09\x00\x00\x00" "\x2c\x4a\xee\xfe\x87\xc4\x2d\x4d\x7e\xfe\x0f\x00\x00\x00\x1d\xe4\xee" "\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x88\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7f\x7d\xfd\xff\x3a\x79" "\xfe\xff\xb4\xcb\xef\xff\xff\xfb\x3f\xef\x76\xd7\xbe\xfd\xbf\xe7\xff" "\x4f\xf3\xfc\xff\x5d\xf7\xff\x77\x7c\x32\xf4\xff\xac\xdb\xd2\xfa\xff" "\xdc\xfd\x37\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xa1\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb0\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\x7f\x78\xdc\xd2\x64\xff\xeb\xff\x47\xeb\xff\xff\x7d" "\xdf\xd7\x9d\xd5\xff\xef\xd5\x2e\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x3a" "\xfd\xff\x34\xcf\xff\x9f\xb1\xf7\xaf\xb9\x93\xf5\x4b\xfd\xbf\xfe\xdf" "\xf3\xff\xf5\xff\x5c\x9e\xa5\xf5\xff\xb9\xfb\x1f\x11\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x47\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd1\x71\x4b" "\x93\xfd\xaf\xff\x1f\xad\xff\xdf\xff\x75\x9e\xff\xaf\xff\xdf\xf6\xfa" "\xfa\x7f\xfd\xff\xc8\xf4\xff\xd3\xf4\xff\x33\x46\x79\xfe\xff\x25\x7e" "\x6a\x8e\xba\x9f\xbf\x5c\x47\xfd\xfe\xf5\xff\xfa\x7f\x0e\x5a\x5a\xff" "\x9f\xbb\xff\x31\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x6c" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2e\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x1f\x1f\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x3a\xfa" "\xff\x7c\x05\xfd\xbf\xfe\xff\xca\xf7\xff\x49\xff\xbf\x4e\xfa\xff\x69" "\xfa\xff\x19\xa3\xf4\xff\x97\xe8\xa8\xfb\xf9\xb5\xbf\x7f\xfd\xbf\xfe" "\x9f\x83\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\x8e\xfe\xdf\xf3\xff\xf5\xff\x9e\xff\xaf\xff\xbf\x30\xfa" "\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad\xff" "\xcf\xdd\x7f\x53\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x12" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\xa7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xb7\xbf\xbe\xfe\x7f\x9d\xf4\xff\xd3\xf4\xff\x33\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x50\xff\x7f\xd6\x57\x9d\xd8\x3c\x3d" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x88\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x67\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xb3\xe2\x96\x26\xfb\x5f\xff\xbf\x98\xfe\x7f\x2f\xe7\x1b\xab\xff" "\x3f\xb9\xd9\x6c\xf4\xff\x9b\xa6\xfd\xff\xc9\xb3\xfe\x3c\xeb\x73\xa9" "\xff\xd7\xff\x1f\x02\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xa7\x16\xd4\xff\xef\xfd\x3a\x77\xff\xb3\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\x9c\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x6e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2f\x6e\x69" "\xb2\xff\xf5\xff\x8b\xe9\xff\xf7\x8c\xd5\xff\x7b\xfe\xff\xb9\x9f\x8f" "\x4e\xfd\xbf\xe7\xff\x1f\xa4\xff\x3f\x1c\xfa\xff\x69\xfa\xff\x19\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad\xff\xcf\xdd\xff\xfc\xb8\xe9" "\xd8\x35\x97\xfc\x2d\x02\x00\x00\x00\x0b\x93\xbb\xff\x05\x71\x4b\x93" "\x9f\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x18\xb7\xd8\xff\x00\x00\x00" "\xb0\x52\x37\x1d\xf8\x9d\xdc\xfd\x2f\x8a\x5b\x9a\xec\x7f\xfd\xff\x6e" "\xfb\xff\x63\x67\xfd\x9e\xfe\x5f\xff\x7f\xee\xe7\x43\xff\xaf\xff\xd7" "\xff\x5f\x79\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x4e\x2d\xad\xff\xcf\xdd\xff\xe2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x89\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc6\x2d\x4d\xf6\xbf\xfe\xdf" "\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xd7\xd7\xff\xaf\x93\xfe\x7f\x9a" "\xfe\x7f\x86\xfe\x5f\xff\x7f\xb4\xfd\xff\xf1\x33\xff\x51\xff\xcf\x18" "\x2e\xa2\xff\x3f\x75\xea\xd4\xf5\x57\xbc\xff\xcf\xdd\xff\xb2\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3c\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\x7f\xd3\xfe\x3f\x3f\xea\xeb\xea\xff\x6f\xd8" "\x6c\xf4\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9a\xfe\x7f\x9a\xfe\x7f\x86\xfe" "\x5f\xff\xef\xf9\xff\xfa\x7f\x76\x6a\x69\xcf\xff\xcf\xdd\xff\xaa\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xaf\x8d\x5b\x9a\xec\x7f\xfd\x7f\xd3\xfe\xdf\xf3\xff\xf5\xff\xfa\xff" "\xc3\xee\xff\x6f\xdf\xe8\xff\x0f\xc5\x2a\xfa\xff\x93\xe7\x7f\xfd\xa5" "\xf7\xff\x37\xea\xff\xf5\xff\x13\xda\xf5\xff\x77\xfa\xbf\x7d\xbf\xd4" "\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\xd7\xc5\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\xf5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x86\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x63\xdc\x74\x75" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xaf\x7f\xc8\xcf" "\xff\x3f\xb6\xd9\x6c\xf4\xff\x3b\xb0\x8a\xfe\x7f\xc2\xd2\xfb\xff\xdd" "\x3c\xff\xff\xdc\x7f\xca\xcf\xd0\xff\xeb\xff\xd7\xfc\xfe\xf5\xff\xfa" "\x7f\x0e\x5a\x5a\xff\x9f\xbb\xff\x4d\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x25" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\x3f\x7c\xff\x7f\xe3\x2a\xfa\x7f\xcf\xff\xdf" "\x11\xfd\xff\xb4\x65\xf4\xff\xe7\xa7\xff\xd7\xff\xaf\xf9\xfd\xeb\xff" "\xf5\xff\x5c\xb8\xa3\xea\xff\x73\xf7\xbf\x2d\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3b\xe3\x96\x26\xfb" "\x5f\xff\xaf\xff\xbf\x98\xfe\x3f\xdf\xa7\xfe\x7f\xac\xfe\xff\xf8\xe2" "\xfa\xff\x13\xfb\xfe\xfb\x9a\x3c\xff\x5f\xff\xbf\x23\xfa\xff\x69\xfa" "\xff\x19\xfa\x7f\xfd\xbf\xfe\xff\x26\xfd\x3f\xbb\xb4\xb4\xe7\xff\xe7" "\xee\x7f\x57\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1d\xb7" "\xfe\xaf\x5b\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x3d\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xde\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x3d" "\xff\x5f\xff\x3f\xfc\xf3\xff\xf5\xff\xad\xe8\xff\xa7\xe9\xff\x67\xe8" "\xff\xf5\xff\xfa\x7f\xcf\xff\x67\xa7\x96\xd6\xff\xe7\xee\x7f\x5f\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1f\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x5b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa7\xff" "\x0c\xf5\xff\x63\xd0\xff\x4f\x3b\x9c\xfe\xff\xa4\xfe\x5f\xff\x5f\xfd" "\xfc\xbf\xc5\x3f\x05\xfa\x7f\xfd\xff\xdc\xd7\x33\xa6\xa5\xf5\xff\xb9" "\xfb\x3f\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x0f\xc5\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00" "\x56\xe9\xea\x2d\xbf\x97\xbb\xff\x23\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xed\xaf\xaf\xff\x5f\xa7\x23\xe9\xff\xf3\x43" "\xa1\xff\xf7\xfc\xff\xd0\xa7\xff\xff\xaf\x7d\xbf\x5a\xdb\xf3\xff\xcf" "\xfd\xdf\x2f\xfd\xbf\xfe\x9f\xdd\x5b\x5a\xff\x9f\xbb\xff\xa3\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x58\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f" "\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xfa" "\xfa\xff\x75\xf2\xfc\xff\x69\xfa\xff\x19\xfa\xff\x23\x7d\x7e\xfe\xda" "\xdf\xbf\xfe\x5f\xff\xcf\x41\x4b\xeb\xff\x73\xf7\x7f\x32\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x63\x6f\xf7\x67\x5c" "\xd6\x70\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xeb\xeb\xff" "\xd7\x49\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9" "\xa5\xf5\xff\x9f\xd9\xfb\xaa\x13\x9b\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\xe4\xee\xff\x42\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xeb\xe8\xff\x4f\x9d\x3a\x75\xbd\xfe\x5f\xff\xbf\xff" "\xfb\x39\xd3\xff\xdf\xaa\xff\xa7\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x3b\xb5\xb4\xfe\x3f\x77\xff\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\x0b\xe8\xff\x4f\xe8\xff\x3d\xff\x5f\xff\xbf\xf1" "\xfc\x7f\xfd\xff\x8e\xe8\xff\xa7\xe9\xff\x67\x8c\xd8\xff\x9f\xb8\xf0" "\x6f\xff\xa8\xfb\xf9\xcb\x75\xd4\xef\x5f\xff\xaf\xff\xe7\xa0\xa5\xf5" "\xff\xb9\xfb\xbf\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xaf" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd7\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x1b\x71\x4b\x93\xfd\xaf\xff\x3f\xbc\xfe\xff" "\x8e\xbf\x77\x5d\x9e\xff\x7f\x72\xb3\xfd\xfd\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\x95\xa6\xff\x9f\xa6\xff\x9f\x31\x62\xff\x7f\x11\x8e\xba\x9f" "\x5f\xfb\xfb\xd7\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\x6f\xc6\x2d" "\xfb\x87\xdf\x35\x17\xf7\x5d\x02\x00\x00\x00\x4b\x92\xbb\xff\x5b\x71" "\x4b\x93\x9f\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x1d\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xdf\x89\x5b\x9a\xec\x7f\xfd\xff\x02\x9e\xff" "\x3f\x60\xff\xef\xf9\xff\xdb\x3f\x1f\xfa\xff\x45\xf7\xff\x57\xe9\xff" "\xc7\xa0\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\x77\xd4\xff\xe7" "\xa7\x59\xff\xdf\xdd\xd2\xfa\xff\xdc\xfd\xdf\x8d\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xfb\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x6b\xdc\x72\xd6" "\xfe\xdf\xd6\x76\x8f\x42\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x5f" "\x5f\xff\xbf\x4e\xfa\xff\x69\x17\xda\xff\x1f\xdf\x5c\x5e\xff\x9f\xf4" "\xff\xfa\x7f\xfd\x7f\xd7\xfe\xdf\xf3\xff\x39\x6d\x69\xfd\x7f\xee\xfe" "\x1f\xc4\x2d\x7e\xfe\x0f\x00\x00\x00\xab\x73\xcd\x79\x7e\x3f\x77\xff" "\x0f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x47\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xe3\xb8\xe5\xb6\xab\x8e\xea\x2d\x1d\x2a" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7f\x7d\xfd\xff\x3a\xe9\xff" "\xa7\x79\xfe\xff\x0c\xfd\xff\x2e\xfa\xf9\x6b\xf5\xff\x63\xf4\xff\x9b" "\x8d\xfe\x9f\xcb\xb7\xb4\xfe\x3f\x77\xff\x4f\xe2\x16\x3f\xff\x07\x00" "\x00\x80\x61\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1e\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xff\x65\xf6\xff\x7b\x69\xa6\xfe\xff\x34\xfd\xff\x69" "\xfa\xff\xed\xf4\xff\x87\x43\xff\x3f\x4d\xff\x3f\x43\xff\xef\xf9\xff" "\xfa\x7f\xcf\xff\x67\xa7\x96\xd6\xff\xe7\xee\xff\x45\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\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\xff\x91\xf5\xff\xf1\xb7\x5a\xff\xbf\xfa\xfe\xdf\xf3\xff\xf5" "\xff\xfa\x7f\xfd\xff\xa2\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x3b\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\x3d\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xbf\xbe\xfe\x7f\x9d" "\xf4\xff\xd3\xf4\xff\xdb\xd5\x1f\x94\xfe\x5f\xff\xaf\xff\xd7\xff\xb3" "\x53\x4b\xeb\xff\x73\xf7\xff\x21\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xdb\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x4f\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xed\xaf\xaf\xff\x5f\x27\xfd\xff\xb4\xa3" "\xec\xff\xef\xfc\x1f\xf3\x2f\xeb\xf9\xff\x47\xde\xff\xe7\x5b\xd0\xff" "\xeb\xff\xf5\xff\xec\xc4\xd2\xfa\xff\xdc\xfd\x7f\x8e\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x5f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xaf\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb7\xb8\xa5" "\xc9\xfe\x9f\xe9\xff\x8f\xd7\x5f\xa8\xff\x9f\xa4\xff\xdf\xff\xfe\xf5" "\xff\xdb\x3f\x1f\xfa\x7f\xfd\xbf\xfe\xff\xca\xd3\xff\x4f\xf3\xfc\xff" "\x19\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\xff" "\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdb\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x1f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xcf\xb8\xa5\xc9\xfe\xf7\xfc\xff\x35\xf5\xff\xd7\xea\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\x86\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff" "\xaf\xff\xd7\xff\xb3\x53\x4b\xeb\xff\x73\xf7\xff\x2b\x00\x00\xff\xff" "\x3e\xba\x55\xb0", 24875)); NONFAILING(syz_mount_image( /*fs=*/0x200000000040, /*dir=*/0x200000000180, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x200000006540, /*chdir=*/0xfe, /*size=*/0x612b, /*img=*/0x2000000002c0)); break; case 1: // fspick arguments: [ // dfd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: fspick_flags = 0x0 (8 bytes) // ] // returns fd_fscontext NONFAILING(memcpy((void*)0x200000000000, ".\000", 2)); res = syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x200000000000ul, /*flags=*/0ul); if (res != -1) r[0] = res; break; case 2: // fsconfig$FSCONFIG_SET_FLAG arguments: [ // fd: fd_fscontext (resource) // cmd: const = 0x0 (8 bytes) // key: ptr[in, buffer] { // buffer: {72 6f 00} (length 0x3) // } // value: const = 0x0 (8 bytes) // aux: const = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x200000000080, "ro\000", 3)); syscall(__NR_fsconfig, /*fd=*/r[0], /*cmd=*/0ul, /*key=*/0x200000000080ul, /*value=*/0ul, /*aux=*/0ul); break; case 3: // fsconfig$FSCONFIG_CMD_RECONFIGURE arguments: [ // fd: fd_fscontext (resource) // cmd: const = 0x7 (8 bytes) // key: const = 0x0 (8 bytes) // value: const = 0x0 (8 bytes) // aux: const = 0x0 (8 bytes) // ] syscall(__NR_fsconfig, /*fd=*/r[0], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); break; case 4: // fsconfig$FSCONFIG_CMD_RECONFIGURE arguments: [ // fd: fd_fscontext (resource) // cmd: const = 0x7 (8 bytes) // key: const = 0x0 (8 bytes) // value: const = 0x0 (8 bytes) // aux: const = 0x0 (8 bytes) // ] syscall(__NR_fsconfig, /*fd=*/r[0], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); break; case 5: // statfs arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // buf: nil // ] NONFAILING(memcpy((void*)0x2000000000c0, "./file1\000", 8)); syscall(__NR_statfs, /*path=*/0x2000000000c0ul, /*buf=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }